Skip to content

Bundled Agents

aspens ships with 11 agent templates that you can install into your .claude/agents/ directory. Each agent is a focused persona with a specific job.

Terminal window
# Install all agents
npx aspens add agent all
# Install a specific agent
npx aspens add agent code-reviewer
# Browse available agents
npx aspens add agent --list

After installing, customize them with your project’s context:

Terminal window
npx aspens customize agents

This reads your skills and CLAUDE.md, then tailors each agent with your actual file paths, conventions, and patterns.

AgentDescription
planTriage, analyze, and create phased development plans. Iterate with the user until the plan is approved.
plan-reviewerReview development plans for completeness, feasibility, risks, and missed considerations before implementation.
executeExecute a development plan — spawn parallel subagents per phase, test, and ship.
AgentDescription
code-architecture-reviewerReview code for quality, architectural consistency, and integration issues. Use after implementing features, refactoring, or before merging PRs.
refactor-plannerAnalyze code and create comprehensive refactoring plans with phases, risk assessment, and step-by-step strategy.
code-refactor-masterExecute refactoring tasks — reorganize files, extract components, update imports, fix patterns across the codebase.
AgentDescription
auto-error-resolverFix compilation errors, build failures, type errors, or test failures. Systematically identifies root causes and fixes them in order.
AgentDescription
documentation-architectCreate or update documentation — READMEs, API docs, architecture overviews, data flow diagrams, developer guides. Reads actual code first, never documents from assumptions.
ghost-writerWrite compelling, human-sounding content — landing pages, marketing copy, user docs, social media, email sequences, blog posts.
AgentDescription
ux-ui-designerUX/UI design guidance — component specs with states, accessibility audits, user flow analysis, design system recommendations.
web-research-specialistResearch technical topics by searching the web — debug errors, compare solutions, find best practices from GitHub issues, Stack Overflow, and documentation.

The plan and execute agents work as a pair:

  1. Use plan to analyze the task and create a phased development plan
  2. Optionally use plan-reviewer to review the plan for risks and gaps
  3. Use execute to implement the plan phase by phase

Plans are stored in dev/ (auto-added to .gitignore).

aspens customize agents reads your existing skills and instructions, then rewrites each agent to reference your specific:

  • Tech stack and frameworks
  • File paths and directory structure
  • Conventions and patterns
  • Domain-specific rules

This turns generic agents into project-aware agents that produce better results from the start.