Agent skill
refine-implementation
Use after implementation to simplify and review code. Provide: git range (eg, main...HEAD). Runs simplify + peer review loop until change set is clean.
Install this agent skill to your Project
npx add-skill https://github.com/rstacruz/agentic-toolkit/tree/main/skill/atk/refine-implementation
SKILL.md
-
Simplify first:
- Load and run the
$simplifyskill on the change set - Wait for it to complete before proceeding
- Load and run the
-
Determine change set to refine
- Based on the conversation history, determine which type of review to perform. Ask the user if unsure. Consider if it might be:
- Review all uncommitted changes (eg,
git diff --cached) - Branch (eg,
git diff main...HEAD) - Set of commits (eg,
git diff commit1...commitN)
- Review all uncommitted changes (eg,
- Based on the conversation history, determine which type of review to perform. Ask the user if unsure. Consider if it might be:
-
Review and address repeatedly
- Ask @general-alpha and @general-beta agents to use
$review-changesskill. Ask them to review the change set, giving the command to list the changes (eg,git diff --cached). - Assess feedback. Address any P1 issues that makes sense to do.
- If there was feedback, ask reviews again, then address again. Keep looping until there are no more changes to do.
- Ask @general-alpha and @general-beta agents to use
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
implement-spec
Implements a spec on a ticket-by-ticket basis.
spec-product-requirements
Gives important guidelines to define product requirements sections (functional requirements, technical requirements, constraints, design considerations, diagrams). Companion to $spec-mode.
coding-practices
Contains important guidelines for software engineering, coding, programming. Includes (but not limited to): - CP1: Functional core, imperative shell - CP2: Operational vs unexpected errors - CP3: Result-oriented interface pattern - CP4: Presentational vs container components - CP5: Log context builder pattern Use this when writing, editing, debugging, planning, or otherwise working with: - Any programming work - UI components in React, Vue, or similar - JavaScript, TypeScript, Rust, or any programming language
spec-tech-design
Gives important guidelines to define technical design sections (call graphs, data models, pseudocode, files, CSS classes, testing strategy). Companion to $spec-mode skill.
review-changes
Use when reviewing code changes against a plan. Provide: plan/spec doc; git range or changed files (eg, branch...HEAD). Returns P1/P2/P3 on alignment, quality, bugs, security.
simplify
Simplifies the implementation
Didn't find tool you were looking for?