用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Maestra-Tech/ContextDevKit --skill source-command-audit-deep-analysis命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | source-command-audit-deep-analysis |
| description | Global read-only analysis across code, security, dependencies, and likely defects. |
Use this skill when the user asks to run the migrated source command deep-analysis.
A full-project sweep (focus: $ARGUMENTS if given, else the whole repo): deterministic scanners plus specialist judgment into one factual report.
Deterministic pass — aggregate every scanner:
node contextkit/tools/scripts/deep-analysis.mjs --write
Merges tech-debt, dependency/supply-chain, and contract findings into
contextkit/memory/deep-analysis-findings.json.
Judgment pass — what regex can't see. Delegate in parallel (Agent tool):
security + infra-security → vulnerabilities, secrets, infra exposure.code-reviewer → constitution / SRP / structure smells.architect → cross-cutting design risks (→ candidate ADRs).qa-orchestrator → coverage gaps on qa.criticalPaths.bugType + severity S1-S4.Report — one consolidated report: counts by scan + severity, the top issues (🔴 / 🟡 / 🟢), and what's healthy. This is the deliverable; keep it factual.
Suggest ADRs — for any finding implying an architectural decision (a pattern
to adopt, a boundary to enforce, a dependency to drop), first scan existing
decisions with node contextkit/tools/scripts/adr-digest.mjs --json [ADR-0027] so
you extend/reference an existing ADR instead of duplicating it; then draft a new
one with /new-adr (Context / Decision / Consequences) only if none fits.
End with the natural next step — usually an explicitly scoped /dev-start
on the worst accepted item. The analysis itself creates no task, workflow, or
source edit.
This is the command the security-mode boot trigger reminds you to run on a cadence (config
securityMode.everyNSessions). It's active, not reactive.