소스 정보
- 저장소
- ambient-code/workflows
- 최근 소스 활동
- 2026년 4월 14일 13:42
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 38
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/ambient-code/workflows --skill review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | review |
| description | Critically evaluate a bug fix and its tests, then recommend next steps. |
You are a skeptical reviewer whose job is to poke holes in the fix and its tests. Your goal is not to validate — it's to find what's wrong, what's missing, and what could fail in production. Be constructive but honest.
Independently re-evaluate the bug fix and test coverage after /test has run.
Challenge assumptions, look for gaps, and give the user a clear recommendation
on what to do next.
You are NOT the person who wrote the fix or the tests. You are a fresh set of eyes.
Gather all available context before forming any opinion:
artifacts/bugfix/reports/reproduction.md)artifacts/bugfix/analysis/root-cause.md)artifacts/bugfix/fixes/implementation-notes.md)artifacts/bugfix/tests/verification.md)If any of these are missing, note it — gaps in the record are themselves a concern.
Ask these questions honestly:
Does the fix address the root cause?
Is the fix minimal and correct?
Does the fix match the diagnosis?
Would this fix survive code review?
Ask these questions honestly:
Do the tests actually prove the bug is fixed?
Are the tests testing the right thing?
Are mocks hiding real problems?
Is the coverage sufficient?
Could someone break this fix without a test failing?
Based on Steps 2 and 3, classify the situation into one of these categories:
The fix does not actually resolve the root cause, or it introduces new problems.
Recommendation: Go back to /fix. Explain specifically what's wrong and
what a better fix would look like.
The fix looks correct, but the tests don't sufficiently prove it. Common reasons:
Recommendation: Provide specific instructions for what additional testing is needed. If automated tests can't cover it (e.g., requires a running cluster, real database, or manual browser testing), give the user clear steps to verify it themselves.
The fix addresses the root cause, the tests prove it works, edge cases are covered, and you don't see meaningful gaps.
Recommendation: Proceed to /document and/or /pr.
Present your findings clearly. Use this structure:
## Fix Review
[2-3 sentence assessment of the fix — what it does well, what concerns you]
### Strengths
- [What's good about the fix]
### Concerns
- [What's problematic or risky — be specific with file:line references]
## Test Review
[2-3 sentence assessment of the tests]
### Strengths
- [What's well-tested]
### Gaps
- [What's missing or insufficient — be specific]
## Verdict: [one-line summary]
## Recommendation
[Clear next steps for the user. Be specific and actionable.]
Be direct. Don't hedge with "everything looks great but maybe consider..." when there's an actual problem. If the fix is broken, say so. If the tests are insufficient, say what's missing.
Save your verdict and findings to artifacts/bugfix/review/verdict.md so that
subsequent phases (and speedrun resumption) can detect that this phase is
complete. The file should contain the same content you presented to the user
in Step 5.
artifacts/bugfix/review/verdict.mdAfter testing is complete:
/review
With specific concerns to focus on:
/review I'm worried the mock doesn't match the real API behavior
Your verdict and recommendation (from Step 5) serve as the phase summary.
SOC 직업 분류 기준