团队 git 工作流 + bug 修复 + 执行闭环 + 设计上下文 skill 套件:dev-auto / dev-grill-docs / dev-spec(alias) / dev-plan / dev-tdd / dev-fix / dev-verify / dev-code-review / dev-commit-writer / dev-finish / dev-design-context。共享 Karpathy 行为基线 + RALPLAN-DR 共识机制 + hypothesis-driven 调试 + TDD + 完成前验证 + 分支收尾 + 一次性设计上下文沉淀 + 需求拷问、spec 生成和可选 CONTEXT / ADR 沉淀。dev-auto 是松耦合入口推荐器,不调起其他 skill,只指路。
Use when reviewing uncommitted or staged git changes before commit. Trigger on: 帮我 commit, 我要 commit, commit 一下, 准备提交, pre-commit, 提交前检查, 看下这次修改, commit 前看一下, I want to commit, let's commit, review my changes. Checks conventions, functional correctness, security/reliability/performance hotspots, wiring, comments, and dead code; emits a commit message only when READY. Does not mutate the working tree. Route to dev-commit-writer only when the user explicitly asks to skip review or wants only a commit message.
Use only when the user explicitly asks for a commit message without review. Trigger on: 帮我写 commit message, 给个 commit message, 生成 commit message, 这次 commit message 怎么写, write a commit message, skip review, 跳过 review, 我自审过了, only message, 只要 message. Writes a message from the current git diff in repository style. Does not review code quality or mutate the working tree; ambiguous commit requests like 帮我 commit route to dev-code-review.
Use as a one-time design setup for UI, product, landing-page, or brand-heavy work. Scans the project for design context, asks only the UX questions that cannot be inferred, then writes persistent design guidelines to .design-context.md. Does not implement features or review code.
Use when implementation and verification are complete and the user needs to finish a development branch by merging locally, creating a PR, keeping the branch, or discarding work. Applies after tests pass and code review is ready.
Use when the user reports a bug, broken behavior, regression, failing test, or asks to investigate/root-cause/debug. Trigger on: 修个 bug, 这个 bug, 排查一下, 复现, 这个错怎么回事, 为什么 X 不工作, debug, RCA, fix this bug, investigate, reproduce. Guides root-cause debugging: reproduce with a failing test, list hypotheses, trace backward, fix only the confirmed cause, verify red-green-red, and leave a regression test. Does not symptom-patch or write commit messages.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
11 个 skill,把 AI 写代码和做界面这件事拆成更稳的步骤。
沉淀设计上下文 → 拷问并写清需求 → 定方案 → 写代码 / 修 bug → 验证 → review → commit → 收尾
Website · Onboarding · Start with dev-auto
dev-skills 是一套给 Claude Code / Codex 用的 SDD-style 开发工作流规则集。它让 AI 做开发时先对齐意图、范围、方案和验证证据,而不是每次从零猜流程。
它主要解决四类问题:
第一次用只记住一句话:
不知道下一步做什么,就先用
dev-auto。它只会推荐下一步,不会替你自动执行其他 skill。
用 dev-auto 看看下一步该做什么。用 dev-grill-docs 帮我梳理这个需求。dev-spec 仍可用,现在等价于 dev-grill-docs --spec-only。用 dev-design-context 沉淀设计上下文。用 dev-fix 排查这个 bug。用 dev-code-review 看下这次修改。dev-design-context(可选) -> dev-grill-docs -> dev-plan(可选) -> dev-tdd -> dev-verify -> dev-code-review -> git commit -> dev-finish
先把需求说清楚。复杂功能再出方案。写代码前用测试锁住行为,完成前验证,提交前 review。
dev-fix -> dev-verify -> dev-code-review -> git commit -> dev-finish
先复现,再找 root cause。dev-fix 已经包含 regression test,不要再额外接一轮 dev-tdd。
dev-tdd -> dev-verify -> dev-code-review -> git commit
可以跳过 spec 和 plan。只要会改行为,仍然建议先用测试锁住这次小改动。
这里的 SDD 指 Spec-Driven Development。dev-skills 不把它做成重型状态机,而是把现有 skill 串成一条可追踪的契约链:
Intent / Context
-> Spec: dev-grill-docs
-> Plan / ADR: dev-plan
-> Tests / Fix evidence: dev-tdd 或 dev-fix
-> Verify: dev-verify
-> Review: dev-code-review
-> Ship: git commit / dev-finish
简单任务可以只做到 Spec-first;复杂、高风险或多 agent 任务建议做到 Spec-anchored,把 .claude/artifacts/ 里的 spec / plan / fix 作为后续实现、验证、review 的对齐依据。
完整说明见 docs/sdd-workflow.md。
按你当前的问题选一组就够了,不用把 11 个 skill 全背下来。
dev-auto:看当前状态,推荐下一条命令。它不会自动调起其他 skill。dev-design-context:做 UI 前,先沉淀项目设计上下文。dev-grill-docs:主需求入口;拷问术语、边界和决策,生成 .claude/artifacts/designs/<feature>.md,并按需把稳定词汇写入 CONTEXT.md / ADR。dev-spec:兼容入口;等价于 dev-grill-docs --spec-only,保留给旧提示和旧文档。dev-plan:复杂或高风险功能先出实施方案。dev-verify:声称完成、fixed、ready 前,补齐真实命令证据。dev-code-review:准备 commit 前,检查 diff 风险。dev-commit-writer:明确跳过 review 且只要 commit message 时使用。dev-finish:验证和 review 通过后,处理分支收尾。Claude Code、Codex、npx skills 的安装方式不一样。选你正在用的工具即可。
/plugin marketplace add https://github.com/Jason-chen-coder/dev-skills
/plugin install dev-skills
如果还想让团队规则一直生效,把模板复制到项目根目录:
curl -O https://raw.githubusercontent.com/Jason-chen-coder/dev-skills/master/CLAUDE.md.template
mv CLAUDE.md.template CLAUDE.md
正式上架前,本地兼容方式是把 skills/* 复制到 Codex 的 skills 目录:
git clone https://github.com/Jason-chen-coder/dev-skills.git
cd dev-skills
bash scripts/install-codex-skills.sh
如果还想让团队规则一直生效,把 Codex 模板复制到项目根目录:
curl -O https://raw.githubusercontent.com/Jason-chen-coder/dev-skills/master/AGENTS.md.template
mv AGENTS.md.template AGENTS.md
npx skills add Jason-chen-coder/dev-skills # 安装到当前项目
npx skills add Jason-chen-coder/dev-skills --global # 安装到全局
更完整的安装、兜底方案和升级说明见 docs/onboarding.md。
/plugin update dev-skills
如果没生效,卸载后重装:
/plugin uninstall dev-skills
/plugin install dev-skills
Codex 当前是复制目录安装,所以升级时需要重新同步:
cd dev-skills
bash scripts/install-codex-skills.sh --upgrade
npx skills update
如果你的版本没有 update,用 force 重新安装:
npx skills add Jason-chen-coder/dev-skills --force
npx skills add Jason-chen-coder/dev-skills --global --force
提醒:升级 skill 不会自动覆盖你项目里的 CLAUDE.md / AGENTS.md。如果模板更新了,需要你自己对比后同步。
npx claudepluginhub jason-chen-coder/dev-skills --plugin dev-skillsDesign fluency for frontend development. 1 skill with 23 commands (/impeccable polish, /impeccable audit, /impeccable critique, etc.) and curated anti-pattern detection.
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations on LLM coding pitfalls
Comprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Develop, test, build, and deploy Godot 4.x games with Claude Code. Includes GdUnit4 testing, web/desktop exports, CI/CD pipelines, and deployment to Vercel/GitHub Pages/itch.io.
Upstash Context7 MCP server for up-to-date documentation lookup. Pull version-specific documentation and code examples directly from source repositories into your LLM context.