一键导入
source-command-audit-audit
One-pass health audit — runs doctor, a tech-debt sweep, and a QA status check; summarizes top actions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
One-pass health audit — runs doctor, a tech-debt sweep, and a QA status check; summarizes top actions.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Domain Engineering diagnostic — shows what the classifier decides for an objective (CMIS/DAS/profile/skills/mode). Observation-only; never mutates or blocks.
Business-driven methodology entry point — classify (intake), create/advance an Operation or Business work context, and drive the intake → operation → nested-workflow flow. Host-neutral; dry-run by default.
Workflow Navigator — shows the current phase, deliverables, and next commands for an ADR-0057 workflow. Read-only; never mutates state.
Start a focused session on one objective — locks scope, blocks opportunistic refactors.
Deterministic QA gate (ADR-0055) — run the project suite; green + complete acceptance criteria ⇒ qa-approve testing cards into conclusion; red ⇒ report (and qa-reject only attributable failures).
L6 — autonomous feature pipeline. Drives the full squad: design → implement → review → test → log. Checkpoints can be manual or automatic.
| name | source-command-audit-audit |
| description | One-pass health audit — runs doctor, a tech-debt sweep, and a QA status check; summarizes top actions. |
Use this skill when the user asks to run the migrated source command audit.
Run a consolidated health check of the project and summarize the most important actions. Good to run weekly or before a release (and a natural fit for a scheduled/recurring run — see below).
node contextkit/tools/scripts/doctor.mjs — report any ✗
critical issues or ⚠ notes.node contextkit/tools/scripts/stats.mjs — note drift rate and
cadence; flag if drift is high (sessions not being registered).node contextkit/tools/scripts/tech-debt-scan.mjs --quick — list
the worst offenders; interpret which are real (don't fix here).l5.contractGlobs is set,
node contextkit/tools/scripts/contract-scan.mjs — flag removed/renamed exports.qa.criticalPaths are covered vs qa.coverageTarget.Output a single prioritized list: 🔴 do now / 🟡 soon / 🟢 fyi, each with the file and the one-line fix — this is the audit report.
Feed the backlog so nothing is lost. Ingest the mechanical findings (run
tech-debt-scan.mjs --write first, then node contextkit/tools/scripts/pipeline.mjs ingest contextkit/memory/tech-debt-findings.json --type chore), and pipeline.mjs add the 🔴/🟡 items you raised by judgment (🔴→P0/P1, 🟡→P2). The priorities are
auto-assigned but always editable by the user (`pipeline.mjs prioritize
` or `/pipeline`). Offer to open a focused `/dev-start` on the top item.
Tip: to run this on a schedule, use the harness — e.g.
/loopfor an interval in-session, or/scheduleto register a recurring remote agent that runs/audit(and pings you with the result).