What problem does it solve?
Small, low-risk codebase changes like documentation fixes, config tweaks, typo corrections, and trivial dependency bumps don't need the full heavy orchestrator pipeline, but still require proper gating, scoped branching, and PR workflows that are tedious to execute manually without cutting corners on safety.
Core Features & Use Cases
- Lightweight inline workflow: Complete small, single-concern changes with full commit/push/CI quality gates, no architect/developer/reviewer agent overhead.
- Isolated concurrent mode: Use the
--concurrently flag to run the chore in a separate git worktree off the default branch, avoiding conflicts with other active sessions editing the same shared checkout.
- Safe auto-merge hatch: Use the
--bypass flag (paired with --concurrently) to automatically merge the PR the moment CI passes, skipping only the human review gate for 100% safe trivial changes, never skipping test or quality checks.
- Use Case: Fix a typo in the project README, update a CI workflow timeout value, or tweak a pre-commit hook configuration without spinning up the full multi-agent development pipeline.
Quick Start
Use the chore skill to fix the typo in the CONTRIBUTING.md file and open a summary-only pull request with the changes.