원클릭으로
chelp
Quick help — shows the workflow pipeline, available commands, and current status.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Quick help — shows the workflow pipeline, available commands, and current status.
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 | chelp |
| description | Quick help — shows the workflow pipeline, available commands, and current status. |
| allowed-tools | Read, Bash(*) |
| disallowed-tools | Edit, Write, 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.
Show the user the workflow pipeline, available commands, and current status. Keep output under 50 lines.
Check if .correctless/config/workflow-config.json exists. If not, the project is not set up yet. If it exists, read workflow.intensity: if present, use the configured value. If absent, default to standard intensity.
If not set up:
"Correctless isn't configured yet. Run /csetup to get started."
At standard intensity:
Correctless (standard intensity):
/cspec → /creview → [ /ctdd ] → /cverify → /cdocs → merge
│
┌─────┴─────┐
RED → GREEN → QA
│ │
test audit │
└─ fix ◄┘
At high+ intensity:
Correctless (high intensity):
/cspec → /creview-spec → [ /ctdd ] → /cverify → /cupdate-arch → /cdocs → /caudit → merge
│
┌─────┴─────┐
RED → GREEN → QA
│ │
test audit │
└─ fix ◄┘
At critical+ intensity:
Correctless (critical intensity):
/cspec → /cmodel → /creview-spec → [ /ctdd ] → /cverify → /cupdate-arch → /cdocs → /caudit → merge
│
┌─────┴─────┐
RED → GREEN → QA
│ │
test audit │
└─ fix ◄┘
All 32 skills are always visible. Skills gated behind an intensity level are annotated with their minimum.
Feature workflow:
/cspec Write a feature spec with testable rules
/creview Skeptical review + security checklist (~3 min)
/creview-spec Adversarial 6-agent review (~15 min) [high+]
/cmodel Formal Alloy modeling [critical+]
/ctdd Enforced TDD: tests → implement → QA
/cverify Verify implementation matches spec
/cupdate-arch Update .correctless/ARCHITECTURE.md [high+]
/cdocs Update documentation
/caudit Olympics audit (QA/Hacker/Performance/UX) [high+]
/cpostmortem Post-merge bug analysis (when bugs escape)
/cdevadv Devil's advocate — challenge assumptions
/credteam Live red team assessment [critical+]
Other:
/cquick Quick fix with TDD — no spec/review for small changes
/crefactor Structured refactoring (tests must pass before + after)
/cpr-review Review someone else's PR
/ccontribute Contribute to someone else's project
/cmaintain Review contributions as a maintainer
/cdebug Structured bug investigation
/cstatus Where am I? What's next?
/csummary What did the workflow catch this feature?
/cmetrics Project-wide health dashboard
/csetup Re-run setup / health check
/chelp This help
/cwtf Audit the workflow — did agents follow instructions?
/crelease Version bumping, changelog, release tagging
/cexplain Guided codebase exploration with diagrams
/cauto Semi-auto pipeline — orchestrates ctdd through PR [standard+]
/carchitect Architecture definition — reverse-engineer or greenfield
/cmodelupgrade Compare current model+HARNESS_VERSION pipeline metrics vs baseline
/cdashboard HTML project dashboard — metrics + artifact browser
/ctriage Bulk triage deferred findings backlog
/cprune Documentation and artifact pruning
/cchores Autonomous backlog grooming — fix one suitable issue, open one PR
Run: .correctless/hooks/workflow-advance.sh status 2>/dev/null
If active workflow: show the phase and next action.
If no active workflow: "No active workflow. Start one: git checkout -b feature/my-feature then /cspec."
Quick reference:
Start a feature → /cspec
Review a PR → /cpr-review {number}
Fix a bug → /cdebug
Refactor safely → /crefactor
Check status → /cstatus
Contribute to OSS → /ccontribute
Review as maintainer → /cmaintain
Project health → /cmetrics
Audit the workflow → /cwtf
Quick fix (no spec) → /cquick
Auto-pilot pipeline → /cauto