@champpaba/claude-agent-kit 1.7.0 → 1.7.1
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 +39 -1
- package/.claude/contexts/patterns/agent-discovery.md +7 -3
- package/README.md +44 -1
- package/package.json +1 -1
package/.claude/CLAUDE.md
CHANGED
|
@@ -1,11 +1,49 @@
|
|
|
1
1
|
# CLAUDE.md
|
|
2
2
|
|
|
3
3
|
> **Navigation Hub for AI Agents**
|
|
4
|
-
> **Template Version:** 1.7.
|
|
4
|
+
> **Template Version:** 1.7.1 - Universal Multi-Agent Template (Opus 4.5)
|
|
5
5
|
> **Latest:** Incremental Testing - Milestone-based validation for high-risk tasks with round-based retry
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
9
|
+
## 📁 File Naming Conventions (OpenSpec + Template)
|
|
10
|
+
|
|
11
|
+
> **IMPORTANT:** Avoid confusion between OpenSpec files and Template files
|
|
12
|
+
|
|
13
|
+
### OpenSpec Files (from [Fission-AI/OpenSpec](https://github.com/Fission-AI/OpenSpec))
|
|
14
|
+
|
|
15
|
+
| File | Purpose | When to Read |
|
|
16
|
+
|------|---------|--------------|
|
|
17
|
+
| `proposal.md` | WHY - Goals, scope, rationale | Phase planning |
|
|
18
|
+
| `tasks.md` | WHAT - Implementation checklist | Task tracking |
|
|
19
|
+
| `design.md` | **Technical/Architecture decisions** (optional) | Backend/Database phases |
|
|
20
|
+
| `specs/` | Delta specs (ADDED/MODIFIED/REMOVED) | Requirement validation |
|
|
21
|
+
|
|
22
|
+
### Template Files (from claude-multi-agent-template)
|
|
23
|
+
|
|
24
|
+
| File | Purpose | When to Read |
|
|
25
|
+
|------|---------|--------------|
|
|
26
|
+
| `STYLE_GUIDE.md` | **Visual design** (colors, typography, spacing) | UI/Frontend phases |
|
|
27
|
+
| `STYLE_TOKENS.json` | Lightweight design tokens (~500 tokens) | Quick UI reference |
|
|
28
|
+
| `page-plan.md` | UI component layout + content strategy | uxui-frontend agent |
|
|
29
|
+
| `phases.md` | Execution plan with agent assignments | All phases |
|
|
30
|
+
| `flags.json` | Progress tracking | All phases |
|
|
31
|
+
|
|
32
|
+
### Key Distinction
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
OpenSpec design.md = Technical Architecture (data flow, API structure, system design)
|
|
36
|
+
Template STYLE_GUIDE = Visual Design (colors, fonts, spacing, component styles)
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
**Agents should read BOTH when relevant:**
|
|
40
|
+
- `uxui-frontend` → STYLE_GUIDE.md (visual) + design.md (if has UI architecture)
|
|
41
|
+
- `backend` → design.md (API/data architecture)
|
|
42
|
+
- `database` → design.md (data models, relationships)
|
|
43
|
+
- `frontend` → STYLE_GUIDE.md (visual) + design.md (API contracts)
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
9
47
|
## 🎯 What is This Template?
|
|
10
48
|
|
|
11
49
|
Universal, framework-agnostic template for AI-assisted development.
|
|
@@ -104,11 +104,15 @@ ls openspec/changes/{change-id}/.claude/
|
|
|
104
104
|
|
|
105
105
|
4. **OpenSpec files:**
|
|
106
106
|
```bash
|
|
107
|
-
Read: openspec/changes/{change-id}/proposal.md
|
|
108
|
-
Read: openspec/changes/{change-id}/tasks.md
|
|
109
|
-
Read: openspec/changes/{change-id}/design.md
|
|
107
|
+
Read: openspec/changes/{change-id}/proposal.md # WHY - goals, scope
|
|
108
|
+
Read: openspec/changes/{change-id}/tasks.md # WHAT - checklist
|
|
109
|
+
Read: openspec/changes/{change-id}/design.md # HOW - technical architecture (if exists)
|
|
110
110
|
```
|
|
111
111
|
|
|
112
|
+
> **Note:** `design.md` = Technical/Architecture decisions (API structure, data flow)
|
|
113
|
+
> This is DIFFERENT from `STYLE_GUIDE.md` which is Visual Design (colors, fonts)
|
|
114
|
+
> See CLAUDE.md "File Naming Conventions" for details.
|
|
115
|
+
|
|
112
116
|
**If change context doesn't exist:**
|
|
113
117
|
- Skip Level 5 (working on general task, not OpenSpec change)
|
|
114
118
|
|
package/README.md
CHANGED
|
@@ -917,7 +917,37 @@ Built with:
|
|
|
917
917
|
|
|
918
918
|
---
|
|
919
919
|
|
|
920
|
-
## 🆕 What's New in v1.7.
|
|
920
|
+
## 🆕 What's New in v1.7.1
|
|
921
|
+
|
|
922
|
+
**Patch: OpenSpec File Naming Conventions - Clarify design.md vs STYLE_GUIDE.md** 📁
|
|
923
|
+
|
|
924
|
+
### The Issue
|
|
925
|
+
|
|
926
|
+
Users were confused between two files with similar names:
|
|
927
|
+
- `design.md` (from OpenSpec) = Technical/Architecture decisions
|
|
928
|
+
- `STYLE_GUIDE.md` (from Template) = Visual design (colors, fonts, spacing)
|
|
929
|
+
|
|
930
|
+
### The Fix
|
|
931
|
+
|
|
932
|
+
Added clear documentation in CLAUDE.md and agent-discovery.md:
|
|
933
|
+
|
|
934
|
+
| Source | File | Purpose |
|
|
935
|
+
|--------|------|---------|
|
|
936
|
+
| **OpenSpec** | `design.md` | Technical Architecture (API structure, data flow) |
|
|
937
|
+
| **Template** | `STYLE_GUIDE.md` | Visual Design (colors, typography, spacing) |
|
|
938
|
+
|
|
939
|
+
### Updated Files
|
|
940
|
+
|
|
941
|
+
- `CLAUDE.md` - New "📁 File Naming Conventions" section
|
|
942
|
+
- `agent-discovery.md` - Added notes explaining design.md vs STYLE_GUIDE.md
|
|
943
|
+
|
|
944
|
+
### No Breaking Changes
|
|
945
|
+
|
|
946
|
+
All existing workflows continue to work. This is a documentation improvement only.
|
|
947
|
+
|
|
948
|
+
---
|
|
949
|
+
|
|
950
|
+
## 📋 What's New in v1.7.0
|
|
921
951
|
|
|
922
952
|
**Feature: Opus 4.5 Model Upgrade - All Subagents Now Use Latest Claude Model** 🧠
|
|
923
953
|
|
|
@@ -1192,6 +1222,19 @@ All your customizations in `.claude/contexts/domain/` are preserved!
|
|
|
1192
1222
|
|
|
1193
1223
|
## 📜 Changelog
|
|
1194
1224
|
|
|
1225
|
+
### v1.7.1 (2025-11-25)
|
|
1226
|
+
**Patch: OpenSpec File Naming Conventions**
|
|
1227
|
+
|
|
1228
|
+
**Added:**
|
|
1229
|
+
- New "📁 File Naming Conventions" section in CLAUDE.md
|
|
1230
|
+
- Clear distinction between OpenSpec files and Template files
|
|
1231
|
+
- Notes in agent-discovery.md explaining design.md purpose
|
|
1232
|
+
|
|
1233
|
+
**Documentation:**
|
|
1234
|
+
- `design.md` (OpenSpec) = Technical Architecture (API, data flow)
|
|
1235
|
+
- `STYLE_GUIDE.md` (Template) = Visual Design (colors, fonts, spacing)
|
|
1236
|
+
- Updated agent reading guidance per role
|
|
1237
|
+
|
|
1195
1238
|
### v1.7.0 (2025-11-25)
|
|
1196
1239
|
**Feature: Opus 4.5 Model Upgrade**
|
|
1197
1240
|
|