Orchestrates a complete Chinese-language development workflow: structured bug fixing with root-cause analysis, TDD-driven feature implementation using worktree branches, daily HTML progress reports via parallel agents, deep requirements discovery through dialogue, Markdown documentation consolidation and auditing, test engineering, and task tracking with todo.md.
Bug修复流程(代码定位→问题复现→问题修复→回归测试→提交完成)。触发:用户报告bug、报错、异常、或说"XX不工作"/"XX报错"/"XX有问题"/"修复XX"/"排查XX"/"XX挂了"/"XX崩了"/"修一下"/"debug"/"fix",通常会指出文件/函数/错误信息(KeyError/TypeError/OOM/ModuleNotFoundError/堆栈/控制台错误/白屏)或线上事故(内存泄漏/连接池耗尽/间歇性失败/重启后报错)。不要用于:新功能开发(用ez-dev)、配置调整、纯文档编写、"xxx怎么用"问答、纯阅读理解代码、对话式咨询。核心原则:worktree开发、测试复现优先、用户手动merge。
生成每日开发进度总结报告。并行执行进度总结、任务更新、全量测试、文档整理,汇总成HTML报告。
需求深度挖掘助手。通过高频交互帮助理解真实需求,整理并写入需求文档。手动触发:输入 `/deeptalk` 或 `讨论:<主题>`。触发后AI主导审阅代码和文档,找出模糊/歧义/冗余处并提问,也可主动蔓延想法。
文档整合与同步维护 Skill。当用户说"整理文档"、"合并文档"、"更新开发文档"、"同步文档和代码"时触发。扫描散落文档,整合到 .dev_doc/ 对应模块的规范路径,验证文档与代码一致性,更新模块 README 和 CHANGELOG。
完整功能开发流程(需求→设计→计划→TDD开发→测试→完成)。触发:用户提出明确的开发任务时——"开发X"/"实现X"/"添加X功能"/"新功能"/"做个新特性"/"重构X"/"修复X bug"。不要用于:单行修改、配置调整、纯文档编写、"xxx怎么用"问答、bug 原因排查、纯阅读/理解代码、对话式咨询。核心原则:worktree开发、独立Subagent审查、用户手动merge。
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.
个人 Claude Code 开发工具集,包含多个提升开发效率的 Skills。
| Skill | 说明 | 触发条件 |
|---|---|---|
| ez-dev | 完整开发流程(需求→独立Review→设计→TDD→验证→完成) | "帮我开发..."、"实现一个..." |
| daily_progress_summary | 生成每日开发进度总结报告 | "日报"、"开发进度报告" |
| deeptalk | 需求深度挖掘助手 | "/deeptalk"、"讨论:<主题>" |
| doc_integrate | 文档整合与同步维护 | "整理文档"、"同步文档" |
| hs_test | 华山项目测试技能 | "运行测试"、"执行测试" |
| test | 通用测试工程技能 | "测试报告"、"生成测试用例" |
| todo_list_manager | 管理 todo.md 和 work_done.md 的任务生命周期 | "今日计划"、"本周计划" |
| update_doc | 开发文档健康度审计与更新 | "审计文档"、"检查文档过时" |
ez-dev 依赖以下官方插件,必须在安装本工具集之前完成安装:
# 安装 superpowers 插件(包含 brainstorming, writing-plans, subagent-driven-development 等)
/plugin install superpowers@claude-plugins-official
# 安装 frontend-design 插件
/plugin install frontend-design@claude-plugins-official
# 安装 code-review 插件
/plugin install code-review@claude-plugins-official
# 安装 skill-creator 插件(用于打包发布)
/plugin install skill-creator@claude-plugins-official
| 插件 | 提供的 Skills | 用途 |
|---|---|---|
| superpowers | brainstorming, writing-plans, subagent-driven-development, verification-before-completion | ez-dev 核心依赖 |
| frontend-design | frontend-design | ez-dev Phase 2 前端设计 |
| code-review | code-review | ez-dev Phase 4.1 代码 Review |
| skill-creator | skill-creator | skill-sync 打包发布 |
# 克隆仓库
git clone https://github.com/ayanjiushishuai/dev_toolkits.git
# 复制 skills 到本地 Claude Code skills 目录
cp -r skills/* ~/.claude/skills/
Claude Code 会自动发现
~/.claude/skills/目录下的所有 SKILL.md 文件。
.skill 文件.skill 文件放到 ~/.claude/skills/ 目录/skills 刷新/ez-dev 帮我开发一个用户认证功能
# 使用 skill-sync skill 自动同步
# 在 Claude Code 中执行 skill-sync skill 的同步流程
# 或手动执行
cd D:/02_code/dev_toolkits
./skills/skill-sync/scripts/sync_and_release.sh
dev_toolkits/
├── .claude-plugin/ # 插件元数据
├── skills/ # 所有 Skills
│ ├── daily_progress_summary/ # 每日进度报告
│ ├── deeptalk/ # 需求深度挖掘
│ ├── doc_integrate/ # 文档整合
│ ├── ez-dev/ # 完整开发流程
│ │ └── references/ # 引用文档(design-review, test-strategy 等)
│ ├── hs_test/ # 华山测试
│ ├── test/ # 通用测试
│ ├── todo_list_manager/ # 任务生命周期管理
│ └── update_doc/ # 文档审计
├── scripts/
└── README.md
MIT
npx claudepluginhub ayanjiushishuai/dev_toolkitsComprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review
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.
Tools to maintain and improve CLAUDE.md files - audit quality, capture session learnings, and keep project memory current.
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.
Reliable automation, in-depth debugging, and performance analysis in Chrome using Chrome DevTools and Puppeteer
A growing collection of Claude-compatible academic workflow bundles. Covers scientific figures, manuscript writing and polishing, reviewer assessment, citation retrieval, data availability, paper reading, literature search, response letters, paper-to-PPTX conversion, and evidence-grounded Chinese invention patent drafting. Rules are organized as reusable skill folders with explicit workflows and quality checks.