@champpaba/claude-agent-kit 2.1.3 → 2.1.5

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.
package/.claude/CLAUDE.md CHANGED
@@ -408,6 +408,13 @@ Prompt "Update PROJECT_STATUS.yml?" when detecting these patterns:
408
408
  | Infrastructure change (deploy, tunnel, DB migration) | Update `infrastructure` |
409
409
  | User discusses priority shift | Update `next_priorities` |
410
410
  | `/csetup {change-id}` started | Update `current_focus.active_change` |
411
+ | **Future features/ideas:** "อยากให้มี...", "want to add...", "later we should...", "in the future..." | Add to `future_ideas` |
412
+ | **Technical debt:** "ต้องแก้...", "should refactor...", "tech debt...", "needs cleanup..." | Add to `technical_debt` |
413
+ | **Decisions made:** "ตัดสินใจว่า...", "we decided...", "going with...", "chose X over Y" | Add to `decisions` |
414
+ | **Learnings/notes:** "พบว่า...", "discovered...", "note:...", "important:..." | Add to `notes` |
415
+ | **Problems found (by Claude):** "⚠️ ปัญหาที่พบ", "ไม่มี X", "missing X", "not configured" | Add to `technical_debt` or `blockers` |
416
+ | **Config gaps:** "ไม่ได้ตั้งค่า...", "need to configure...", "should add to CI/CD" | Add to `technical_debt` |
417
+ | **Sync issues:** "DB not synced", "schema mismatch", "local vs production differs" | Add to `blockers` + `infrastructure` |
411
418
 
412
419
  ### Update Protocol
413
420
 
@@ -423,7 +430,7 @@ Prompt "Update PROJECT_STATUS.yml?" when detecting these patterns:
423
430
  Claude: *reads PROJECT_STATUS.yml*
424
431
  Claude: "I see auth-system is active, tunnel running but waiting for domain."
425
432
 
426
- # During work
433
+ # During work - blocker resolved
427
434
  User: "Domain is now configured"
428
435
  Claude: "Update PROJECT_STATUS.yml?
429
436
  - Remove 'domain' from blockers
@@ -431,6 +438,42 @@ Claude: "Update PROJECT_STATUS.yml?
431
438
 
432
439
  # After archiving
433
440
  Claude: "Auth-system archived. Add to completed_changes?"
441
+
442
+ # Casual conversation - future idea
443
+ User: "อยากให้มี dark mode ด้วยนะ ไว้ทำทีหลัง"
444
+ Claude: "Add to PROJECT_STATUS.yml future_ideas?
445
+ - idea: Dark mode support
446
+ - context: User requested, low priority"
447
+
448
+ # Discussion - technical debt
449
+ User: "ตรงนี้ code มันซ้ำๆ ต้องแก้ทีหลัง"
450
+ Claude: "Add to PROJECT_STATUS.yml technical_debt?
451
+ - item: Refactor duplicated code in auth middleware
452
+ - priority: medium"
453
+
454
+ # Decision made
455
+ User: "ตัดสินใจใช้ Drizzle แทน Prisma แล้ว เพราะ type-safe กว่า"
456
+ Claude: "Add to PROJECT_STATUS.yml decisions?
457
+ - decision: Use Drizzle over Prisma
458
+ - reason: Better type safety"
459
+
460
+ # Problem found by Claude during analysis
461
+ Claude: "⚠️ ปัญหาที่พบ: ไม่มี migration step ใน CI/CD!"
462
+ Claude: "Add to PROJECT_STATUS.yml?
463
+ technical_debt:
464
+ - item: Add DB migration to CI/CD
465
+ - reason: Schema not synced between local and VPS
466
+ - priority: high"
467
+
468
+ # Config gap discovered
469
+ Claude: "Local DB กับ VPS schema ไม่ sync กัน"
470
+ Claude: "Add to PROJECT_STATUS.yml?
471
+ blockers:
472
+ - id: db-schema-sync
473
+ - description: Local and VPS DB schemas out of sync
474
+ infrastructure.database:
475
+ - status: degraded
476
+ - notes: Schema mismatch, need migration"
434
477
  ```
435
478
 
436
479
  ---
@@ -84,6 +84,51 @@ next_priorities: []
84
84
  # - id: user-profile
85
85
  # reason: "Dependency for RIASEC save feature"
86
86
 
87
+ # -------------------------------------------------------------------
88
+ # FUTURE IDEAS
89
+ # Features/enhancements discussed but not yet planned
90
+ # Captured from: "อยากให้มี...", "want to add...", "later...", "in the future..."
91
+ # -------------------------------------------------------------------
92
+ future_ideas: []
93
+ # Example:
94
+ # - idea: "Dark mode support"
95
+ # context: "User requested during review"
96
+ # date: "2025-12-01"
97
+ #
98
+ # - idea: "Export to PDF"
99
+ # context: "Nice to have for reports"
100
+ # date: "2025-11-28"
101
+
102
+ # -------------------------------------------------------------------
103
+ # TECHNICAL DEBT
104
+ # Known issues to fix later
105
+ # Captured from: "ต้องแก้...", "should refactor...", "tech debt...", "needs cleanup..."
106
+ # -------------------------------------------------------------------
107
+ technical_debt: []
108
+ # Example:
109
+ # - item: "Refactor auth middleware"
110
+ # reason: "Duplicated logic in 3 places"
111
+ # priority: medium # low, medium, high
112
+ #
113
+ # - item: "Add proper error boundaries"
114
+ # reason: "Currently crashes on API errors"
115
+ # priority: high
116
+
117
+ # -------------------------------------------------------------------
118
+ # DECISIONS
119
+ # Important technical/product decisions made
120
+ # Captured from: "ตัดสินใจว่า...", "we decided...", "going with...", "chose X over Y"
121
+ # -------------------------------------------------------------------
122
+ decisions: []
123
+ # Example:
124
+ # - decision: "Use better-auth over NextAuth"
125
+ # reason: "Better TypeScript support, simpler API"
126
+ # date: "2025-12-01"
127
+ #
128
+ # - decision: "PostgreSQL over MongoDB"
129
+ # reason: "Relational data, ACID compliance needed"
130
+ # date: "2025-11-30"
131
+
87
132
  # -------------------------------------------------------------------
88
133
  # NOTES
89
134
  # Free-form context that doesn't fit above
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@champpaba/claude-agent-kit",
3
- "version": "2.1.3",
3
+ "version": "2.1.5",
4
4
  "description": "Universal multi-agent template for Claude Code - AI-assisted development with specialized agents",
5
5
  "main": "bin/cli.js",
6
6
  "bin": {