From dac8b1336d6587b486e57796b8b1a717062b7970 Mon Sep 17 00:00:00 2001 From: Kjell Tore Guttormsen Date: Sun, 12 Apr 2026 06:44:17 +0200 Subject: [PATCH] feat!: rename plugin from agent-builder to agent-factory --- .claude-plugin/plugin.json | 13 ++++++---- CLAUDE.md | 6 ++--- README.md | 39 +++++++++++++++++------------ commands/build.md | 2 +- skills/agent-system-design/SKILL.md | 2 +- 5 files changed, 36 insertions(+), 26 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 1dfd93a..503dc27 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -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" ] } diff --git a/CLAUDE.md b/CLAUDE.md index e3e14ad..23d14c9 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -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 diff --git a/README.md b/README.md index dd331ae..cd9cdd4 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/commands/build.md b/commands/build.md index 8bd34d1..5548b54 100644 --- a/commands/build.md +++ b/commands/build.md @@ -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. diff --git a/skills/agent-system-design/SKILL.md b/skills/agent-system-design/SKILL.md index 6961b4b..70cc324 100644 --- a/skills/agent-system-design/SKILL.md +++ b/skills/agent-system-design/SKILL.md @@ -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`