Kanban 튜토리얼
기준일: 2026-07-26
난이도: 중급
공식 기준: Kanban Tutorial
개요
Hermes Kanban 보드로 다중 프로필 워커를 조율하는 튜토리얼입니다. durable 상태 전이·재시도·역할 파이프라인을 다룹니다.
핵심 개념
| 개념 | 설명 |
|---|---|
| Board / worker profile | 칸반과 역할 |
| worker tools | 보드 조작 도구 |
| blocked / unblock | 리뷰 실패 후 재개 |
| fleet farming | 다수 워커 백로그 소비 |
상세
설정
원문 절: Setup
- you
hermes kanban init # optional; first `hermes kanban <anything>` auto-inits
hermes dashboard # opens http://127.0.0.1:9119 in your browser
# click Kanban in the left nav
보드 한눈에 보기
원문 절: The board at a glance
- Flat view — 공식 하위 절. 구현·설정 세부 원문 참조.
- Triage
- decomposer
- Orchestration: Auto/Manual
- ⚗ Decompose
- ✨ Specify
스토리 1 — 솔로 개발 기능 출시
원문 절: Story 1 — Solo dev shipping a feature
- Nudge dispatcher
- you
SCHEMA=$(hermes kanban create "Design auth schema" \
--assignee backend-dev --tenant auth-project --priority 2 \
--body "Design the user/session/token schema for the auth module." \
--json | jq -r .id)
API=$(hermes kanban create "Implement auth API endpoints" \
--assignee backend-dev --tenant auth-project --priority 2 \
--parent $SCHEMA \
--body "POST /register, POST /login, POST /refresh, POST /logout." \
--json | jq -r .id)
hermes kanban create "Write auth integration tests" \
--assignee qa-dev --tenant auth-project --priority 2 \
--parent $API \
--body "Cover happy path, wrong password, expired token, concurrent refresh."
스토리 2 — 플릿 파밍
원문 절: Story 2 — Fleet farming
- 이 절의 절차·표·코드는 공식 원문을 기준으로 적용한다.
for lang in Spanish French German; do
hermes kanban create "Translate homepage to $lang" \
--assignee translator --tenant content-ops
done
for i in 1 2 3 4 5; do
hermes kanban create "Transcribe Q3 customer call #$i" \
--assignee transcriber --tenant content-ops
done
for sku in 1001 1002 1003 1004; do
hermes kanban create "Generate product description: SKU-$sku" \
--assignee copywriter --tenant content-ops
done
스토리 3 — 역할 파이프라인과 재시도
원문 절: Story 3 — Role pipeline with retry
- new run
- two attempts
- Run 1
- Run 2
hermes kanban unblock $IMPL
# or from a chat: /kanban unblock $IMPL
Story 4 — Circuit breaker and crash recovery
- Circuit breaker — permanent-looking failure — 공식 하위 절. 구현·설정 세부 원문 참조.
- Crash recovery — worker dies mid-flight — 공식 하위 절. 구현·설정 세부 원문 참조.
- circuit breaker
- crash detection
hermes kanban create "Deploy to staging (missing creds)" \
--assignee deploy-bot --tenant ops \
--max-retries 3
Structured handoff — why summary and metadata matter
- prior attempts
- Parent task results
Inspecting a task currently running
- 이 절의 절차·표·코드는 공식 원문을 기준으로 적용한다.
Next steps
- 이 절의 절차·표·코드는 공식 원문을 기준으로 적용한다.
체크리스트
- 공식 원문 Kanban Tutorial과 대조했다
- 관련 코드·설정·권한을 로컬에서 확인했다
- 보안·opt-in·allowlist 정책을 지켰다
- 스모크 테스트 또는 단계 검증을 수행했다
다음 단계
- 공식 문서: Kanban Tutorial
- Hermes Agent 소개
- 트러블슈팅
기준일: 2026-07-26 — 공식 문서 동기화 코퍼스