@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.
Files changed (60) hide show
  1. package/.claude/CHANGELOG-v1.1.1.md +259 -259
  2. package/.claude/CLAUDE.md +18 -7
  3. package/.claude/commands/agentsetup.md +1464 -1464
  4. package/.claude/commands/cstatus.md +60 -60
  5. package/.claude/commands/cview.md +364 -364
  6. package/.claude/commands/pageplan.md +233 -6
  7. package/.claude/commands/psetup.md +101 -101
  8. package/.claude/contexts/design/accessibility.md +611 -611
  9. package/.claude/contexts/design/layout.md +400 -400
  10. package/.claude/contexts/design/responsive.md +551 -551
  11. package/.claude/contexts/design/shadows.md +522 -522
  12. package/.claude/contexts/design/typography.md +465 -465
  13. package/.claude/contexts/domain/README.md +164 -164
  14. package/.claude/contexts/patterns/agent-coordination.md +388 -388
  15. package/.claude/contexts/patterns/agent-discovery.md +182 -182
  16. package/.claude/contexts/patterns/change-workflow.md +538 -538
  17. package/.claude/contexts/patterns/code-standards.md +515 -515
  18. package/.claude/contexts/patterns/development-principles.md +513 -513
  19. package/.claude/contexts/patterns/error-handling.md +478 -478
  20. package/.claude/contexts/patterns/error-recovery.md +365 -365
  21. package/.claude/contexts/patterns/logging.md +424 -424
  22. package/.claude/contexts/patterns/task-breakdown.md +452 -452
  23. package/.claude/contexts/patterns/task-classification.md +523 -523
  24. package/.claude/contexts/patterns/tdd-classification.md +516 -516
  25. package/.claude/contexts/patterns/testing.md +413 -413
  26. package/.claude/contexts/patterns/validation-framework.md +776 -776
  27. package/.claude/lib/agent-router.md +572 -572
  28. package/.claude/lib/flags-updater.md +469 -469
  29. package/.claude/lib/tdd-classifier.md +345 -345
  30. package/.claude/lib/validation-gates.md +484 -484
  31. package/.claude/settings.local.json +42 -42
  32. package/.claude/templates/context-template.md +45 -45
  33. package/.claude/templates/flags-template.json +42 -42
  34. package/.claude/templates/phase-templates.json +124 -124
  35. package/.claude/templates/phases-sections/accessibility-test.md +17 -17
  36. package/.claude/templates/phases-sections/api-design.md +37 -37
  37. package/.claude/templates/phases-sections/backend-tests.md +16 -16
  38. package/.claude/templates/phases-sections/backend.md +37 -37
  39. package/.claude/templates/phases-sections/business-logic-validation.md +16 -16
  40. package/.claude/templates/phases-sections/component-tests.md +17 -17
  41. package/.claude/templates/phases-sections/contract-backend.md +16 -16
  42. package/.claude/templates/phases-sections/contract-frontend.md +16 -16
  43. package/.claude/templates/phases-sections/database.md +35 -35
  44. package/.claude/templates/phases-sections/documentation.md +17 -17
  45. package/.claude/templates/phases-sections/e2e-tests.md +16 -16
  46. package/.claude/templates/phases-sections/fix-implementation.md +17 -17
  47. package/.claude/templates/phases-sections/frontend-integration.md +18 -18
  48. package/.claude/templates/phases-sections/frontend-mockup.md +123 -123
  49. package/.claude/templates/phases-sections/manual-flow-test.md +15 -15
  50. package/.claude/templates/phases-sections/manual-ux-test.md +16 -16
  51. package/.claude/templates/phases-sections/refactor-implementation.md +17 -17
  52. package/.claude/templates/phases-sections/refactor.md +16 -16
  53. package/.claude/templates/phases-sections/regression-tests.md +15 -15
  54. package/.claude/templates/phases-sections/report.md +16 -16
  55. package/.claude/templates/phases-sections/responsive-test.md +16 -16
  56. package/.claude/templates/phases-sections/script-implementation.md +43 -43
  57. package/.claude/templates/phases-sections/test-coverage.md +16 -16
  58. package/.claude/templates/phases-sections/user-approval.md +14 -14
  59. package/LICENSE +21 -21
  60. 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.