@champpaba/claude-agent-kit 2.1.3 → 2.1.4
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,10 @@ 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` |
|
|
411
415
|
|
|
412
416
|
### Update Protocol
|
|
413
417
|
|
|
@@ -423,7 +427,7 @@ Prompt "Update PROJECT_STATUS.yml?" when detecting these patterns:
|
|
|
423
427
|
Claude: *reads PROJECT_STATUS.yml*
|
|
424
428
|
Claude: "I see auth-system is active, tunnel running but waiting for domain."
|
|
425
429
|
|
|
426
|
-
# During work
|
|
430
|
+
# During work - blocker resolved
|
|
427
431
|
User: "Domain is now configured"
|
|
428
432
|
Claude: "Update PROJECT_STATUS.yml?
|
|
429
433
|
- Remove 'domain' from blockers
|
|
@@ -431,6 +435,24 @@ Claude: "Update PROJECT_STATUS.yml?
|
|
|
431
435
|
|
|
432
436
|
# After archiving
|
|
433
437
|
Claude: "Auth-system archived. Add to completed_changes?"
|
|
438
|
+
|
|
439
|
+
# Casual conversation - future idea
|
|
440
|
+
User: "อยากให้มี dark mode ด้วยนะ ไว้ทำทีหลัง"
|
|
441
|
+
Claude: "Add to PROJECT_STATUS.yml future_ideas?
|
|
442
|
+
- idea: Dark mode support
|
|
443
|
+
- context: User requested, low priority"
|
|
444
|
+
|
|
445
|
+
# Discussion - technical debt
|
|
446
|
+
User: "ตรงนี้ code มันซ้ำๆ ต้องแก้ทีหลัง"
|
|
447
|
+
Claude: "Add to PROJECT_STATUS.yml technical_debt?
|
|
448
|
+
- item: Refactor duplicated code in auth middleware
|
|
449
|
+
- priority: medium"
|
|
450
|
+
|
|
451
|
+
# Decision made
|
|
452
|
+
User: "ตัดสินใจใช้ Drizzle แทน Prisma แล้ว เพราะ type-safe กว่า"
|
|
453
|
+
Claude: "Add to PROJECT_STATUS.yml decisions?
|
|
454
|
+
- decision: Use Drizzle over Prisma
|
|
455
|
+
- reason: Better type safety"
|
|
434
456
|
```
|
|
435
457
|
|
|
436
458
|
---
|
|
@@ -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
|