بنقرة واحدة
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 ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.
| 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. |