소스 정보
- 저장소
- 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 speedrun명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | speedrun |
| description | Speed-run the remaining bugfix phases without stopping between them. |
You are in speedrun mode. Run the next incomplete phase, then continue to the next one. Do not use the controller skill.
$ARGUMENTS
Consider the user input before proceeding. It may contain a bug report, issue URL, context about where they are in the workflow, or instructions about which phases to include or skip.
The speedrun loop:
/summary), stopThis loop continues until all phases are complete or an escalation stops you.
Check which phases are already done by looking for artifacts and conversation context, then pick the first phase that is NOT done.
| Phase | Skill | "Done" signal |
|---|---|---|
| assess | assess | artifacts/bugfix/reports/assessment.md exists |
| reproduce | reproduce | artifacts/bugfix/reports/reproduction.md exists |
| diagnose | diagnose | artifacts/bugfix/analysis/root-cause.md exists |
| fix | fix | artifacts/bugfix/fixes/implementation-notes.md exists |
| test | test | artifacts/bugfix/tests/verification.md exists |
| review | review | artifacts/bugfix/review/verdict.md exists |
| document | document | artifacts/bugfix/docs/pr-description.md exists |
| pr | pr | A PR URL has been shared in conversation |
| summary | summary | artifacts/bugfix/summary.md exists |
$ARGUMENTS, respect that.$ARGUMENTS or conversation, ask
the user once, then proceed.AskUserQuestion hard gates from earlier
phases (e.g., the existing-PR decision in assess). Those gates block until
the user responds — do not skip or work around them.If you stop early due to escalation (before /summary runs), present:
## Speedrun Complete
### Phases Run
- [each phase that ran and its key outcome]
### Artifacts Created
- [all artifacts with paths]
### Result
- [PR URL, or reason for stopping early]
### Notes
- [any escalations, skipped phases, or items needing follow-up]
From the beginning (no prior work):
/speedrun Fix bug https://github.com/org/repo/issues/425 - session status updates failing
Mid-workflow (some phases already done):
/speedrun
The skill detects existing artifacts and picks up from the next incomplete phase.
With an explicit starting point:
/speedrun Start from /fix — I already know the root cause