一键导入
create-issue
Captures a defect as a Bug Report work item ready for /do, running the investigator first if the root cause isn't already established.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Captures a defect as a Bug Report work item ready for /do, running the investigator first if the root cause isn't already established.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Run the full autonomous pipeline against a work item — plan, implement, verify, PR, post-PR review + QA, wrap-up. Takes a GitHub issue
The Notion bridge for work items — creates a Notion work item mirroring a GitHub issue, uploads artifacts (item.md, refs/, plan.md, wrapup.md) to it, and pulls a work item's artifacts down to ./tmp/<id>/. Used by /create-feature, /create-epic, /create-issue (publish) and /do (pull before work, upload after). Use when a work item needs to be published to, updated in, or fetched from Notion.
Create Excalidraw diagram JSON files and PR visual overviews that make visual arguments. Use when the user wants to visualize workflows, architectures, concepts, pull request changes, before/after behavior, or a shareable explainer image for reviewers.
Dispatches one Codex (GPT-5.6) sub-agent via `codex exec` — implementer, backend-verifier, plan-reviewer, code-reviewer, code-researcher, or investigator — and returns its report. Used by /do, /discussion, and /create-issue whenever one of these roles runs; not normally invoked by the user directly. Use when a pipeline stage needs its Codex sub-agent dispatched, resumed for a fix round, or re-run.
Captures a discussed multi-phase workstream as an Epic Spec work item ready for /do. For a single-outcome change use /create-feature instead.
Captures a discussed feature as a lean Feature Ticket work item ready for /do. For multi-phase workstreams use /create-epic instead.
| name | create-issue |
| description | Captures a defect as a Bug Report work item ready for /do, running the investigator first if the root cause isn't already established. |
| argument-hint | [bug title or one-line summary] |
| disable-model-invocation | true |
Turn a defect the conversation has surfaced (typically via /discussion) into a lean
Bug Report that /do can fix autonomously. The completion artifact is
./tmp/<id>/item.md with status: ready — diagnosis captured, fix delegated.
This skill documents; it never fixes code.
Check what the conversation already established: reproduction, root cause + evidence,
confidence level. A root-cause finding from an investigator dispatch during
/discussion is the ideal input — reuse it, don't redo it.
If the root cause is not yet established, run the investigation now:
codex skill (role investigator) with the full
report (expected vs actual, environment, known repro steps, traces); it returns its
standard root-cause finding.frontend-verifier
first to exercise the flow and capture evidence, then pass its transcript along
with the defect report.Hypothesis: and what-was-tried captured in refs/.Success criteria: a root-cause finding in hand with an honest confidence level
(confirmed | likely | hypothesis) — or a documented failed-to-reproduce with the
attempts listed.
Where judgment is needed, confirm with the user: who is affected, how widespread, why
it matters now, and whether the suggested resolution path should be locked as a
direction or left to /do. Skip the ceremony when severity is obvious.
Success criteria: severity (critical | high | medium | low) and business impact
agreed with the user.
Draft ./tmp/<id>/item.md per ~/.references/draft-work-item.md, using this
skill's references/bug-report.md as the template. Bug specifics:
./tmp/<id>/refs/
(e.g. refs/error-trace.txt), linked not inlined. If the investigation produced a
current-state deep-dive worth keeping, save it per
~/.references/system-analysis.md as refs/system-analysis.md.Success criteria: item.md exists; repro is re-runnable; AC1 maps to the repro;
prevention criteria present; raw material linked from refs/.
Run the gate per ~/.references/socratic-gate.md. For a bug report it bears
down on root cause vs symptom (does the cause survive another "why"?),
evidence, whether the fix prevents the class or just this instance, and
completeness — sibling instances of the same defect class elsewhere, or
follow-up work this fix implies. A confirmed cause with a contained fix
fast-passes with zero to two questions. If the dialogue surfaces a deeper
cause to chase, re-dispatch the investigator before proceeding.
Success criteria: gate procedure complete — socrates returned pass (or
the cap was reached, or the user waived); ## Justification written into
item.md.
Publish per ~/.references/publish-work-item.md — issue title
fix: <bug title>, issue body = summary, severity, reproduction steps, root
cause + confidence, and the Justification section. Exception: leave
status: draft if the cause is still a hypothesis and the user wants more
evidence first — publish happens either way, so the evidence trail lives
with the issue.
Success criteria: published and cross-linked per the shared procedure.
Suggested next steps:
- `/do <issue # or ./tmp/<id>/item.md>` — run the autonomous pipeline to fix and verify
- `/discussion [topic]` — if the bug exposed a design question bigger than the fix