用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/ambient-code/workflows --skill summary命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| 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.