Skip to content

fix(catalog): normalize module-help.csv to documented 13-column schema#25

Merged
bmadcode merged 1 commit intomainfrom
fix-module-help-schema
Apr 28, 2026
Merged

fix(catalog): normalize module-help.csv to documented 13-column schema#25
bmadcode merged 1 commit intomainfrom
fix-module-help-schema

Conversation

@bmadcode
Copy link
Copy Markdown
Contributor

Summary

  • Thirty-four rows in `src/module-help.csv` were missing one column between `description` and `phase`, leaving them at 12 fields instead of 13.

Why

CSV consumers that read by header position were silently mapping data into the wrong columns (`phase` value into `args`, `required` into `before`, etc). Inserting one empty cell at index 5 restores correct alignment with the documented header (`module,skill,display-name,menu-code,description,action,args,phase,after,before,required,output-location,outputs`).

This is part of a coordinated cleanup also fixing the installer in BMAD-METHOD (PR #2349 there) and the same defect across bmad-module-creative-intelligence-suite, bmad-method-test-architecture-enterprise, bmad-method-wds-expansion.

Test plan

  • All rows re-audited with csv-parse — every data row now has exactly 13 fields
  • Run a fresh install and confirm `_bmad/_config/bmad-help.csv` data lands in the right columns

Thirty-four rows were missing one column between description and phase,
leaving them at 12 fields. CSV consumers reading by header position were
silently mapping data into the wrong columns (phase into args, required
into before, etc).

Inserted an empty cell at column index 5 to restore alignment with the
header (module,skill,display-name,menu-code,description,action,args,
phase,after,before,required,output-location,outputs).
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 28, 2026

Important

Review skipped

Review was skipped due to path filters

⛔ Files ignored due to path filters (1)
  • src/module-help.csv is excluded by !**/*.csv

CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including **/dist/** will override the default block on the dist directory, by removing the pattern from both the lists.

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: fdb0a448-92e5-4e7c-93ff-fb3df765456b

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix-module-help-schema

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@augmentcode
Copy link
Copy Markdown

augmentcode Bot commented Apr 28, 2026

🤖 Augment PR Summary

Summary: This PR normalizes src/module-help.csv so every row matches the documented 13-column schema.

Changes:

  • Identified 34 rows that had only 12 fields due to a missing column between description and phase
  • Inserted an empty cell at the appropriate index to restore correct header alignment
  • Prevents silent mis-mapping where values were shifted into the wrong columns (e.g., phase into args, required into before)

Technical Notes: This is a data-shape fix for positional CSV consumers; the change should reduce downstream parsing errors and improve install-time help/config generation consistency.

🤖 Was this summary useful? React with 👍 or 👎

Copy link
Copy Markdown

@augmentcode augmentcode Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Review completed. No suggestions at this time.

Comment augment review to trigger a new review at any time.

@bmadcode bmadcode merged this pull request into main Apr 28, 2026
28 checks passed
sjennings pushed a commit that referenced this pull request Apr 28, 2026
#25)

Thirty-four rows were missing one column between description and phase,
leaving them at 12 fields. CSV consumers reading by header position were
silently mapping data into the wrong columns (phase into args, required
into before, etc).

Inserted an empty cell at column index 5 to restore alignment with the
header (module,skill,display-name,menu-code,description,action,args,
phase,after,before,required,output-location,outputs).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant