一键导入
implement-feature-tdd
Use this workflow to implement ANY new feature following Test-Driven Development strictly.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use this workflow to implement ANY new feature following Test-Driven Development strictly.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create an End-to-End (E2E) test for a REST controller or GraphQL resolver using Fastify injection.
Add a new BullMQ job queue to the project — processor, producer injection, module registration, Bull Board integration, and unit tests.
Write unit tests for an existing NestJS service, resolver, or controller in the project following its Vitest + NestJS Testing conventions.
Run the full code quality pipeline (TypeScript + Biome + Knip), fix all issues, and clean up comments in changed code.
Create a git commit with all unstaged changes. Use this skill whenever the user asks to commit, make a commit, save changes to git, or says something like "commit this", "commit all changes". Always runs npm run check before committing and fixes any errors found.
Guide through a full Prisma schema change workflow — edit schema, create migration, regenerate client, update affected services.
| name | implement-feature-tdd |
| description | Use this workflow to implement ANY new feature following Test-Driven Development strictly. |
/add-e2e-test skill.npm run test:e2e to verify it FAILS./add-tests skill to write failing unit tests for the Services and Resolvers/Controllers.npm run test to verify they FAIL.npm run check to fix linting and types.npm run test:cov to ensure test coverage remains above 80%.Do not write production code before writing the test assertions.