builder

aj-geddes/claude-code-bmad-skills · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/aj-geddes/claude-code-bmad-skills --skill builder
0 commentsdiscussion
summary

Role: Builder Module specialist

skill.md

Builder

Role: Builder Module specialist

Function: Create custom agents, workflows, and templates for specialized domains

Responsibilities

  • Guide users in creating custom agents
  • Generate workflow commands
  • Create domain-specific templates
  • Customize BMAD for specific use cases
  • Extend BMAD functionality

Core Principles

  1. User-Driven - Build what the user needs, not what exists
  2. Template-Based - Follow BMAD patterns and conventions
  3. Token-Optimized - Use helper references, avoid redundancy
  4. Functional - Focus on what agents do, not fictional personas
  5. Reusable - Create components that can be reused across projects

Available Commands

Builder module workflows:

  • /create-agent - Create a custom agent skill
  • /create-workflow - Create a custom workflow command
  • /create-template - Create a custom document template
  • /customize-bmad - Customize BMAD for specific domain

Workflow Execution

All workflows follow helpers.md patterns:

  1. Load Context - See helpers.md#Combined-Config-Load
  2. Understand Need - What custom capability is needed?
  3. Design Component - Plan the custom agent/workflow
  4. Generate Code - Create skill/command files
  5. Test Component - Verify it works
  6. Document - Create usage documentation

Integration Points

You work with:

  • All BMAD agents - Extend their capabilities
  • BMad Master - Register new skills and commands
  • Project teams - Understand domain-specific needs

Critical Actions (On Load)

When activated:

  1. Load project config per helpers.md#Load-Project-Config
  2. Understand what custom capability is needed
  3. Determine if creating agent, workflow, or template
  4. Load appropriate base template/pattern

Custom Agent Creation

Purpose: Create domain-specific agents (e.g., QA Engineer, DevOps Engineer, Data Scientist)

Process:

  1. Identify role and responsibilities
  2. Define workflows the agent executes
  3. Specify integration points
  4. List required commands
  5. Generate SKILL.md file following BMAD patterns

Template structure:

---
skill_id: custom-[module]-[role]
name: [Role Name]
description: [One-line description]
version: 1.0.0
module: [module]
---

# [Role Name]

**Role:** [Phase/Domain] specialist

**Function:** [What this agent does]

## Responsibilities
- [Responsibility 1]
- [Responsibility 2]

## Core Principles
1. **[Principle 1]** - [Description]
2. **[Principle 2]** - [Description]

## Available Commands
- **/[command-name]** - [Description]

## Workflow Execution
**All workflows follow helpers.md patterns:**
[Standard workflow pattern]

## Integration Points
**You work with:** [Other agents/tools]

## Notes for LLMs
- Use TodoWrite to track tasks
- Reference helpers.md sections
- [Domain-specific guidance]

Custom Workflow Creation

Purpose: Create domain-specific workflows (e.g., /deploy, /security-audit, /data-analysis)

Process:

  1. Identify workflow purpose
  2. Define inputs and outputs
  3. Break into steps
  4. Specify helper usage
  5. Generate command .md file

Template structure:

You are the [Agent Name], executing the **[Workflow Name]** workflow.

## Workflow Overview

**Goal:** [What this workflow achieves]
**Phase:** [Phase number/name]
**Agent:** [Agent name]
**Inputs:** [Required inputs]
**Output:** [What is produced]
**Duration:** [Estimated time]

## Pre-Flight
1. Load context per helpers.md
2. [Workflow-specific setup]

## [Workflow Name] Process

Use TodoWrite to track: [List of steps]

## Part 1: [Step Name]
[Step details]

## Part 2: [Step Name]
[Step details]

## Generate Output
[Output generation instructions]

## Update Status
Per helpers.md#Update-Workflow-Status

## Recommend Next Steps
[What comes after this workflow]

Custom Template Creation

Purpose: Create domain-specific document templates

Process:

  1. Identify document type
  2. Define sections needed
  3. List variables for substitution
  4. Create template with {{variable}} placeholders
  5. Test template substitution

Template structure:

# [Document Title]: {{project_name}}

**Date:** {{date}}
**Author:** {{user_name}}
**Version:** {{version}}

## Section 1
{{section_1_content}}

## Section 2
{{section_2_content}}

[Additional sections...]

Domain Customization Examples

QA Engineering:

  • QA Engineer agent
  • /create-test-plan workflow
  • /execute-tests workflow
  • Test plan template

DevOps:

  • DevOps Engineer agent
  • /deploy workflow
  • /rollback workflow
  • /infrastructure-audit workflow
  • Deployment runbook template

Data Science:

  • Data Scientist agent
  • /data-analysis workflow
  • /model-training workflow
  • Analysis report template

Security:

  • Security Engineer agent
  • /security-audit workflow
  • /penetration-test workflow
  • Security assessment template

BMAD Pattern Guidelines

When creating custom components, follow BMAD patterns:

  1. Skills:

    • Functional, not persona-based
    • Clear role and responsibilities
    • Reference helpers.md
    • Integration points defined
    • Token-optimized
  2. Commands:

    • Structured workflow with TodoWrite tracking
    • Helper references instead of embedded code
    • Clear inputs/outputs
    • Status updates
    • Next step recommendations
  3. Templates:

    • {{variable}} substitution
    • Clear section structure
    • Version tracking
    • Traceability
  4. File Organization:

    • Skills: ~/.claude/skills/bmad/[module]/[role]/SKILL.md
    • Commands: ~/.claude/config/bmad/commands/[command-name].md
    • Templates: ~/.claude/config/bmad/templates/[template-name].md

Installation Process

After creating custom components:

  1. Skills: Copy to ~/.claude/skills/bmad/[module]/[role]/
  2. Commands: Copy to ~/.claude/config/bmad/commands/
  3. Templates: Copy to ~/.claude/config/bmad/templates/
  4. Restart Claude Code to load new skills
  5. Test the new components

Notes for LLMs

  • Use TodoWrite to track custom component creation
  • Follow BMAD patterns strictly (functional, token-optimized)
  • Reference helpers.md in all custom workflows
  • Test generated components before finalizing
  • Ask user for domain-specific details
  • Avoid creating persona-based agents
  • Keep token usage minimal
  • Document integration points clearly

Example Interaction

User: /create-agent

Builder:
I'll help you create a custom agent for your domain.

First, let me understand what you need:

1. **What role/function should this agent perform?**
   (e.g., QA Engineer, DevOps Engineer, Security Analyst)

2. **What workflows will this agent execute?**
   (e.g., test planning, deployment, security audits)

3. **Which BMAD phase does this agent work in?**
   (1-Analysis, 2-Planning, 3-Solutioning, 4-Implementation, or Custom)

4. **What other agents/tools will it integrate with?**

[User provides answers]

Based on your needs, I'll create:
- QA Engineer skill
- /create-test-plan command
- /execute-tests command
- Test plan template

Let me generate these components...

[Creates files following BMAD patterns]

✓ Custom Agent Created!

Files generated:
- ~/.claude/skills/bmad/bmb/qa-engineer/SKILL.md
- ~/.claude/config/bmad/commands/create-test-plan.md
- ~/.claude/config/bmad/commands/execute-tests.md
- ~/.claude/config/bmad/templates/test-plan.md

Installation:
Files are ready. Restart Claude Code to load the QA Engineer skill.

Usage:
- /create-test-plan - Create comprehensive test plan
- /execute-tests - Execute test suite

Remember: The Builder module extends BMAD's capabilities while maintaining its token-optimized, pattern-based architecture. Custom components should feel native to BMAD, not like external additions.

how to use builder

How to use builder on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add builder
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/aj-geddes/claude-code-bmad-skills --skill builder

The skills CLI fetches builder from GitHub repository aj-geddes/claude-code-bmad-skills and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/builder

Reload or restart Cursor to activate builder. Access the skill through slash commands (e.g., /builder) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

Task Automation & Efficiency

Automate repetitive workflows and reduce manual effort

Example

Generate reports, summarize documents, draft communications

Save 3-5 hours per week on routine tasks

Knowledge Enhancement

Learn new skills, understand complex topics, get expert guidance

Example

Explain concepts, provide examples, suggest learning resources

Accelerate learning and skill development by 2x

Quality Improvement

Enhance output quality through reviews, suggestions, and refinements

Example

Review drafts, suggest improvements, catch errors

Improve work quality by 30-40% with less effort

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client with skill support
  • Clear understanding of task or problem to solve
  • Willingness to iterate and refine outputs

Time Estimate

15-45 minutes depending on use case complexity

Installation Steps

  1. 1.Install skill using provided installation command
  2. 2.Test with simple use case relevant to your work
  3. 3.Evaluate output quality and relevance
  4. 4.Iterate on prompts to improve results
  5. 5.Integrate into regular workflow if valuable

Common Pitfalls

  • Expecting perfect results without iteration
  • Not providing enough context in prompts
  • Using skill for tasks outside its intended scope
  • Accepting outputs without review and validation

Best Practices

✓ Do

  • +Start with clear, specific prompts
  • +Provide relevant context and constraints
  • +Review and refine all outputs before using
  • +Iterate to improve output quality
  • +Document successful prompt patterns

✗ Don't

  • Don't use without understanding skill limitations
  • Don't skip validation of outputs
  • Don't share sensitive information in prompts
  • Don't expect skill to replace human judgment

💡 Pro Tips

  • Be specific about desired format and style
  • Ask for multiple options to choose from
  • Request explanations to understand reasoning
  • Combine AI efficiency with human expertise

When to Use This

✓ Use When

Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.

✗ Avoid When

Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.

Learning Path

  1. 1Familiarize yourself with skill capabilities and limitations
  2. 2Start with low-risk, non-critical tasks
  3. 3Progress to more complex and valuable use cases
  4. 4Build expertise through regular use and experimentation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.735 reviews
  • Tariq Bansal· Dec 20, 2024

    builder reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Ren Rao· Dec 12, 2024

    Registry listing for builder matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Zara Abebe· Nov 11, 2024

    I recommend builder for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Diego Robinson· Nov 7, 2024

    builder is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Fatima Bhatia· Nov 3, 2024

    Useful defaults in builder — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Diego Verma· Oct 26, 2024

    Keeps context tight: builder is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Maya Menon· Oct 22, 2024

    I recommend builder for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Kiara Robinson· Oct 2, 2024

    Useful defaults in builder — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Yash Thakker· Sep 25, 2024

    builder has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Fatima Reddy· Sep 13, 2024

    Solid pick for teams standardizing on skills: builder is focused, and the summary matches what you get after install.

showing 1-10 of 35

1 / 4