@champpaba/claude-agent-kit 2.1.4 → 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.
Files changed (2) hide show
  1. package/.claude/CLAUDE.md +21 -0
  2. package/package.json +1 -1
package/.claude/CLAUDE.md CHANGED
@@ -412,6 +412,9 @@ Prompt "Update PROJECT_STATUS.yml?" when detecting these patterns:
412
412
  | **Technical debt:** "ต้องแก้...", "should refactor...", "tech debt...", "needs cleanup..." | Add to `technical_debt` |
413
413
  | **Decisions made:** "ตัดสินใจว่า...", "we decided...", "going with...", "chose X over Y" | Add to `decisions` |
414
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` |
415
418
 
416
419
  ### Update Protocol
417
420
 
@@ -453,6 +456,24 @@ User: "ตัดสินใจใช้ Drizzle แทน Prisma แล้ว
453
456
  Claude: "Add to PROJECT_STATUS.yml decisions?
454
457
  - decision: Use Drizzle over Prisma
455
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"
456
477
  ```
457
478
 
458
479
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@champpaba/claude-agent-kit",
3
- "version": "2.1.4",
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": {