원클릭으로
gardening
Maintain and improve the codebase — dependency updates, refactoring, docs, dead code removal, test coverage
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Maintain and improve the codebase — dependency updates, refactoring, docs, dead code removal, test coverage
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Analyze project state, prioritize TODO.md, create or refine plans for upcoming work
Goal-backward code review — verify recently completed work EXISTS, is SUBSTANTIVE, and is WIRED correctly
Reflect on a completed coding iteration to identify improvements
Keep TODO.md synchronized with completed work before committing
Execute TDD workflow with RED/GREEN/REFACTOR phases and quality verification
| name | gardening |
| description | Maintain and improve the codebase — dependency updates, refactoring, docs, dead code removal, test coverage |
Use this skill to run the gardening cycle: maintenance and incremental improvement of the codebase.
AGENTS.md for project context and current statusTODO.md to understand what's been completed and what's in progressCheck for outdated dependencies:
cargo outdated # if available
Or review Cargo.toml manually for pinned versions that may be stale. Upgrade cautiously — one dep at a time, verify tests pass after each.
Look for:
cargo clippy will flag these)#[test] blocks)AGENTS.md if anything is out of dateRun refactorings that genuinely simplify the codebase:
Keep changes focused and incremental. One logical improvement per commit.
cargo test --lib && cargo clippy --lib && cargo fmt
Zero clippy warnings required. All existing tests must stay green.
Commit improvements with descriptive messages. Group related changes (e.g., all dep updates together, all refactors together).