builder_agent

Scaffold agent projects with manifests, dependencies, and entrypoint scripts.

4|Updated Feb 25, 2026
One-click install
npx skills add https://github.com/dewitt/swarm --skill builder-agent-dewitt
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: builder_agent
Source: https://github.com/dewitt/swarm/tree/main/skills/builder
Command: npx skills add https://github.com/dewitt/swarm --skill builder-agent-dewitt

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Scaffolding new agent projects across frameworks is time-consuming and error-prone; this skill automates boilerplate generation, manifest creation, and initial scripts to ensure consistency and speed.

Core Features & Use Cases

  • Generate agent.yaml manifest and framework-specific boilerplate.
  • Create dependency files (requirements.txt, go.mod, package.json).
  • Produce core entrypoint scripts (agent.py, main.go, index.js) and a clean project skeleton.

Quick Start

Ask me to scaffold a new agent project for your chosen framework, and I will generate manifest, dependencies, and entrypoint scripts.

Frequently Asked Questions about builder_agent

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I scaffold a new agent project with boilerplate code and configuration files?

Scaffolding a new agent project involves generating boilerplate code, an agent.yaml manifest, and dependency files. This skill automates that process by creating a deterministic, repeatable project skeleton with core entrypoint scripts directly on disk.

Can I generate boilerplate for Python, Go, and Node agent projects?

Yes, boilerplate generation supports Python, Go, and Node stacks. It creates framework-specific dependency files like requirements.txt, go.mod, and package.json, alongside core entrypoint scripts such as agent.py, main.go, and index.js.

What is an agent.yaml manifest and why do I need it for project scaffolding?

An agent.yaml manifest is a configuration file that defines your agent project's structure and settings. It is generated during scaffolding to ensure consistent initialization across different frameworks and provide a deterministic project foundation.

What's the best way to automate boilerplate generation across multiple agent frameworks?

Automating boilerplate generation across frameworks requires a tool that writes files deterministically. This skill uses the write_local_file tool to physically create manifests, dependency files, and entrypoint scripts, ensuring repeatable project scaffolds.

Does this scaffolding tool write files directly to disk or just output code snippets?

This scaffolding tool writes files directly to disk. It uses the write_local_file tool to physically create the project skeleton, including the agent.yaml manifest, dependency files, and entrypoint scripts, rather than just displaying code.

Are there limitations to the project skeletons generated by this scaffolding agent?

The main limitation is that generated skeletons cover common stacks like Python, Go, and Node. It provides a clean initial structure with boilerplate and manifests, but complex custom architectures require manual modification after the scaffolding process.