tdd
Test-Driven Development workflow for the Builder agent. Ensures code is written test-first with proper red-green-refactor cycles.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Test-Driven Development workflow for the Builder agent. Ensures code is written test-first with proper red-green-refactor cycles.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Structured code review checklist for the Reviewer agent. Provides a systematic framework for evaluating code changes across correctness, security, performance, and maintainability.
Resolve git merge conflicts in a Grove conversation worktree before the task agent begins work. This skill is invoked automatically by the orchestrator when a pre-run `git merge origin/main` into the conversation branch produces conflicts. The agent receives the list of conflicting files and the worktree path, resolves every conflict, validates the result, and stages the files so the engine can finalize the merge commit. This is not a user-facing skill — it is called programmatically by the Grove engine.
Rust-specific coding patterns and conventions used in the Grove codebase. Loaded for Builder and Reviewer agents working on Rust code.
| name | tdd |
| description | Test-Driven Development workflow for the Builder agent. Ensures code is written test-first with proper red-green-refactor cycles. |
| applies_to | ["builder"] |
Follow this cycle for every piece of new functionality:
Before writing any implementation:
// Arrange — set up preconditions
// Act — call the function under test
// Assert — verify the result