storybook-check
Verify changed components render correctly in Storybook by running a targeted build check
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Verify changed components render correctly in Storybook by running a targeted build check
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Structured bug fix workflow — diagnose from git history, minimal fix, verify
Scaffold a new VC-Shell UI component with proper structure, types, barrel exports, and Storybook story
Time-boxed implementation plan with approval gate before coding
SOC 직업 분류 기준
| name | storybook-check |
| description | Verify changed components render correctly in Storybook by running a targeted build check |
| disable-model-invocation | true |
Verify that component changes don't break Storybook rendering.
Check which story files relate to recent changes:
git diff --name-only HEAD | grep -E '\.(vue|ts)$' | head -20
Look for corresponding .stories.ts files in the same directories.
Run a production Storybook build to catch compilation errors:
yarn build:storybook 2>&1 | tail -30
This catches:
Report success. Optionally launch Storybook dev server for visual verification:
yarn dev:storybook
Then use Playwright MCP to take screenshots of the affected stories for visual confirmation.
Analyze the error output:
.storybook/main.ts stripInvalidDocgen plugin)stripInvalidDocgen plugin in .storybook/main.ts handles __docgenInfo assignment errors from barrel re-exports. If you see ReferenceError about __docgenInfo, the plugin may need updating.@vc-shell/framework/dist/index.css to SCSS sources if no built dist exists. Run yarn build:framework first if you see styling issues.