Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .claude/pipeline.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,9 @@
"**/index.ts",
"**/*.test.*",
"**/*.stories.*"
]
],
"generateMdx": true,
"maxVariantsPerProp": 10
},
"tokenSync": {
"autoCheck": true,
Expand Down
12 changes: 8 additions & 4 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,12 @@ node scripts/visual-diff.js --batch <actual-dir> <expected-dir> [--output-dir di
# Dark mode visual verification
./scripts/check-dark-mode.sh http://localhost:3000

# Storybook story generation
./scripts/generate-stories.sh
# Storybook story + MDX generation (AST-based)
./scripts/generate-stories.sh # Generate stories + MDX for all components
./scripts/generate-stories.sh --force # Overwrite existing stories
./scripts/generate-stories.sh --dry-run # Report without writing
./scripts/generate-stories.sh --no-mdx # Skip MDX documentation
./scripts/generate-stories.sh --json # JSON output

# Token drift detection
./scripts/sync-tokens.sh [--dry-run] [--json]
Expand Down Expand Up @@ -274,7 +278,7 @@ Autonomous 9-phase pipeline that converts a Figma design into a working, tested
- `visual-diff.js` — Pixel-level screenshot comparison with region analysis
- `sync-tokens.sh` — Detects token drift between lockfile and source
- `check-dark-mode.sh` — Dark mode screenshot capture and visual comparison
- `generate-stories.sh` — Auto-generates Storybook stories from components
- `generate-stories.sh` — AST-based Storybook story + MDX generation with prop controls, variants, and action args
- `generate-component-docs.sh` — Generates MDX component documentation

**Features:**
Expand Down Expand Up @@ -515,7 +519,7 @@ gh issue create # Create issue
./scripts/verify-tokens.sh # Design token enforcement
./scripts/sync-tokens.sh # Token drift detection
./scripts/check-dark-mode.sh # Dark mode verification
./scripts/generate-stories.sh # Storybook generation
./scripts/generate-stories.sh # Storybook story + MDX generation
./scripts/generate-component-docs.sh # Component documentation
./scripts/check-dead-code.sh # Dead code detection (knip)
./scripts/check-security.sh # Security audit
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0",
"prettier": "^3.8.1",
"ts-morph": "^28.0.0",
"vitest": "^4.1.2"
}
}
30 changes: 30 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading