Skills and Agents Customization

VerifiedSafe

Creates customized skills and agents for automating user-specific workflows. Use when users ask to personalize their setup, create a skill or agent, or when repetitive patterns are noticed.

Sby Skills Guide Bot
ProductivityIntermediate
1406/2/2026
Claude Code
#personalization#skill-creation#automation#workflow-customization#agent-development

Recommended for

Our review

Creates personalized skills and agents tailored to the user's specific needs and workflows, automating repetitive tasks.

Strengths

  • Enables automation of repetitive workflows
  • Provides a structured template for skill and agent creation
  • Proactively suggests customization when patterns are detected
  • Handles both simple and complex customization requests via a discovery flow

Limitations

  • Requires understanding of the skill and agent template format
  • Only works within the Claude Code (Gear Five) environment
  • Proactive triggering may suggest customization when not desired
When to use it

Use when you want to automate repetitive tasks, create domain-specific assistants, or personalize your development environment.

When not to use it

Do not use when the task is one-off or does not benefit from automation, or when the user has not expressed a desire for customization.

Security analysis

Safe
Quality score92/100

The skill is a meta-template for creating skills/agents; it does not instruct any destructive or exfiltrating actions. While it lists Bash among allowed tools, no malicious commands are prescribed.

No concerns found

Examples

Create a skill for data analysis
Create a skill for data analysis that automatically loads CSV files, generates summary statistics, and creates visualizations.
Make an agent for code review
Make an agent that does code review for our team, focusing on Python best practices and security vulnerabilities.

name: customize description: "Create personalized skills and agents based on user's background and needs. Use when user asks to 'customize claude', 'create a skill', 'make an agent for', 'personalize my setup', 'help me automate', or when you notice repetitive workflows that could be automated." allowed-tools: Read, Write, Edit, Bash, Glob, Grep, WebFetch context: fork agent: customization-architect

Gear Five Customization

Create personalized skills and agents tailored to the user's specific needs.

When to Activate

Explicit triggers:

  • "Customize my Claude setup"
  • "Create a skill for X"
  • "Make an agent that does Y"
  • "Personalize Gear Five for my work"
  • "I wish Claude could..."

Proactive triggers (suggest customization):

  • You notice the user doing the same workflow repeatedly
  • User asks for help with domain-specific tasks that could be a skill
  • User's work would benefit from specialized agents
  • After significant project work, offer to capture patterns as skills

Quick Customization

For simple requests ("make a skill for X"), create directly:

~/.claude/skills/{skill-name}/
├── SKILL.md           # Trigger + quick usage
└── REFERENCE.md       # Detailed docs (if needed)

For complex needs, run the full discovery flow via the customization-architect agent.

Skill Template

---
name: skill-name
description: "Clear description with trigger phrases..."
allowed-tools: Read, Bash, etc.
context: fork        # Optional: fork to agent
agent: agent-name    # Optional: which agent to fork to
---

# Skill Title

Quick usage and key patterns.

Agent Template

---
name: agent-name
description: "When to use this agent..."
tools: Read, Write, Bash, etc.
model: sonnet        # or opus for complex reasoning
---

System prompt describing the agent's expertise and workflow.
Related skills