بنقرة واحدة
csummary
Feature summary. Use after /cdocs to see what the workflow caught, or mid-feature to check progress.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Feature summary. Use after /cdocs to see what the workflow caught, or mid-feature to check progress.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Post-merge bug analysis. Use when a bug escapes to production. Traces which phase missed it and strengthens the workflow.
Fully-autonomous issue-resolution pipeline. Selects one open GitHub issue, branches off the fresh default branch, delegates root-cause + TDD fix to /cdebug (autonomous mode), verifies, runs the full regression suite, and — only if everything is green and CI-clean — opens a PR that closes the issue. Fail-closed: any inability to produce a verified fix aborts with an issue comment and no PR, preserving evidence. The issue→PR sibling of /cauto.
Update project documentation after a feature lands. Updates README, .correctless/AGENT_CONTEXT.md, .correctless/ARCHITECTURE.md, and feature docs. Run before merging.
Enforced TDD workflow. Write failing tests from spec rules, then implement. Use after /creview approves a spec.
Compare current model+HARNESS_VERSION pipeline metrics against stored baselines and produce a per-feature regression report. Use after Anthropic ships a model upgrade or when /cspec/cstatus surfaces a harness version_bumped advisory. Read-only on the fingerprint store; writes only the baseline file.
Show current Correctless workflow state, available commands, and suggested next steps. Run anytime to see where you are.
| name | csummary |
| description | Feature summary. Use after /cdocs to see what the workflow caught, or mid-feature to check progress. |
| allowed-tools | Read, Grep, Glob, Bash(git*), Write(.correctless/artifacts/summary-*) |
| disallowed-tools | Edit, MultiEdit, NotebookEdit, CreateFile |
| interaction_mode | autonomous |
Shared constraints apply. Before executing, read
_shared/constraints.mdfrom the parent of this skill's base directory. All constraints there apply to this skill.
Generate a one-page summary of everything the Correctless workflow caught during this feature. This is the "look what I saved you" report.
/cdocs completes (end of a feature) — full summaryRead these files to build the summary. Skip any that don't exist.
.correctless/specs/{task-slug}.md) — check for rules added during review (rules not in the original draft).correctless/artifacts/qa-findings-{task-slug}.json) — issues caught during TDD QA.correctless/verification/{task-slug}-verification.md) — issues caught during verification.correctless/artifacts/tdd-test-edits.log) — tests modified during implementation.correctless/artifacts/audit-trail-{branch-slug}.jsonl) — every file modification with workflow phase and timestamp. Shows exactly which files were touched in which phases, without manual instrumentation.Run bash .correctless/hooks/workflow-advance.sh status to get the task name, spec path, and branch. If no active workflow, ask the human which feature to summarize and search .correctless/specs/ by slug.
Read the spec file. Look for rules that were added during the review phase — these are rules the spec author didn't think of. Indicators:
guards_against: AP-xxx)If a research brief exists (.correctless/artifacts/research/{task-slug}-research.md), note what the research agent found (stale APIs, CVEs, deprecated patterns).
The test audit runs between RED and GREEN. Its findings are verbal (returned to the orchestrator) and may not be persisted as a file. Check:
Read .correctless/artifacts/qa-findings-{task-slug}.json. For each finding:
Read .correctless/verification/{task-slug}-verification.md. Extract:
For each issue caught, assess: would this have shipped to production without the workflow?
Count the "would have shipped" items. This is the headline number.
Print the summary to the conversation AND write it to .correctless/artifacts/summary-{task-slug}.md:
# Workflow Summary: {Feature Name}
**Branch:** {branch name}
**Duration:** {time from first to last commit}
**Spec:** {.correctless/specs/slug.md}
## What the Workflow Caught
### Review found ({N} issues): <!-- /creview (at standard intensity) or /creview-spec (at high+ intensity) -->
- {description of each issue added during review}
- {security checklist findings}
### Test Audit found ({N} issues):
- {test quality issues caught before implementation started}
### /ctdd QA found ({N} issues, {M} rounds):
- {each QA finding with instance + class fix}
### /cverify found ({N} issues):
- {verification findings}
## Research Insights (if research agent ran):
- {current best practices found, stale patterns avoided, CVEs dodged}
## Spec Updates During TDD:
- {if spec was revised mid-implementation, what changed and why}
## Stats
- **Total issues caught:** {N}
- **Would have shipped without workflow:** {M} ({percentage}%)
- **QA rounds:** {count}
- **Spec updates:** {count}
## What This Means
{1-2 sentences: "Without this workflow, {M} issues including {most critical} would have shipped to production."}
Use TaskCreate/TaskUpdate to show progress:
After generating: "Export this summary to include in your PR description: /export .correctless/artifacts/summary-{task-slug}.md"
/csummary needs QA findings from /ctdd).templates/redaction-rules.md first.