Git Commit Push
Create Git commits and push to GitHub with Conventional Commits and a detailed body. Trigger on 'commit', 'git commit', 'push', 'commit and push', 'save to git', or 'push to main'. Builds a message from diffs and optional plan.md, and respects safety hooks.
Refactoring
Refactor code for readability and structure without changing behavior. Use when the user asks to refactor, clean up, improve readability, rename variables, extract functions, or reduce code smells. Runs a two-subagent pipeline: reader/planner then executor.
Code Optimizer
Deep code optimization and bug hunting. Use when the user asks to optimize performance, find bugs, analyze edge cases, detect memory leaks, or review code quality. Runs a three-subagent pipeline: analyzer -> planner -> executor with explicit user confirmation before changes.
Planning
Create detailed multi-session plans with a single-pass analysis of files and changes. Use when a task needs a structured plan to be executed in later sessions or across multiple files/modules.
Project Startup
Analyze a project and generate .agent files for onboarding. Use to map the codebase, summarize docs, and bootstrap .agent/main.md, .agent/planning.md, and plans.
Test Generator
Generate and run automated tests (unit, integration, API, E2E) adapted to the project stack. Use when the user asks to add tests, improve coverage, or test specific modules or flows. Runs a three-subagent pipeline: stack analysis -> test generation -> execution with report and user confirmation.