By timzaak
Delivers a structured DDD-driven development workflow for Rust+React projects, automating backend finalization, test execution and repair, documentation generation (PRDs, design docs, tutorials), HTML previews, UI mockups, task planning, and acceptance validation through specialized sub-agents and commands.
后端验收专家。负责 Rust API 的质量验收、测试验证与 OpenAPI 完整性检查,并输出只读验收报告。 在后端代码变更后、需要验证实现与设计一致性,或需要执行测试并给出验收结论时使用。
后端一致性检查专家(只读)。负责验证单个模块的 PRD 文档与后端代码实现的一致性。 触发场景: - 检查 PRD 与后端代码实现的一致性 - 验证 API 能力边界、数据模型、验证规则是否与 PRD 匹配 关键词:consistency check, PRD vs implementation, API boundary, data model validation
Rust 后端开发专家。负责后端生产代码、通过价值门槛的最小必要测试和来自 t-backend-test-run 的生产代码缺陷修复。
后端场景测试编写专家。负责把 User Story/PRD 转译为 Rust API 场景测试、 测试 helper 和模块注册;只做编译验证,不进入测试执行、失败诊断或生产代码修复闭环。 单元测试由 backend-dev 负责;测试执行与修复编排由 t-backend-test-run skill 负责。 在 t-task 任务规划中,负责把 backend/test slot 拆为 authoring item 和集中 runner item。
只读审计 PRD、用户故事、设计文档中的重复、过期、冲突与过程化信息,输出权威文档建议和整理计划。
Run backend finalization after backend acceptance by simplifying code, running clippy, formatting, exporting OpenAPI, and generating the frontend API client. Use when the user runs /t-backend-finalize with a feature name after backend acceptance is completed.
运行定向 Rust 后端测试,诊断失败,委派生产代码修复,并在不削弱场景测试语义的前提下重测。
Decide whether a feature should enter the t-tools workflow before tech research or PRD.
Validate demo tests cover user stories, compile and pass, and output structured acceptance reports.
Discover and run all demo E2E tests sequentially with auto-fix support and summary report generation.
Uses power tools
Uses Bash, Write, or Edit tools
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.
面向 Rust + React 项目的 Claude Code plugin。它把 Decision -> 技术预研 -> PRD -> 设计 -> 任务 -> 开发 -> 验收 -> Demo 串成一套可复用工作流,让你不用反复设计 prompt、切换上下文或手工维护阶段边界。
适合这类团队和项目:
/t-tools:t-* 命令顺序推进,不需要自己设计整套提示词和协作流程推荐先读 human/structure.md,理解 skill、subagent、protocol 如何协同驱动 AI 编程。

前置条件:
最短闭环示例:
# 先判断这个 feature 是否值得进入后续流程,并打开 HTML 供审阅
/t-tools:t-decision user-management
# 需要技术可行性、依赖或成本判断时,先做技术预研
/t-tools:t-tech-research user-management
# 创建或更新 .ai/prd 草稿,并打开 HTML 供审阅
/t-tools:t-prd user-management
# 质量门禁:避免把问题带入设计阶段
/t-tools:t-prd-check user-management
# 可选:有显著前端 UI 时,先生成多方案 HTML mockup 并收敛 UI 规格
/t-tools:t-ui-design user-management
# 基于 PRD 产出技术设计;纯技术方案也可基于 t-tech-research 产出
/t-tools:t-design user-management
# 把设计转换成可执行任务
/t-tools:t-task user-management
# 检查任务拆分、依赖和可执行性
/t-tools:t-task-check user-management --phase backend
# 按阶段驱动实现与测试
/t-tools:t-run user-management --phase backend
# 代码审查
/code-review
# 后端验收后执行收口
/t-tools:t-backend-finalize user-management
# 运行该角色的 Demo/E2E 测试
/t-tools:t-demo-run super-admin
# 最终验收:确认故事映射、编译、执行和质量要求都通过
/t-tools:t-demo-accept super-admin
# 实现与验收完成后,基于草稿做发布总结并修正正式 PRD
/t-tools:t-prd-publish user-management
如果你只想记住一件事:不要跳过 check / accept 阶段。这个 plugin 的价值不只是"帮你生成内容",而是"帮你在每个阶段收口"。
补充说明:
/t-tools:t-* 作为标准调用形式t-* skill 均为手工触发入口,不允许模型根据语义自动触发t-decision 是 PRD 前的产品立项门禁,输出 .ai/decision/<feature>.md 和 .ai/preview/decision/<feature>.html;结论为 Proceed 或 Research First 后再进入技术预研或 PRD。它的交互方式借鉴 Garry Tan 的 gstack 中 office-hours 与 plan-ceo-review 的产品诊断和 CEO review 思路,但已转译为 t-tools 的阶段门禁,不 vendoring gstack 运行时t-ui-design 是可选的前端 UI 方案探索阶段,在 PRD Check 通过后、技术设计前使用;它生成多方案单文件 HTML mockup、对比看板和 .ai/design-ui/<feature>/ui-spec.md,不依赖图片生成、Figma 或外部 AI UI 工具t-doc 用于项目文档、上手教程、API 参考、配置和部署说明,不用于 PRD、技术设计或只改某个文档片段t-dream 默认以只读 audit 方式整理 PRD、用户故事、设计/任务、实现事实与项目结构,减少过期、重复、冲突和误导性上下文累积;需要写入 PRD 治理时显式使用 --govern-prdt-backend-test-run 是内部执行型 skill,供 backend-test 等流程复用,不作为推荐的手动入口# 1. 克隆本仓库
git clone <repo-url>
# 2. 在目标项目中启动 Claude Code 并加载插件
cd /your-project
claude --plugin-dir /path/to/skills
前置依赖:
context7 已配置(用于查询第三方库文档)Java 后端支持见
java分支。
npx claudepluginhub timzaak/web-dev-skillsBoris Cherny 팁 + 논문 기반 최적화 올인원 Claude Code 플러그인. 32개 스킬, 10개 에이전트, Hooks 보장 시스템.
AI-driven development toolkit for TDD and SDD workflows, providing comprehensive command templates and agents to enhance developer productivity with Claude Code
Full-cycle project development - brainstorm ideas, create specifications, plan architecture, initialize projects, and execute implementation with integrated workflows from superpowers and spec-kit
Document Driven Development — a structured workflow for AI-assisted software development with TDD, specs, and cross-review
Production-ready Claude Code configuration with role-based workflows (PM→Lead→Designer→Dev→QA), safety hooks, 44 commands, 19 skills, 8 agents, 43 rules, 30 hook scripts across 19 events, auto-learning pipeline, hook profiles, and multi-language coding standards
Development agents for frontend/backend implementation