@champpaba/claude-agent-kit 1.7.1 → 2.0.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 +79 -90
- package/.claude/agents/01-integration.md +11 -7
- package/.claude/agents/02-uxui-frontend.md +11 -6
- package/.claude/agents/03-test-debug.md +11 -7
- package/.claude/agents/04-frontend.md +11 -7
- package/.claude/agents/05-backend.md +11 -6
- package/.claude/agents/06-database.md +11 -7
- package/.claude/commands/cdev.md +110 -7
- package/.claude/commands/csetup.md +306 -39
- package/.claude/commands/cstatus.md +60 -60
- package/.claude/commands/cview.md +364 -364
- package/.claude/commands/designsetup.md +1401 -336
- package/.claude/commands/extract.md +520 -245
- package/.claude/commands/pageplan.md +171 -47
- 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 +3 -2
- package/.claude/contexts/patterns/change-workflow.md +538 -538
- package/.claude/contexts/patterns/code-standards.md +39 -0
- 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-executor.md +76 -1
- 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 +19 -29
- 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/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/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/README.md +103 -351
- package/package.json +1 -1
- package/.claude/commands/agentsetup.md +0 -1464
- package/.claude/commands/psetup.md +0 -101
- package/.claude/templates/phases-sections/documentation.md +0 -17
- package/.claude/templates/phases-sections/report.md +0 -16
|
@@ -512,4 +512,43 @@ def calculate_band_score(speechace_score: float) -> float:
|
|
|
512
512
|
|
|
513
513
|
---
|
|
514
514
|
|
|
515
|
+
## 🚫 Forbidden Files (v1.8.0)
|
|
516
|
+
|
|
517
|
+
**Simple Rule:** Agents should ONLY create **actual code/config files** that are part of the project.
|
|
518
|
+
|
|
519
|
+
### ❌ NEVER Create These Types of Files
|
|
520
|
+
|
|
521
|
+
1. **Report/Summary files** - `.txt`, `.md` files that summarize work done
|
|
522
|
+
2. **Log/Output files** - Files capturing execution output or analysis
|
|
523
|
+
3. **Temporary files** - Any file not intended to be committed to git
|
|
524
|
+
4. **Documentation files** - Unless user explicitly requests
|
|
525
|
+
|
|
526
|
+
**How to recognize forbidden files:**
|
|
527
|
+
- Filename contains: `REPORT`, `SUMMARY`, `DELIVERY`, `LOG`, `OUTPUT`, `GUIDE`, `ANALYSIS`, `RESULTS`
|
|
528
|
+
- Filename is ALL_CAPS or has phase/step numbers (e.g., `PHASE_11_*`, `STEP_3_*`)
|
|
529
|
+
- File extension doesn't match project code (random `.txt`, `.ext` in a JS project)
|
|
530
|
+
|
|
531
|
+
### ✅ What to Do Instead
|
|
532
|
+
|
|
533
|
+
| Instead of... | Do this... |
|
|
534
|
+
|---------------|------------|
|
|
535
|
+
| Creating `*_REPORT.md` | Return report in your **response text** |
|
|
536
|
+
| Creating `*_SUMMARY.txt` | Update **flags.json** with summary |
|
|
537
|
+
| Creating `*_OUTPUT.txt` | Print output directly, don't save |
|
|
538
|
+
| Creating `*_GUIDE.md` | Only if user explicitly requests |
|
|
539
|
+
|
|
540
|
+
### Auto-Cleanup
|
|
541
|
+
|
|
542
|
+
Main Claude will **auto-delete** any non-code files created during phases.
|
|
543
|
+
|
|
544
|
+
**Detection patterns:**
|
|
545
|
+
```
|
|
546
|
+
*_REPORT.*, *_SUMMARY.*, *_DELIVERY.*, *_OUTPUT.*, *_LOG.*,
|
|
547
|
+
*_GUIDE.*, *_ANALYSIS.*, *_RESULTS.*, PHASE_*.*, STEP_*.*
|
|
548
|
+
```
|
|
549
|
+
|
|
550
|
+
**Rule of thumb:** If a file wouldn't be committed to git as part of the feature, don't create it.
|
|
551
|
+
|
|
552
|
+
---
|
|
553
|
+
|
|
515
554
|
**💡 Remember:** Consistency is more important than perfection!
|