소스 정보
- 저장소
- rlaope/bestwork-agent
- 최근 소스 활동
- 2026년 4월 8일 05:46
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/rlaope/bestwork-agent --skill deliver명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Evidence-driven causal tracing — competing hypotheses, falsification, rebuttal round, recommended next probes
Feature validation gate — research, define purpose, stress-test from real user perspective before building
Maximum parallelism burst — all tasks execute simultaneously with no coordination overhead
SOC 직업 분류 기준
SKILL.md 표시 중
| name | deliver |
| description | Persistent completion mode — tasks must finish fully with verify/fix loops until done |
When this skill is invoked, you MUST follow this exact output sequence.
[BW] deliver mode — persistent completion, no task left behind...
Break the user's request into discrete completion targets. Each target has a clear done-condition.
[BW] deliver targets:
[ ] 1. {target} — done when: {concrete condition}
[ ] 2. {target} — done when: {concrete condition}
[ ] 3. {target} — done when: {concrete condition}
For EACH target, call TaskCreate for live progress:
TaskCreate: subject="target N: {target}", activeForm="delivering target N..."
Update with TaskUpdate as targets complete.
Execute in a loop until the done-condition is met:
[BW] deliver: working on target 1...
[BW] ▶ bestwork:{agent} implementing target 1
After implementation, VERIFY the done-condition:
[BW] deliver: verifying target 1...
Verification must use concrete checks:
npx tsc --noEmit), run tests, check importsIf verification passes:
[BW] ✓ target 1 complete (1 attempt)
If verification fails:
[BW] ✗ target 1 failed verification: {reason}
[BW] ↻ deliver: fixing target 1 (attempt 2)...
Fix the specific issue, then re-verify. Repeat until done.
After each target completes or fails, show progress:
[BW] deliver progress:
[✓] 1. {target}
[→] 2. {target} (attempt 3)
[ ] 3. {target}
If a single target fails verification 5 times:
[BW] deliver: target 2 stuck after 5 attempts
[BW] last failure: {description}
[BW] attempted fixes: {list}
[BW] options:
a) skip and continue (mark as incomplete)
b) simplify the approach
c) halt deliver mode
Wait for user input. This is the ONLY time deliver asks for input.
[BW] ═══════════════════════════════════
[BW] deliver complete: {N}/{M} targets done, {K} total attempts
[BW] {list completed targets}
[BW] ═══════════════════════════════════
After printing the completion block, call report-writer (src/observe/report-writer.ts) to save detailed output:
writeReport("deliver", {
total: {M},
done: {N},
agents: [list of all agents used],
tasks: [list of target descriptions with attempt counts],
durationMs: {elapsed ms},
decisions: [escalation decisions, fix strategies tried]
}, projectRoot)
Then call summarize (src/observe/result-summarizer.ts) and print the 1-liner:
[BW] ✓ {N}/{M} done — details: .bestwork/reports/deliver-{timestamp}.md
After writing the meeting log footer to .bestwork/state/meeting.jsonl, also append a decisions entry to .bestwork/context/decisions.md. Create the file and directory if they do not exist.
Format:
## {date}: {task}
- **Mode**: deliver ({N} targets, {K} attempts)
- **Verdict**: {COMPLETE/INCOMPLETE}
- **Key agents**: {comma-separated agent list}
- **Summary**: {1-sentence summary of what was delivered}
Save deliver state to .bestwork/state/deliver.json:
{
"created": "<ISO timestamp>",
"task": "<user's original request>",
"targets": [
{ "description": "...", "doneCondition": "...", "status": "complete", "attempts": 1 },
{ "description": "...", "doneCondition": "...", "status": "in_progress", "attempts": 3 }
]
}
Resume with ./deliver — picks up incomplete targets.
.bestwork/state/meeting.jsonl with attempt tracking