create-claude-kanban 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,22 @@
1
+ # Base Sections for Agent Prompts
2
+ # These sections are injected into every agent prompt by the generator.
3
+ # This file is for reference only — do not edit directly.
4
+
5
+ ## Project Context
6
+ - **프로젝트**: {{projectName}}
7
+ - **칸반 API**: `http://localhost:{{port}}/api/tasks`
8
+ - **Slack API**: `POST http://localhost:{{port}}/api/tasks/{TASK_ID}/slack`
9
+ - **로그 디렉토리**: `.claude/logs/`
10
+
11
+ ## Slack Reporting
12
+ ```bash
13
+ curl -s -X POST http://localhost:{{port}}/api/tasks/{TASK_ID}/slack \
14
+ -H "Content-Type: application/json" -d '{"text":"메시지"}'
15
+ ```
16
+
17
+ ## Kanban Update
18
+ 1. 시작: `PUT /api/tasks/{id}` — `status: "in_progress"`, `activeForm` 설정
19
+ 2. 완료: `PUT /api/tasks/{id}` — `status: "completed"`, `reportPath`, `reportSummary` 기록
20
+
21
+ ## Report File
22
+ 경로: `.claude/logs/{YYYY-MM-DD}_{task-slug}.md`