Back to skills
SkillHub ClubShip Full StackFull Stack
agent-template
Generate custom agent from template
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Stars
13
Hot score
85
Updated
March 20, 2026
Overall rating
C2.0
Composite score
2.0
Best-practice grade
B81.2
Install command
npx @skill-hub/cli install claude-world-director-mode-lite-agent-template
Repository
claude-world/director-mode-lite
Skill path: skills/agent-template
Generate custom agent from template
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: claude-world.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install agent-template into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/claude-world/director-mode-lite before adding agent-template to shared team environments
- Use agent-template for development workflows
Works across
Claude CodeCodex CLIGemini CLIOpenCode
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
--- name: agent-template description: Generate custom agent from template user-invocable: true --- # Agent Template Generator Generate a custom agent file based on requirements. **Usage**: `/agent-template [agent-name] [purpose]` --- ## Templates | Purpose | Template | Tools | |---------|----------|-------| | Review/Audit | Reviewer | Read, Grep, Glob | | Generate/Create | Generator | Read, Write, Grep, Glob | | Fix/Modify | Fixer | Read, Write, Edit, Bash | | Test/Validate | Tester | Read, Bash, Grep | | Document | Documenter | Read, Write, Grep, Glob | --- ## Process 1. **Gather Requirements** - Agent name (lowercase, hyphenated) - Purpose - Tools needed 2. **Select Template** based on purpose 3. **Generate File** at `.claude/agents/[name].md` 4. **Validate** with `/agent-check` --- ## Reviewer Template Structure ```markdown --- name: [name] description: [brief purpose] tools: Read, Grep, Glob --- # [Name] Agent ## Activation When to trigger ## Review Checklist - [ ] Check items ## Output Format Report structure ``` --- ## Example ``` /agent-template security-scanner "scan code for vulnerabilities" Output: Created .claude/agents/security-scanner.md ```