원클릭으로
tech-debt
Sweep the codebase for tech debt and return a prioritized markdown task list of findings.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Sweep the codebase for tech debt and return a prioritized markdown task list of findings.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Guide for creating E2E feature tests with VHS GIF generation and Zola feature page auto-discovery for new visible UI features.
Guide for reviewing code changes (uncommitted or on a branch), existing code, and the project in general, providing a structured review report.
Guide for bumping project versions and running base release-preparation validations.
Guide for preparing git commits in this repository, including context gathering and repository-specific commit message conventions.
Audit subprocess execution, path handling, SQL queries, panic conditions, and dependency risks in this Rust TUI project.
SOC 직업 분류 기준
| name | tech-debt |
| description | Sweep the codebase for tech debt and return a prioritized markdown task list of findings. |
Use this skill when asked to find tech debt, stale patterns, or maintenance issues in a codebase.
The user may scope the sweep to specific directories or modules (e.g., "sweep
crates/agentty/src/app"). When a scope is given, restrict traversal to those paths.
When no scope is given, sweep the full codebase.
Read Project Context
AGENTS.md for project conventions, architecture references, and
style rules.Traverse Target Directories
AGENTS.md for
local conventions, entry points, and change guidance.Analyze for Tech Debt
TODO, FIXME, HACK, and XXX comments that
indicate deferred work.unwrap() alongside proper Result propagation), swallowed errors, and missing
error context.#[ignore].Return Findings as a Task List
# Tech Debt Report
## Summary
[Brief overview: total finding count, highest-risk area, and overall codebase health impression.]
## Critical
- [ ] **[Title]** — `[file/module scope]`
[Description of the issue and why it is critical.]
## High
- [ ] **[Title]** — `[file/module scope]`
[Description of the issue and recommended action.]
## Medium
- [ ] **[Title]** — `[file/module scope]`
[Description of the issue and recommended action.]
## Low
- [ ] **[Title]** — `[file/module scope]`
[Description of the issue and recommended action.]
| Priority | Criteria |
|---|---|
| Critical | Causes runtime failures, data loss, or blocks other work. |
| High | Significant maintenance burden, outdated patterns actively causing confusion, or missing error handling in critical paths. |
| Medium | Style inconsistencies, missing documentation, minor dead code, or deferred TODOs with clear scope. |
| Low | Cosmetic issues, minor naming improvements, or optional cleanup with no immediate impact. |