@champpaba/claude-agent-kit 2.0.0 → 2.0.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/CHANGELOG-v1.1.1.md +259 -259
- package/.claude/CLAUDE.md +196 -31
- package/.claude/agents/01-integration.md +106 -552
- package/.claude/agents/02-uxui-frontend.md +188 -850
- package/.claude/agents/03-test-debug.md +152 -521
- package/.claude/agents/04-frontend.md +169 -549
- package/.claude/agents/05-backend.md +132 -661
- package/.claude/agents/06-database.md +149 -698
- package/.claude/agents/_shared/README.md +57 -0
- package/.claude/agents/_shared/agent-boundaries.md +64 -0
- package/.claude/agents/_shared/documentation-policy.md +47 -0
- package/.claude/agents/_shared/package-manager.md +59 -0
- package/.claude/agents/_shared/pre-work-checklist.md +57 -0
- package/.claude/commands/cdev.md +36 -61
- package/.claude/commands/csetup.md +15 -14
- package/.claude/commands/cstatus.md +60 -60
- package/.claude/commands/cview.md +364 -364
- package/.claude/commands/designsetup.md +1 -1
- package/.claude/commands/pageplan.md +53 -177
- package/.claude/contexts/design/accessibility.md +611 -611
- package/.claude/contexts/design/box-thinking.md +1 -1
- package/.claude/contexts/design/index.md +1 -1
- 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 +2 -2
- package/.claude/contexts/patterns/animation-patterns.md +1 -1
- package/.claude/contexts/patterns/change-workflow.md +541 -538
- package/.claude/contexts/patterns/code-standards.md +10 -8
- 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/frontend-component-strategy.md +1 -1
- package/.claude/contexts/patterns/logging.md +424 -424
- package/.claude/contexts/patterns/performance-optimization.md +1 -1
- 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/ui-component-consistency.md +3 -3
- package/.claude/contexts/patterns/validation-framework.md +779 -776
- package/.claude/lib/README.md +4 -4
- package/.claude/lib/agent-executor.md +31 -40
- package/.claude/lib/agent-router.md +450 -572
- package/.claude/lib/context-loading-protocol.md +19 -36
- package/.claude/lib/detailed-guides/agent-system.md +43 -121
- package/.claude/lib/detailed-guides/taskmaster-analysis.md +1 -1
- package/.claude/lib/document-loader.md +22 -25
- package/.claude/lib/flags-updater.md +461 -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/STYLE_GUIDE.template.md +1 -1
- package/.claude/templates/context-template.md +45 -45
- package/.claude/templates/design-context-template.md +1 -1
- package/.claude/templates/flags-template.json +42 -42
- 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 +126 -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 +511 -133
- package/package.json +1 -1
package/.claude/CLAUDE.md
CHANGED
|
@@ -1,8 +1,46 @@
|
|
|
1
1
|
# CLAUDE.md
|
|
2
2
|
|
|
3
3
|
> **Navigation Hub for AI Agents**
|
|
4
|
-
> **Template Version:** 2.0.0 -
|
|
5
|
-
> **Latest:**
|
|
4
|
+
> **Template Version:** 2.0.0 - Claude 4.5 Optimized + Design System v2.0
|
|
5
|
+
> **Latest:** Full template refactored with Claude 4.5 best practices (agents ~65% smaller) + Interactive design setup with theme selection
|
|
6
|
+
|
|
7
|
+
---
|
|
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
|
+
| `tokens.json` | Design tokens with style/theme/animations (~800 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)
|
|
6
44
|
|
|
7
45
|
---
|
|
8
46
|
|
|
@@ -19,8 +57,8 @@ Universal, framework-agnostic template for AI-assisted development.
|
|
|
19
57
|
- ✅ Domain-Specific Support (add your business logic)
|
|
20
58
|
|
|
21
59
|
**What's NOT Included:**
|
|
22
|
-
- ❌ Framework patterns → Generated dynamically via `/
|
|
23
|
-
- ❌ Package managers →
|
|
60
|
+
- ❌ Framework patterns → Generated dynamically via `/csetup`
|
|
61
|
+
- ❌ Package managers → Auto-detected by `/csetup`
|
|
24
62
|
- ❌ Spec frameworks → Optional (OpenSpec, BMAD, SpecKit)
|
|
25
63
|
|
|
26
64
|
---
|
|
@@ -28,12 +66,12 @@ Universal, framework-agnostic template for AI-assisted development.
|
|
|
28
66
|
## 📖 Quick Navigation
|
|
29
67
|
|
|
30
68
|
**Design/UI (v2.0.0):**
|
|
31
|
-
- `/extract https://site.com` -
|
|
32
|
-
- `/designsetup @prd.md` -
|
|
33
|
-
- `design-system/tokens.json` -
|
|
34
|
-
- `design-system/patterns/*.md` -
|
|
69
|
+
- `/extract https://site.com` - Extract design from reference sites (multi-URL, style detection)
|
|
70
|
+
- `/designsetup @prd.md` - Interactive design setup (3-round loop, theme selection)
|
|
71
|
+
- `design-system/tokens.json` - Design tokens with style/theme/animations (~800 tokens) ✨
|
|
72
|
+
- `design-system/patterns/*.md` - Selective code patterns (buttons, cards, forms, animations, decorations)
|
|
35
73
|
- `design-system/STYLE_GUIDE.md` - Human-readable guide (no code, ~150 lines)
|
|
36
|
-
- `.claude/extractions/*.json` -
|
|
74
|
+
- `.claude/extractions/*.json` - Extracted site data
|
|
37
75
|
- `@/.claude/lib/document-loader.md` - Token-efficient loading patterns
|
|
38
76
|
- `@/.claude/contexts/design/index.md` (General design principles - fallback)
|
|
39
77
|
|
|
@@ -49,15 +87,14 @@ Universal, framework-agnostic template for AI-assisted development.
|
|
|
49
87
|
**Project Setup:**
|
|
50
88
|
- `/extract https://site.com` - Extract design from reference sites
|
|
51
89
|
- `/designsetup @prd.md` - Interactive design system setup
|
|
52
|
-
- `/
|
|
53
|
-
- `/agentsetup` - Auto-detect tech stack and generate best practices
|
|
90
|
+
- `/csetup` - **v1.8.0+:** Now auto-detects tech stack + generates best practices (replaces /psetup, /agentsetup)
|
|
54
91
|
|
|
55
92
|
**Page Planning (UI Tasks) - v2.0.0:**
|
|
56
|
-
- `/pageplan @prd.md @brief.md` -
|
|
93
|
+
- `/pageplan @prd.md @brief.md` - Generate page structure with auto page type detection
|
|
57
94
|
- Output: `openspec/changes/{id}/page-plan.md` (component reuse, buyer avatar, conversion copy, asset checklist)
|
|
58
|
-
-
|
|
59
|
-
-
|
|
60
|
-
-
|
|
95
|
+
- Auto-detects page type (landing/dashboard/auth) from proposal.md/tasks.md
|
|
96
|
+
- Reads tokens.json for style/theme/animations
|
|
97
|
+
- Loads patterns/*.md selectively based on page type
|
|
61
98
|
- Buyer avatar analysis (Eugene Schwartz framework) for marketing pages only
|
|
62
99
|
- Used by: uxui-frontend agent (auto-reads in STEP 0.5)
|
|
63
100
|
|
|
@@ -68,7 +105,7 @@ Universal, framework-agnostic template for AI-assisted development.
|
|
|
68
105
|
- `/cstatus {change-id}` - Quick progress status for a change
|
|
69
106
|
|
|
70
107
|
**Best Practices (Dynamic):**
|
|
71
|
-
- `.claude/contexts/domain/
|
|
108
|
+
- `.claude/contexts/domain/project/best-practices/` (auto-generated by `/csetup`)
|
|
72
109
|
- Framework-specific guidelines from Context7 MCP
|
|
73
110
|
|
|
74
111
|
**Indexing (3 Levels):**
|
|
@@ -76,25 +113,31 @@ Universal, framework-agnostic template for AI-assisted development.
|
|
|
76
113
|
- Level 2: `.claude/contexts/domain/{project}/README.md` (Project Overview)
|
|
77
114
|
- Level 3: `.claude/contexts/domain/{project}/best-practices/index.md` (Best Practices Registry)
|
|
78
115
|
|
|
79
|
-
|
|
116
|
+
**Implementation Logic:**
|
|
80
117
|
- `@/.claude/lib/README.md` - Implementation logic overview
|
|
81
|
-
- `@/.claude/lib/agent-executor.md` - Agent retry & escalation logic (used by /cdev)
|
|
118
|
+
- `@/.claude/lib/agent-executor.md` - Agent retry & escalation logic (used by /cdev) + Incremental testing execution
|
|
82
119
|
- `@/.claude/lib/tdd-classifier.md` - TDD classification logic (used by /csetup)
|
|
83
|
-
- `@/.claude/lib/
|
|
84
|
-
- `@/.claude/lib/
|
|
120
|
+
- `@/.claude/lib/task-analyzer.md` - Task analysis with milestone generation
|
|
121
|
+
- `@/.claude/lib/flags-updater.md` - Progress tracking protocol (Main Claude updates flags.json)
|
|
122
|
+
- `@/.claude/lib/agent-router.md` - Mandatory agent routing rules (enforce delegation)
|
|
85
123
|
- `@/.claude/contexts/patterns/agent-discovery.md` - Shared agent discovery flow
|
|
86
124
|
|
|
87
125
|
---
|
|
88
126
|
|
|
89
|
-
## 📚 Best Practices System
|
|
90
|
-
|
|
91
|
-
**→ See:** `@/.claude/lib/detailed-guides/best-practices-system.md` for complete guide
|
|
127
|
+
## 📚 Best Practices System (v1.8.0)
|
|
92
128
|
|
|
93
129
|
**Quick Summary:**
|
|
94
|
-
-
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
-
|
|
130
|
+
- `/csetup` **auto-detects tech stack** from: package.json → design.md → proposal/tasks (3 sources)
|
|
131
|
+
- **Auto-generates best practices** from Context7 MCP (React, Next.js, Prisma, etc.)
|
|
132
|
+
- Files created in `.claude/contexts/domain/project/best-practices/`
|
|
133
|
+
- **Agents read** best practices before coding (validated by agent-executor)
|
|
134
|
+
- `/cdev` **injects** relevant best-practices paths into agent prompts
|
|
135
|
+
|
|
136
|
+
**Flow:**
|
|
137
|
+
```
|
|
138
|
+
/csetup → detect stack → query Context7 → generate best-practices
|
|
139
|
+
/cdev → inject paths into prompt → agent reads → validation checks
|
|
140
|
+
```
|
|
98
141
|
|
|
99
142
|
---
|
|
100
143
|
|
|
@@ -157,9 +200,9 @@ Universal, framework-agnostic template for AI-assisted development.
|
|
|
157
200
|
**Quick Summary:**
|
|
158
201
|
- **Problem:** Agents duplicate components (Navbar 3x), use random colors, lorem ipsum content, wrong decorations for page type
|
|
159
202
|
- **Solution:** `/pageplan @prd.md @brief.md` → Generates `openspec/changes/{id}/page-plan.md` with:
|
|
160
|
-
- **Auto page type detection**
|
|
161
|
-
- **tokens.json integration**
|
|
162
|
-
- **Selective pattern loading**
|
|
203
|
+
- **Auto page type detection** (landing/dashboard/auth from proposal.md/tasks.md)
|
|
204
|
+
- **tokens.json integration** (style, theme, animations, decorative direction)
|
|
205
|
+
- **Selective pattern loading** (only load patterns relevant to page type)
|
|
163
206
|
- Component reuse plan ✅ (prevent duplicates)
|
|
164
207
|
- Buyer avatar analysis (Eugene Schwartz framework) **for marketing pages only**
|
|
165
208
|
- Conversion-optimized content (pain → promise → CTA) **for marketing pages only**
|
|
@@ -192,6 +235,20 @@ Universal, framework-agnostic template for AI-assisted development.
|
|
|
192
235
|
|
|
193
236
|
---
|
|
194
237
|
|
|
238
|
+
## 🔄 Incremental Testing (v1.6.0)
|
|
239
|
+
|
|
240
|
+
**→ See:** `@/.claude/lib/detailed-guides/incremental-testing.md` for complete guide
|
|
241
|
+
|
|
242
|
+
**Quick Summary:**
|
|
243
|
+
- **Problem:** All-or-nothing testing → bugs found at scale (1000 records) → hard to debug, expensive rework
|
|
244
|
+
- **Solution:** Milestone-based validation → Test 1 record → 10 → errors → scale → catch bugs early (75% faster debug)
|
|
245
|
+
- **3 Patterns:** Backend API (4 milestones), Complex Form (3 milestones), Database Migration (3 milestones)
|
|
246
|
+
- **Round-based Retry:** 2 attempts → Main Claude intervention (hints vs ask human) → new round (unlimited)
|
|
247
|
+
- **Detection:** Auto-triggered for Risk=HIGH OR (Risk=MEDIUM + Complexity≥7) OR External API OR Data-intensive (~20-30% of tasks)
|
|
248
|
+
- **Benefits:** 60-70% rework reduction, 40-50% net speedup, 90% success rate with progressive confidence
|
|
249
|
+
|
|
250
|
+
---
|
|
251
|
+
|
|
195
252
|
## 🤖 Agent System
|
|
196
253
|
|
|
197
254
|
**→ See:** `@/.claude/lib/detailed-guides/agent-system.md` for complete guide
|
|
@@ -199,7 +256,7 @@ Universal, framework-agnostic template for AI-assisted development.
|
|
|
199
256
|
**Quick Summary:**
|
|
200
257
|
- **6 specialist agents**: integration (validate contracts), uxui-frontend (UI with mock data), test-debug (tests/bugs), frontend (connect UI to API), backend (API endpoints), database (schemas/migrations)
|
|
201
258
|
- **Main Claude's role**: Orchestrator (plan, coordinate, report), NOT implementer (no writing code directly)
|
|
202
|
-
- **Self-check protocol**:
|
|
259
|
+
- **Self-check protocol**: Checklist before ANY work (detect work type → select agent → delegate)
|
|
203
260
|
- **Agent pre-work**: STEP 0 (project discovery for ALL) + STEP 1-5 (design fundamentals for uxui-frontend only)
|
|
204
261
|
|
|
205
262
|
**Example workflow:**
|
|
@@ -210,6 +267,114 @@ User: "Build login system"
|
|
|
210
267
|
→ Phase 2.5: integration (validate contracts)
|
|
211
268
|
→ Phase 3: frontend (connect UI to API)
|
|
212
269
|
→ Phase 4: test-debug (tests)
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
---
|
|
273
|
+
|
|
274
|
+
## 🆕 v2.0.0: Claude 4.5 Optimization + Design System v2.0
|
|
275
|
+
|
|
276
|
+
**Based on:** [Claude 4 Best Practices](https://platform.claude.com/docs/en/build-with-claude/prompt-engineering/claude-4-best-practices)
|
|
277
|
+
|
|
278
|
+
### Claude 4.5 Changes Applied
|
|
279
|
+
|
|
280
|
+
| Before | After | WHY |
|
|
281
|
+
|--------|-------|-----|
|
|
282
|
+
| "MUST", "WILL BE REJECTED" | Professional tone | Claude 4.5 works better with respectful instructions |
|
|
283
|
+
| "Don't do X", "Never Y" | "Use X instead" | Positive instructions are clearer |
|
|
284
|
+
| Rules without context | Rules with WHY | Claude applies rules more intelligently |
|
|
285
|
+
| Duplicated content (6x) | Shared `_shared/` folder | 83% token reduction |
|
|
286
|
+
| ~1000 lines per agent | ~250-350 lines | 65% smaller |
|
|
287
|
+
|
|
288
|
+
### New Shared Components
|
|
289
|
+
|
|
290
|
+
```
|
|
291
|
+
.claude/agents/_shared/
|
|
292
|
+
├── pre-work-checklist.md # Common validation steps
|
|
293
|
+
├── package-manager.md # Package manager protocol
|
|
294
|
+
├── documentation-policy.md # What files to create
|
|
295
|
+
├── agent-boundaries.md # When to use which agent
|
|
296
|
+
└── README.md # Overview
|
|
297
|
+
```
|
|
298
|
+
|
|
299
|
+
### Token Savings
|
|
300
|
+
|
|
301
|
+
| Agent | Before | After | Reduction |
|
|
302
|
+
|-------|--------|-------|-----------|
|
|
303
|
+
| uxui-frontend | ~1037 | ~375 | 64% |
|
|
304
|
+
| integration | ~600 | ~210 | 65% |
|
|
305
|
+
| backend | ~700 | ~244 | 65% |
|
|
306
|
+
| database | ~680 | ~273 | 60% |
|
|
307
|
+
| frontend | ~650 | ~296 | 54% |
|
|
308
|
+
| test-debug | ~580 | ~252 | 57% |
|
|
309
|
+
| **Total** | **~4247** | **~1650** | **61%** |
|
|
310
|
+
|
|
311
|
+
Plus ~500 tokens in shared files = **~2150 total** (was ~4247)
|
|
312
|
+
|
|
313
|
+
### Best Practices Applied
|
|
314
|
+
|
|
315
|
+
1. **Tone Calibration** - Professional, direct (not aggressive)
|
|
316
|
+
2. **Action Orientation** - Explicit "Write code" vs "Consider"
|
|
317
|
+
3. **Prevent Overengineering** - Clear boundaries
|
|
318
|
+
4. **Encourage Exploration** - Read before implementing
|
|
319
|
+
5. **Rich Output When Needed** - Specify requirements
|
|
320
|
+
6. **Context for Rules** - Explain WHY
|
|
321
|
+
7. **Positive Instructions** - "Use X" not "Don't Y"
|
|
322
|
+
|
|
323
|
+
### Additional Files Refactored
|
|
324
|
+
|
|
325
|
+
Beyond the 6 agent files, these supporting files were also updated:
|
|
326
|
+
|
|
327
|
+
**Implementation Logic (lib/):**
|
|
328
|
+
| File | Changes |
|
|
329
|
+
|------|---------|
|
|
330
|
+
| `agent-router.md` | Routing table format, removed "CANNOT/forbidden" language |
|
|
331
|
+
| `agent-executor.md` | Professional rejection messages, table format |
|
|
332
|
+
| `context-loading-protocol.md` | WHY explanations, removed "CRITICAL" warnings |
|
|
333
|
+
| `flags-updater.md` | Best practices table, removed "Step 3 CANNOT be skipped" |
|
|
334
|
+
| `document-loader.md` | Table format for DO/DON'T sections |
|
|
335
|
+
| `detailed-guides/agent-system.md` | Compact table format, shared file references |
|
|
336
|
+
|
|
337
|
+
**Commands:**
|
|
338
|
+
| File | Changes |
|
|
339
|
+
|------|---------|
|
|
340
|
+
| `cdev.md` | WHY context for best practices, softer tone |
|
|
341
|
+
| `csetup.md` | Best Practices / Anti-Patterns format |
|
|
342
|
+
| `pageplan.md` | "Guidelines" instead of "CRITICAL Rules" |
|
|
343
|
+
| `designsetup.md` | "Follow this format" instead of "EXACT format" |
|
|
344
|
+
|
|
345
|
+
**Patterns (contexts/patterns/):**
|
|
346
|
+
| File | Changes |
|
|
347
|
+
|------|---------|
|
|
348
|
+
| `validation-framework.md` | WHY explanations, removed "🚨" symbols |
|
|
349
|
+
| `error-recovery.md` | "⚠️" instead of "🚨", professional escalation format |
|
|
350
|
+
| `ui-component-consistency.md` | "Common Issues" instead of "Red Flags" |
|
|
351
|
+
| `task-breakdown.md` | Positive framing for incremental approach |
|
|
352
|
+
| `agent-discovery.md` | Softer language, "⚠️ Fallback" instead of "🚨" |
|
|
353
|
+
| `code-standards.md` | "File Creation Policy" with WHY table |
|
|
354
|
+
| `animation-patterns.md` | "⚠️ Common Mistakes" instead of "🚨" |
|
|
355
|
+
| `frontend-component-strategy.md` | "⚠️ Anti-Patterns" instead of "🚨" |
|
|
356
|
+
| `performance-optimization.md` | "⚠️ Common Mistakes" instead of "🚨" |
|
|
357
|
+
| `change-workflow.md` | Table format for read-only files |
|
|
358
|
+
| `task-classification.md` | "Agent Capabilities Reference" section title |
|
|
359
|
+
|
|
360
|
+
**Design (contexts/design/):**
|
|
361
|
+
| File | Changes |
|
|
362
|
+
|------|---------|
|
|
363
|
+
| `index.md` | "should check" instead of "MUST check" |
|
|
364
|
+
| `box-thinking.md` | "⚠️ Common Mistakes" instead of "🚨" |
|
|
365
|
+
|
|
366
|
+
**Templates:**
|
|
367
|
+
| File | Changes |
|
|
368
|
+
|------|---------|
|
|
369
|
+
| `phases-sections/frontend-mockup.md` | Table with WHY for design rules |
|
|
370
|
+
| `design-context-template.md` | "⚠️ Design Rules" instead of "🚨 Critical" |
|
|
371
|
+
| `STYLE_GUIDE.template.md` | "🔧 Troubleshooting" instead of "🚨" |
|
|
372
|
+
|
|
373
|
+
**Other lib files:**
|
|
374
|
+
| File | Changes |
|
|
375
|
+
|------|---------|
|
|
376
|
+
| `lib/README.md` | Softer descriptions, "📌 Important" |
|
|
377
|
+
| `detailed-guides/taskmaster-analysis.md` | "🔴 HIGH" instead of "🚨 HIGH" |
|
|
213
378
|
|
|
214
379
|
---
|
|
215
380
|
|