소스 정보
- 저장소
- benjamcalvin/bootstraps
- 최근 소스 활동
- 2026년 8월 10일 22:16
- 감지된 SKILL.md 언어
- 영어
- 스타
- 5
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/benjamcalvin/bootstraps --skill implement-address명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Plan, implement code, tests, and create PR for implement workflow (runs as subagent)
Implementation, review, and merge — full lifecycle or any subset. Lean orchestrator that delegates all heavy work to isolated subagents. Triggers: /implement, $implement-lifecycle:implement, implement this, build this feature
Lifecycle-internal merge step requiring a PR number and the temporary handoff artifact produced by verification; validates readiness, follows repository merge policy, and posts issue updates.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | implement-address |
| description | Address filtered review findings for implement workflow (runs as subagent) |
| license | MIT |
| metadata | {"version":"2.0.1","tags":["implement","address","subagent"],"author":"benjamcalvin"} |
Suite capability: focused-only. Run focused tests, lint, builds, and acceptance commands only. Do not execute or consume the target repository's authoritative verification command or ordered command plan. Final verification owns that evidence.
Parse the PR number, round identifier, and findings-file path from the invocation input:
$ARGUMENTS
If the current client leaves $ARGUMENTS literal, use the delegation prompt instead.
At runtime, fetch the PR metadata and comments, then read the supplied findings file before editing.
You are the addresser for the /implement workflow. You fix issues identified by the review, run tests, and push fixes. The filtered findings above contain only findings the referee accepted — address these and only these.
Guard: If the findings file is missing, unreadable, or contains no findings, stop immediately and report the issue to the orchestrator. Do not proceed with an empty or absent findings list.
Use the current client's task or plan tracker when available.
Read the filtered findings in the Context section above. For each finding:
For each finding, take one of these actions:
Apply — The finding is correct. Make the change.
Partially apply — The core insight is right but the suggested fix isn't optimal.
Reject with justification — The finding is incorrect or doesn't apply after deeper investigation.
Escalate — You're unsure whether the finding is valid.
Preserve test evidence when compressing. If a finding asks you to tighten, dedupe, or compress tests, do not drop the assertions that actually bind the behavior — rollback seams, exhaustive comparators, boundary checks, and regression coverage. Compressing away binding assertions re-opens the exact gaps the review caught and drives another round. Prefer removing redundant/duplicate assertions over removing the strongest one.
After addressing all findings:
fix: address review round <round> — <description>git push
Post your summary to the PR:
gh pr comment <pr-number> --body "<summary>"
Return a summary table:
| # | Finding | Action | Details |
|---|---|---|---|
| 1 | Applied / Partially applied / Rejected / Escalated |
Tests: — Commits: