ワンクリックで
fix-ci
Diagnose and fix CI pipeline failures including lint, test, e2e, build, and dependency issues.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Diagnose and fix CI pipeline failures including lint, test, e2e, build, and dependency issues.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Implement a backlog story following the layer order (Domain, Database, API, Frontend, E2E) with TDD.
Review the backlog to determine what to work on next by checking epic and story statuses in docs/backlog/.
Automates pre-commit workflow: lint, test, review changes, then commit with conventional commit format.
Verify a story is complete by checking acceptance criteria, running all tests, and updating status.
Add end-to-end Playwright tests for a feature using data-testid selectors, with API and UI test patterns.
Add unit tests for domain logic, database adapters, API endpoints, or frontend components using Vitest patterns.
| name | fix-ci |
| description | Diagnose and fix CI pipeline failures including lint, test, e2e, build, and dependency issues. |
| disable-model-invocation | true |
gh run view or check the GitHub Actions tabpnpm lint locallypnpm test locallypnpm test:e2e locallypnpm build locallygit push| Issue | Solution |
|---|---|
frozen-lockfile error | Run pnpm install and commit pnpm-lock.yaml |
| Type error in CI but not local | Ensure skipLibCheck: true and check tsconfig paths |
| E2E timeout | Increase timeout or check if test data is missing |
| Missing playwright browsers | CI workflow should include npx playwright install --with-deps |