🎨 Customization & Editing Guide banner
senaiverse senaiverse

🎨 Customization & Editing Guide

Development community intermediate

Description

> **🌟 Created by SenaiVerse** > *Claude Code Agent System for Expo/React Native Development* --- **Learn how to modify agents, create custom workflows, and tailor the system to your needs** ---

Installation

Terminal
claude install-skill https://github.com/senaiverse/claude-code-reactnative-expo-agent-system

README

🎨 Customization & Editing Guide

**🌟 Created by SenaiVerse** *Claude Code Agent System for Expo/React Native Development*


**Learn how to modify agents, create custom workflows, and tailor the system to your needs**


📋 Table of Contents

    undefined

🔧 Editing Existing Agents

Why Edit an Agent?

    undefined

Step-by-Step: Edit an Agent

Step 1: Locate the Agent File

# Windows
cd C:\Users\Senai\.claude\agents

# Find the agent
ls tier-1-daily/
# Output: design-token-guardian.md, a11y-enforcer.md, etc.

**Agent locations:**

    undefined

Step 2: Open in Your Editor

# Option 1: Notepad (Windows)
notepad ~/.claude/agents/tier-1-daily/design-token-guardian.md

# Option 2: VS Code
code ~/.claude/agents/tier-1-daily/design-token-guardian.md

# Option 3: Cursor
cursor ~/.claude/agents/tier-1-daily/design-token-guardian.md

Step 3: Understand the Structure

---
# YAML Frontmatter (Configuration)
name: design-token-guardian
description: Detects hardcoded colors, spacing, typography values
tools: Read, Grep, Glob, Edit
model: sonnet
---

# Markdown Content (System Prompt)
# Design Token Guardian

You are a design system expert who...

## Your Mission
[Instructions for the agent]

## Output Format
[How agent should respond]

**Two parts:**

    undefined

Step 4: Modify Configuration (YAML)

**What you can change:**

Field Options When to Change
name Any string (lowercase-hyphenated) ⚠️ Rarely - breaks invocation
description Text explaining when to invoke ✅ Often - improve auto-invocation
tools Read, Write, Edit, Grep, Glob, Bash, Task, WebFetch ✅ Often - restrict or expand
model haiku, sonnet, opus ✅ Often - balance speed/quality

**Example: Make Agent Faster**

# Before (slow but thorough)
---
name: design-token-guardian
tools: Read, Write, Edit, Grep, Glob, Bash
model: opus
---

# After (faster)
---
name: design-token-guardian
tools: Grep, Read, Edit  # Only essential tools
model: sonnet            # Faster model
---

**Examp