feat!: rename plugin from agent-builder to agent-factory

This commit is contained in:
Kjell Tore Guttormsen 2026-04-12 06:44:17 +02:00
commit dac8b1336d
5 changed files with 36 additions and 26 deletions

View file

@ -1,12 +1,12 @@
{
"name": "agent-builder",
"description": "Build complete autonomous agent systems with Claude Code. Guided workflow that interviews you about your needs, scaffolds agents, skills, hooks, and automation, then configures deployment for your chosen platform. Covers all 22 OpenClaw capabilities.",
"version": "0.1.0",
"name": "agent-factory",
"description": "Build and manage autonomous agent systems with Claude Code. Guided workflow from idea to deployed, self-running agents. Covers all 22 agent capabilities with patterns from OpenClaw and Paperclip.",
"version": "0.2.0",
"author": {
"name": "Kjell Tore Guttormsen",
"url": "https://fromaitochitta.com"
},
"repository": "https://git.fromaitochitta.com/open/agent-builder",
"repository": "https://git.fromaitochitta.com/open/agent-factory",
"license": "MIT",
"keywords": [
"agent",
@ -15,6 +15,9 @@
"automation",
"hooks",
"security",
"deployment"
"deployment",
"memory",
"heartbeat",
"governance"
]
}

View file

@ -1,13 +1,13 @@
# Agent Builder Plugin
# Agent Factory Plugin
Plugin that helps users build complete autonomous agent systems
Plugin that guides users through building complete autonomous agent systems
using Claude Code. Installed via `/install` or `--plugin-dir`.
## What this plugin does
Guides users through building their own multi-agent system:
agents, skills, hooks, automation, and deployment config.
The `/agent-builder:build` command runs a 7-phase guided workflow.
The `/agent-factory:build` command runs a 7-phase guided workflow.
## Plugin structure

View file

@ -1,33 +1,35 @@
# Agent Builder
# Agent Factory
Build complete autonomous agent systems with Claude Code.
Build and manage complete autonomous agent systems with Claude Code.
OpenClaw gives you a pre-built agent. This plugin helps you
build your own, tailored to your work and deployed where you
choose.
OpenClaw gives you a pre-built agent. This plugin guides you
through building your own, tailored to your work and deployed where you
choose. Covers all 22 agent capabilities with patterns from OpenClaw and Paperclip.
For the best experience, install via [ktg-plugin-marketplace](https://git.fromaitochitta.com/open/ktg-plugin-marketplace) which includes Agent Factory plus the ultra-suite (ultraplan, ultraresearch, ultraexecute).
## Install
```
/install agent-builder
/install agent-factory
```
Or for local development:
```
claude --plugin-dir /path/to/agent-builder
claude --plugin-dir /path/to/agent-factory
```
## Commands
| Command | What it does |
|---------|-------------|
| `/agent-builder:build` | Guided 7-phase workflow to build a complete agent system |
| `/agent-builder:deploy` | Configure deployment for your chosen platform |
| `/agent-builder:evaluate` | Assess your setup against 22 agent capabilities |
| `/agent-builder:status` | Quick status check of your agent infrastructure |
| `/agent-factory:build` | Guided 7-phase workflow to build a complete agent system |
| `/agent-factory:deploy` | Configure deployment for your chosen platform |
| `/agent-factory:evaluate` | Assess your setup against 22 agent capabilities |
| `/agent-factory:status` | Quick status check of your agent infrastructure |
## What `/agent-builder:build` creates
## What `/agent-factory:build` creates
The build command walks you through 7 phases:
@ -46,16 +48,21 @@ phase and resume later.
| Platform | Best for | Always-on |
|----------|---------|-----------|
| Local (cron/launchd) | Development, testing | With tmux |
| Cloud (/schedule) | PR reviews, CI triage, repo maintenance | Yes (cloud) |
| Local (cron/launchd) | Development, personal pipelines | With tmux |
| Mac Mini (launchd + channels) | Personal agent | Yes |
| VPS (systemd + cron) | Server agent, teams | Yes |
| Managed Agents (Anthropic API) | Production, scaling | Yes (cloud) |
| VPS (systemd) | Server agent, teams | Yes |
| Docker | Reproducible deployments, security isolation | Yes |
## What this covers
Maps all 22 OpenClaw capabilities to Claude Code equivalents:
13 full matches, 8 different approaches, 1 gap (Canvas/A2UI).
Run `/agent-builder:evaluate` to see your current coverage.
Run `/agent-factory:evaluate` to see your current coverage.
## Repository
https://git.fromaitochitta.com/open/agent-factory
## Requirements

View file

@ -4,7 +4,7 @@ argument-hint: Optional focus area (e.g., "marketing pipeline" or "research agen
allowed-tools: ["Read", "Write", "Edit", "Glob", "Grep", "Bash", "Agent", "AskUserQuestion"]
---
You are running `/agent-builder:build` — a guided 7-phase workflow for building a complete autonomous agent system with Claude Code.
You are running `/agent-factory:build` — a guided 7-phase workflow for building a complete autonomous agent system with Claude Code.
If $ARGUMENTS is provided, use it as context for the system being built. Tailor every phase to that domain.

View file

@ -103,7 +103,7 @@ The `description` field is what triggers agent selection. Write it with concrete
## Getting started
Run `/agent-builder:build` for the guided 7-phase workflow. It interviews you about your use case, selects the right pattern, and generates all files.
Run `/agent-factory:build` for the guided 7-phase workflow. It interviews you about your use case, selects the right pattern, and generates all files.
For pipeline design patterns and agent role templates, see:
`${CLAUDE_PLUGIN_ROOT}/skills/agent-system-design/references/pipeline-patterns.md`