Configure EDT
Interactive Setup
Step 1: Identify Your Context
What type of work are you doing?
- Product design — Install: design-system-patterns, layout-principles, responsive-craft, design-spec-writing, product-framing
- Brand design — Install: brand-voice, color-systems, typography-craft, photography-direction, icon-systems
- Strategic design — Install: founder-communication, pitch-deck-patterns, case-study-writing, competitive-teardown, design-economics
- Design leadership — Install: design-critique, design-org-structure, all strategic skills
- Full stack — Install everything
Step 2: Install Core (always)
These are always installed regardless of context:
anti-slop (quality gate)
taste-audit (automated checks)
- Rules:
common/taste.md, common/writing-quality.md, common/accessibility.md
- Agents:
design-reviewer, copy-editor
Step 3: Install Context-Specific
Based on Step 1 selection, copy relevant skills and agents.
Step 4: Configure Hooks
{
"hooks": {
"PostToolUse": [
{
"matcher": "tool == 'Edit' && tool_input.file_path matches '\\.(tsx|jsx|html|css)$'",
"hooks": [{"type": "command", "command": "node scripts/hooks/check-ai-slop.js"}]
}
]
}
}
Step 5: Verify Installation
Run node tests/run-all.js to confirm all components are properly installed.
Manual Installation
# Clone the repo
git clone https://github.com/0xDragoon/everything-design-taste.git
cd everything-design-taste
# Install dependencies
npm install
# Full install (all skills, agents, rules)
./install.sh --profile full
# Selective install
./install.sh --profile product-design
./install.sh --profile brand-design
./install.sh --profile strategic
./install.sh --profile leadership
File Locations
- User-level:
~/.claude/ (applies to all projects)
- Project-level:
.claude/ (applies to current project only)
- Skills:
~/.claude/skills/ or .claude/skills/
- Rules:
~/.claude/rules/ or .claude/rules/
- Agents:
~/.claude/agents/ or .claude/agents/
1---2name: configure-edt3description: Interactive setup wizard for Everything Design Code. Guides installation and configuration of agents, skills, rules, and hooks.4---56# Configure EDT78## Interactive Setup910### Step 1: Identify Your Context11What type of work are you doing?12- **Product design** — Install: design-system-patterns, layout-principles, responsive-craft, design-spec-writing, product-framing13- **Brand design** — Install: brand-voice, color-systems, typography-craft, photography-direction, icon-systems14- **Strategic design** — Install: founder-communication, pitch-deck-patterns, case-study-writing, competitive-teardown, design-economics15- **Design leadership** — Install: design-critique, design-org-structure, all strategic skills16- **Full stack** — Install everything1718### Step 2: Install Core (always)19These are always installed regardless of context:20- `anti-slop` (quality gate)21- `taste-audit` (automated checks)22- Rules: `common/taste.md`, `common/writing-quality.md`, `common/accessibility.md`23- Agents: `design-reviewer`, `copy-editor`2425### Step 3: Install Context-Specific26Based on Step 1 selection, copy relevant skills and agents.2728### Step 4: Configure Hooks29```json30{31 "hooks": {32 "PostToolUse": [33 {34 "matcher": "tool == 'Edit' && tool_input.file_path matches '\\.(tsx|jsx|html|css)$'",35 "hooks": [{"type": "command", "command": "node scripts/hooks/check-ai-slop.js"}]36 }37 ]38 }39}40```4142### Step 5: Verify Installation43Run `node tests/run-all.js` to confirm all components are properly installed.4445## Manual Installation4647```bash48# Clone the repo49git clone https://github.com/0xDragoon/everything-design-taste.git50cd everything-design-taste5152# Install dependencies53npm install5455# Full install (all skills, agents, rules)56./install.sh --profile full5758# Selective install59./install.sh --profile product-design60./install.sh --profile brand-design61./install.sh --profile strategic62./install.sh --profile leadership63```6465## File Locations66- User-level: `~/.claude/` (applies to all projects)67- Project-level: `.claude/` (applies to current project only)68- Skills: `~/.claude/skills/` or `.claude/skills/`69- Rules: `~/.claude/rules/` or `.claude/rules/`70- Agents: `~/.claude/agents/` or `.claude/agents/`