@champpaba/claude-agent-kit 1.6.1 ā 1.7.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.
- package/.claude/CLAUDE.md +1 -1
- package/.claude/agents/01-integration.md +1 -1
- package/.claude/agents/02-uxui-frontend.md +1 -1
- package/.claude/agents/03-test-debug.md +1 -1
- package/.claude/agents/04-frontend.md +1 -1
- package/.claude/agents/05-backend.md +1 -1
- package/.claude/agents/06-database.md +1 -1
- package/.claude/commands/cdev.md +3 -4
- package/.claude/lib/agent-executor.md +1 -1
- package/.claude/lib/detailed-guides/agent-system.md +11 -9
- package/README.md +51 -1
- package/package.json +1 -1
package/.claude/CLAUDE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# CLAUDE.md
|
|
2
2
|
|
|
3
3
|
> **Navigation Hub for AI Agents**
|
|
4
|
-
> **Template Version:** 1.
|
|
4
|
+
> **Template Version:** 1.7.0 - 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
|
---
|
package/.claude/commands/cdev.md
CHANGED
|
@@ -183,7 +183,7 @@ Run \`/designsetup\` to generate project-specific design system.
|
|
|
183
183
|
const prompt = buildAgentPrompt(phase, changeContext)
|
|
184
184
|
|
|
185
185
|
// 4.2: Execute agent with retry & validation
|
|
186
|
-
output(`\nš Invoking ${phase.agent} agent (model:
|
|
186
|
+
output(`\nš Invoking ${phase.agent} agent (model: opus)...`)
|
|
187
187
|
|
|
188
188
|
const result = await executeAgentWithRetry(
|
|
189
189
|
phase.agent,
|
|
@@ -240,9 +240,8 @@ if (result.success) {
|
|
|
240
240
|
3. **escalateToUser()**: See `.claude/lib/agent-executor.md`
|
|
241
241
|
|
|
242
242
|
**Model Strategy:**
|
|
243
|
-
- All agents use `model:
|
|
244
|
-
-
|
|
245
|
-
- 12-20x cheaper than sonnet
|
|
243
|
+
- All agents use `model: opus` (fixed)
|
|
244
|
+
- Opus 4.5 is the latest Claude model with best performance
|
|
246
245
|
- Quality maintained through comprehensive validation framework
|
|
247
246
|
|
|
248
247
|
---
|
|
@@ -80,7 +80,7 @@ auto_proceed = userApprovalGranted() // Check if user approved workflow
|
|
|
80
80
|
while (attempt <= max_retries):
|
|
81
81
|
|
|
82
82
|
1. Invoke agent:
|
|
83
|
-
Task(agent=agentType, model='
|
|
83
|
+
Task(agent=agentType, model='opus', prompt=buildPrompt(auto_proceed))
|
|
84
84
|
|
|
85
85
|
2. Handle agent questions (NEW!):
|
|
86
86
|
If agent asks "Should I proceed?" or "Continue?":
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> **Detailed guide to the multi-agent architecture**
|
|
4
4
|
> **Source:** Extracted from CLAUDE.md (Navigation Hub)
|
|
5
|
-
> **Version:** 1.4.
|
|
5
|
+
> **Version:** 1.7.0 (Opus 4.5)
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -29,14 +29,16 @@
|
|
|
29
29
|
|
|
30
30
|
## Available Agents (6 specialists)
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
|
35
|
-
|
|
36
|
-
| **
|
|
37
|
-
| **frontend** |
|
|
38
|
-
| **
|
|
39
|
-
| **
|
|
32
|
+
**All agents use Opus 4.5** for best-in-class reasoning and code quality.
|
|
33
|
+
|
|
34
|
+
| Agent | Color | Model | When to Use | Phase |
|
|
35
|
+
|-------|-------|-------|-------------|-------|
|
|
36
|
+
| **integration** | Orange | opus | Validate API contracts before connecting | 2.5 |
|
|
37
|
+
| **uxui-frontend** | Blue | opus | Design UI components with mock data | 1 |
|
|
38
|
+
| **test-debug** | Red | opus | Run tests and fix bugs (max 3-4 iterations) | 1,3,4 |
|
|
39
|
+
| **frontend** | Green | opus | Connect UI to backend APIs | 3 |
|
|
40
|
+
| **backend** | Cyan | opus | Create API endpoints with validation | 2 |
|
|
41
|
+
| **database** | Pink | opus | Design schemas, migrations, complex queries | 2 |
|
|
40
42
|
|
|
41
43
|
---
|
|
42
44
|
|
package/README.md
CHANGED
|
@@ -917,7 +917,43 @@ Built with:
|
|
|
917
917
|
|
|
918
918
|
---
|
|
919
919
|
|
|
920
|
-
## š What's New in v1.
|
|
920
|
+
## š What's New in v1.7.0
|
|
921
|
+
|
|
922
|
+
**Feature: Opus 4.5 Model Upgrade - All Subagents Now Use Latest Claude Model** š§
|
|
923
|
+
|
|
924
|
+
### The Change
|
|
925
|
+
|
|
926
|
+
All 6 specialized agents now use **Claude Opus 4.5** (the latest and most capable Claude model) instead of Haiku:
|
|
927
|
+
|
|
928
|
+
| Agent | Model (Before) | Model (After) |
|
|
929
|
+
|-------|----------------|---------------|
|
|
930
|
+
| integration | haiku | **opus** |
|
|
931
|
+
| uxui-frontend | haiku | **opus** |
|
|
932
|
+
| test-debug | haiku | **opus** |
|
|
933
|
+
| frontend | haiku | **opus** |
|
|
934
|
+
| backend | haiku | **opus** |
|
|
935
|
+
| database | haiku | **opus** |
|
|
936
|
+
|
|
937
|
+
### Benefits
|
|
938
|
+
|
|
939
|
+
- ā
**Best-in-class reasoning** - Opus 4.5 handles complex multi-step tasks better
|
|
940
|
+
- ā
**Improved code quality** - More accurate implementations with fewer errors
|
|
941
|
+
- ā
**Better context understanding** - Agents maintain context over longer sessions
|
|
942
|
+
- ā
**Enhanced problem-solving** - Complex debugging and architectural decisions improved
|
|
943
|
+
|
|
944
|
+
### Updated Files
|
|
945
|
+
|
|
946
|
+
- All agent files (`.claude/agents/*.md`) - `model: opus`
|
|
947
|
+
- `/cdev` command - Model strategy updated
|
|
948
|
+
- `agent-executor.md` - Task invocation uses opus
|
|
949
|
+
|
|
950
|
+
### No Breaking Changes
|
|
951
|
+
|
|
952
|
+
All existing workflows continue to work exactly as before, just with better performance!
|
|
953
|
+
|
|
954
|
+
---
|
|
955
|
+
|
|
956
|
+
## š What's New in v1.6.0
|
|
921
957
|
|
|
922
958
|
**Feature: Incremental Testing - Milestone-based Validation for High-Risk Tasks** š
|
|
923
959
|
|
|
@@ -1156,6 +1192,20 @@ All your customizations in `.claude/contexts/domain/` are preserved!
|
|
|
1156
1192
|
|
|
1157
1193
|
## š Changelog
|
|
1158
1194
|
|
|
1195
|
+
### v1.7.0 (2025-11-25)
|
|
1196
|
+
**Feature: Opus 4.5 Model Upgrade**
|
|
1197
|
+
|
|
1198
|
+
**Changed:**
|
|
1199
|
+
- All 6 agents upgraded from `model: haiku` to `model: opus`
|
|
1200
|
+
- Updated `/cdev` model strategy description
|
|
1201
|
+
- Updated `agent-executor.md` Task invocation
|
|
1202
|
+
|
|
1203
|
+
**Benefits:**
|
|
1204
|
+
- Best-in-class reasoning with Opus 4.5
|
|
1205
|
+
- Improved code quality and fewer errors
|
|
1206
|
+
- Better context understanding
|
|
1207
|
+
- Enhanced problem-solving for complex tasks
|
|
1208
|
+
|
|
1159
1209
|
### v1.4.1 (2025-11-06)
|
|
1160
1210
|
**Feature: Intelligent Auto-Proceed - Eliminate Double Confirmations**
|
|
1161
1211
|
|