ワンクリックで
summary
Scan all workflow artifacts and present a synthesized summary of findings, decisions, and status.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Scan all workflow artifacts and present a synthesized summary of findings, decisions, and status.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Top-level workflow controller that manages phase transitions.
Understand the bug report and propose a plan before taking action.
Perform systematic root cause analysis to identify the underlying issue causing a bug
Create comprehensive documentation for a bug fix including issue updates, release notes, and team communication
Implement a bug fix based on root cause analysis, following project best practices
Create a pull request from the current branch. Use this instead of running gh pr create directly — it detects GitHub App vs user auth, finds or creates forks, syncs workflow files, detects the upstream default branch, and falls back to compare URLs when API access is limited.
| name | summary |
| description | Scan all workflow artifacts and present a synthesized summary of findings, decisions, and status. |
This skill can be invoked at any point in the workflow. It does not require prior phases to have completed; it summarizes whatever exists so far.
You are producing a concise, high-signal summary of everything the bugfix workflow has done so far. Your audience is someone who hasn't been watching the workflow run — they want to know what happened, what was decided, and what needs attention, without reading every artifact.
Scan the artifact directory, read what's there, and synthesize the important findings into a single summary. Surface things that might otherwise get buried: related PRs found, reproduction failures, review concerns, assumptions that were never confirmed, decisions made on the user's behalf.
Scan the artifact root directory to find everything the workflow has produced:
find artifacts/bugfix/ -type f -name '*.md' ! -name 'summary.md' 2>/dev/null | sort
If artifacts/bugfix/ doesn't exist or is empty, report that no artifacts
have been generated yet and stop.
Read every artifact file found in Step 1. Don't skip any — even small or seemingly unimportant files may contain notable findings.
As you read each artifact, pull out information in these categories:
Existing work discovered
Bug understanding
Root cause and fix
Testing status
Review concerns
Outstanding items
PR status
gh pr create or a manual compare URLPresent the summary directly to the user using this structure:
## Bugfix Workflow Summary
**Issue:** [title or one-line description]
**Status:** [where the workflow stopped — e.g., "PR created", "review complete, PR pending", "assessment only"]
### Key Findings
- [The most important things the user should know — 3-5 bullet points max]
### Decisions Made
- [Any choices made during the workflow, especially those made without explicit user input]
### Outstanding Concerns
- [Review caveats, untested edge cases, unconfirmed assumptions — or "None"]
### Artifacts
- [List of all artifact files with one-line descriptions]
### PR
- [PR URL and status, or "Not yet created"]
Keep it tight. The value of this summary is density — if it's as long as the artifacts themselves, it's not a summary.
Save the summary to artifacts/bugfix/summary.md.
artifacts/bugfix/summary.mdThe summary is the deliverable. Present it and stop — there is no next phase to recommend.