@champpaba/claude-agent-kit 1.5.0 → 1.6.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/CHANGELOG-v1.1.1.md +259 -259
- package/.claude/CLAUDE.md +18 -7
- package/.claude/commands/agentsetup.md +1464 -1464
- package/.claude/commands/cstatus.md +60 -60
- package/.claude/commands/cview.md +364 -364
- package/.claude/commands/pageplan.md +233 -6
- package/.claude/commands/psetup.md +101 -101
- package/.claude/contexts/design/accessibility.md +611 -611
- package/.claude/contexts/design/layout.md +400 -400
- package/.claude/contexts/design/responsive.md +551 -551
- package/.claude/contexts/design/shadows.md +522 -522
- package/.claude/contexts/design/typography.md +465 -465
- package/.claude/contexts/domain/README.md +164 -164
- package/.claude/contexts/patterns/agent-coordination.md +388 -388
- package/.claude/contexts/patterns/agent-discovery.md +182 -182
- package/.claude/contexts/patterns/change-workflow.md +538 -538
- package/.claude/contexts/patterns/code-standards.md +515 -515
- package/.claude/contexts/patterns/development-principles.md +513 -513
- package/.claude/contexts/patterns/error-handling.md +478 -478
- package/.claude/contexts/patterns/error-recovery.md +365 -365
- package/.claude/contexts/patterns/logging.md +424 -424
- package/.claude/contexts/patterns/task-breakdown.md +452 -452
- package/.claude/contexts/patterns/task-classification.md +523 -523
- package/.claude/contexts/patterns/tdd-classification.md +516 -516
- package/.claude/contexts/patterns/testing.md +413 -413
- package/.claude/contexts/patterns/validation-framework.md +776 -776
- package/.claude/lib/agent-router.md +572 -572
- package/.claude/lib/flags-updater.md +469 -469
- package/.claude/lib/tdd-classifier.md +345 -345
- package/.claude/lib/validation-gates.md +484 -484
- package/.claude/settings.local.json +42 -42
- package/.claude/templates/context-template.md +45 -45
- package/.claude/templates/flags-template.json +42 -42
- package/.claude/templates/phase-templates.json +124 -124
- package/.claude/templates/phases-sections/accessibility-test.md +17 -17
- package/.claude/templates/phases-sections/api-design.md +37 -37
- package/.claude/templates/phases-sections/backend-tests.md +16 -16
- package/.claude/templates/phases-sections/backend.md +37 -37
- package/.claude/templates/phases-sections/business-logic-validation.md +16 -16
- package/.claude/templates/phases-sections/component-tests.md +17 -17
- package/.claude/templates/phases-sections/contract-backend.md +16 -16
- package/.claude/templates/phases-sections/contract-frontend.md +16 -16
- package/.claude/templates/phases-sections/database.md +35 -35
- package/.claude/templates/phases-sections/documentation.md +17 -17
- package/.claude/templates/phases-sections/e2e-tests.md +16 -16
- package/.claude/templates/phases-sections/fix-implementation.md +17 -17
- package/.claude/templates/phases-sections/frontend-integration.md +18 -18
- package/.claude/templates/phases-sections/frontend-mockup.md +123 -123
- package/.claude/templates/phases-sections/manual-flow-test.md +15 -15
- package/.claude/templates/phases-sections/manual-ux-test.md +16 -16
- package/.claude/templates/phases-sections/refactor-implementation.md +17 -17
- package/.claude/templates/phases-sections/refactor.md +16 -16
- package/.claude/templates/phases-sections/regression-tests.md +15 -15
- package/.claude/templates/phases-sections/report.md +16 -16
- package/.claude/templates/phases-sections/responsive-test.md +16 -16
- package/.claude/templates/phases-sections/script-implementation.md +43 -43
- package/.claude/templates/phases-sections/test-coverage.md +16 -16
- package/.claude/templates/phases-sections/user-approval.md +14 -14
- package/LICENSE +21 -21
- package/package.json +1 -1
|
@@ -1,60 +1,60 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: Change Status
|
|
3
|
-
description: Quick progress status for a change
|
|
4
|
-
category: Multi-Agent
|
|
5
|
-
tags: [status, progress, quick]
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
## Usage
|
|
9
|
-
|
|
10
|
-
```bash
|
|
11
|
-
/cstatus {change-id}
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
## What It Does
|
|
15
|
-
|
|
16
|
-
Shows quick progress summary:
|
|
17
|
-
- Progress percentage with bar
|
|
18
|
-
- Current phase
|
|
19
|
-
- Time spent/remaining
|
|
20
|
-
- Quick stats
|
|
21
|
-
|
|
22
|
-
## Output Format
|
|
23
|
-
|
|
24
|
-
```
|
|
25
|
-
📊 CHANGE-{id}: {type} | {template}
|
|
26
|
-
|
|
27
|
-
Progress: [████████░░] 64% (7/11 phases)
|
|
28
|
-
|
|
29
|
-
Current Phase: #8 Refactor (test-debug)
|
|
30
|
-
├─ Started: 14:15 (15 minutes ago)
|
|
31
|
-
├─ Estimated: 20 minutes
|
|
32
|
-
└─ Status: in_progress
|
|
33
|
-
|
|
34
|
-
✅ Completed: 7 phases
|
|
35
|
-
🔄 In Progress: 1 phase
|
|
36
|
-
⏳ Remaining: 3 phases
|
|
37
|
-
|
|
38
|
-
⏱️ Time:
|
|
39
|
-
├─ Spent: 2h 55min (estimated: 3h 15min)
|
|
40
|
-
├─ Remaining: ~35 minutes
|
|
41
|
-
└─ Efficiency: 111% (ahead of estimate)
|
|
42
|
-
|
|
43
|
-
📈 Stats:
|
|
44
|
-
├─ Tests: 12 passed, 0 failed (75% coverage)
|
|
45
|
-
├─ Issues: 2 found, 2 fixed, 0 remaining
|
|
46
|
-
└─ Files: 4 created, 2 modified
|
|
47
|
-
|
|
48
|
-
🎯 Next Steps:
|
|
49
|
-
1. Complete refactoring (20 min)
|
|
50
|
-
2. Test coverage report (5 min)
|
|
51
|
-
3. Documentation (15 min)
|
|
52
|
-
|
|
53
|
-
Commands:
|
|
54
|
-
→ Detailed view: /cview {change-id}
|
|
55
|
-
→ Continue dev: /cdev {change-id}
|
|
56
|
-
```
|
|
57
|
-
|
|
58
|
-
## Implementation
|
|
59
|
-
|
|
60
|
-
Read `openspec/changes/{change-id}/.claude/flags.json` and format output using helper functions.
|
|
1
|
+
---
|
|
2
|
+
name: Change Status
|
|
3
|
+
description: Quick progress status for a change
|
|
4
|
+
category: Multi-Agent
|
|
5
|
+
tags: [status, progress, quick]
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Usage
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
/cstatus {change-id}
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## What It Does
|
|
15
|
+
|
|
16
|
+
Shows quick progress summary:
|
|
17
|
+
- Progress percentage with bar
|
|
18
|
+
- Current phase
|
|
19
|
+
- Time spent/remaining
|
|
20
|
+
- Quick stats
|
|
21
|
+
|
|
22
|
+
## Output Format
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
📊 CHANGE-{id}: {type} | {template}
|
|
26
|
+
|
|
27
|
+
Progress: [████████░░] 64% (7/11 phases)
|
|
28
|
+
|
|
29
|
+
Current Phase: #8 Refactor (test-debug)
|
|
30
|
+
├─ Started: 14:15 (15 minutes ago)
|
|
31
|
+
├─ Estimated: 20 minutes
|
|
32
|
+
└─ Status: in_progress
|
|
33
|
+
|
|
34
|
+
✅ Completed: 7 phases
|
|
35
|
+
🔄 In Progress: 1 phase
|
|
36
|
+
⏳ Remaining: 3 phases
|
|
37
|
+
|
|
38
|
+
⏱️ Time:
|
|
39
|
+
├─ Spent: 2h 55min (estimated: 3h 15min)
|
|
40
|
+
├─ Remaining: ~35 minutes
|
|
41
|
+
└─ Efficiency: 111% (ahead of estimate)
|
|
42
|
+
|
|
43
|
+
📈 Stats:
|
|
44
|
+
├─ Tests: 12 passed, 0 failed (75% coverage)
|
|
45
|
+
├─ Issues: 2 found, 2 fixed, 0 remaining
|
|
46
|
+
└─ Files: 4 created, 2 modified
|
|
47
|
+
|
|
48
|
+
🎯 Next Steps:
|
|
49
|
+
1. Complete refactoring (20 min)
|
|
50
|
+
2. Test coverage report (5 min)
|
|
51
|
+
3. Documentation (15 min)
|
|
52
|
+
|
|
53
|
+
Commands:
|
|
54
|
+
→ Detailed view: /cview {change-id}
|
|
55
|
+
→ Continue dev: /cdev {change-id}
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Implementation
|
|
59
|
+
|
|
60
|
+
Read `openspec/changes/{change-id}/.claude/flags.json` and format output using helper functions.
|