Create Plugin
Scaffold a new Claude Code plugin from scratch.
When to use
When you want to create a new plugin that extends Claude Code with skills, commands, and agents. This generates the correct directory structure and wires up MCP tools.
Steps
- Get plugin name and description from the user
- Check for conflicts — call
mcp__plugin_ruflo-core_ruflo__transfer_plugin-search to ensure the name isn't taken
- Create directory structure (follows the canonical plugin contract from sibling plugins' ADR-0001s):
plugins/<name>/
├── .claude-plugin/
│ └── plugin.json
├── skills/
│ └── <skill-name>/
│ └── SKILL.md
├── commands/
│ └── <command-name>.md
├── agents/
│ └── <agent-name>.md
├── docs/
│ └── adrs/
│ └── 0001-<name>-contract.md # Plugin-level ADR (Proposed)
├── scripts/
│ └── smoke.sh # Structural contract (≥8 checks)
└── README.md # Compatibility + Namespace coordination + Verification + ADR sections
- Generate plugin.json with name, description, version, author (do NOT include
skills, commands, or agents arrays — Claude Code auto-discovers these from directory structure)
- Generate SKILL.md files with proper frontmatter:
---
name: skill-name
description: What this skill does
allowed-tools: mcp__plugin_ruflo-core_ruflo__tool1 mcp__plugin_ruflo-core_ruflo__tool2 Bash
---
- Generate command files with name and description frontmatter
- Generate agent files with name, description, and
model: sonnet
- Generate README.md with install instructions, features, commands, skills, AND the canonical plugin-contract sections:
- Compatibility — pin to
@claude-flow/cli v3.6 major+minor
- Namespace coordination — claim a kebab-case
<plugin-stem>-<intent> namespace; defer to ruflo-agentdb ADR-0001 §"Namespace convention"
- Verification —
bash plugins/<name>/scripts/smoke.sh
- Architecture Decisions — link to ADR-0001
- Generate ADR-0001 (Proposed) at
docs/adrs/0001-<name>-contract.md documenting: pinning, namespace coordination, MCP-tool surface count if applicable, smoke contract scope. Status: Proposed.
- Generate scripts/smoke.sh — at minimum 8 structural checks: version + keywords; skills/agents/commands present with valid frontmatter; v3.6 pin in README; namespace coordination block in README; ADR exists with status
Proposed; no wildcard tools in skills.
- Update marketplace.json if adding to the ruflo marketplace.
MCP-tool drift to avoid (per sibling-ADR lessons learned)
Several plugins shipped with subtle MCP bugs the loop has been finding. Don't replicate them:
embeddings_embed does not exist. Real tool is embeddings_generate. Don't reference embeddings_embed in any allowed-tools line.
agentdb_hierarchical-* does NOT route by namespace. It routes by tier (working|episodic|semantic). Pass tier, not namespace. For namespaced reads/writes, use memory_* instead.
agentdb_pattern-* does NOT route by namespace. It routes through ReasoningBank. Don't pass a namespace arg — fallback writes to the reserved pattern namespace via memory-store-fallback.
pattern (singular) and patterns (plural) are different namespaces. ReasoningBank fallback writes to pattern; hooks_pretrain writes to patterns. Don't conflate them.
Plugin.json schema
Required fields:
name — plugin identifier (kebab-case)
description — what the plugin does
version — semver
Recommended fields:
author — { "name": "...", "url": "..." }
homepage, license, keywords
Optional fields:
Do NOT include skills, commands, or agents arrays in plugin.json — these are auto-discovered from the directory structure by Claude Code and will cause validation errors if present.
Available MCP tools to wire
Browse available tools: mcp__plugin_ruflo-core_ruflo__transfer_plugin-info
Common tool categories:
memory_* — storage, search, retrieval
agentdb_* — 15 controller-bridge tools (do NOT pass namespace arg — they route by tier or ReasoningBank); call agentdb_controllers at runtime for the canonical list
neural_* — neural training and prediction
hooks_* — lifecycle hooks and intelligence
browser_* — browser automation
workflow_* — workflow management
aidefence_* — safety scanning
embeddings_* — 10 vector-embedding tools (use embeddings_generate, NOT embeddings_embed which does not exist)
1---2name: create-plugin3description: Scaffold a new Claude Code plugin with proper directory structure, plugin.json, skills, commands, and agents4---56# Create Plugin78Scaffold a new Claude Code plugin from scratch.910## When to use1112When you want to create a new plugin that extends Claude Code with skills, commands, and agents. This generates the correct directory structure and wires up MCP tools.1314## Steps15161. **Get plugin name and description** from the user172. **Check for conflicts** — call `mcp__plugin_ruflo-core_ruflo__transfer_plugin-search` to ensure the name isn't taken183. **Create directory structure** (follows the canonical plugin contract from sibling plugins' ADR-0001s):19 ```20 plugins/<name>/21 ├── .claude-plugin/22 │ └── plugin.json23 ├── skills/24 │ └── <skill-name>/25 │ └── SKILL.md26 ├── commands/27 │ └── <command-name>.md28 ├── agents/29 │ └── <agent-name>.md30 ├── docs/31 │ └── adrs/32 │ └── 0001-<name>-contract.md # Plugin-level ADR (Proposed)33 ├── scripts/34 │ └── smoke.sh # Structural contract (≥8 checks)35 └── README.md # Compatibility + Namespace coordination + Verification + ADR sections36 ```374. **Generate plugin.json** with name, description, version, author (do NOT include `skills`, `commands`, or `agents` arrays — Claude Code auto-discovers these from directory structure)385. **Generate SKILL.md files** with proper frontmatter:39 ```yaml40 ---41 name: skill-name42 description: What this skill does43 allowed-tools: mcp__plugin_ruflo-core_ruflo__tool1 mcp__plugin_ruflo-core_ruflo__tool2 Bash44 ---45 ```466. **Generate command files** with name and description frontmatter477. **Generate agent files** with name, description, and `model: sonnet`488. **Generate README.md** with install instructions, features, commands, skills, AND the canonical plugin-contract sections:49 - **Compatibility** — pin to `@claude-flow/cli` v3.6 major+minor50 - **Namespace coordination** — claim a kebab-case `<plugin-stem>-<intent>` namespace; defer to ruflo-agentdb ADR-0001 §"Namespace convention"51 - **Verification** — `bash plugins/<name>/scripts/smoke.sh`52 - **Architecture Decisions** — link to ADR-0001539. **Generate ADR-0001 (Proposed)** at `docs/adrs/0001-<name>-contract.md` documenting: pinning, namespace coordination, MCP-tool surface count if applicable, smoke contract scope. Status: `Proposed`.5410. **Generate scripts/smoke.sh** — at minimum 8 structural checks: version + keywords; skills/agents/commands present with valid frontmatter; v3.6 pin in README; namespace coordination block in README; ADR exists with status `Proposed`; no wildcard tools in skills.5511. **Update marketplace.json** if adding to the ruflo marketplace.5657## MCP-tool drift to avoid (per sibling-ADR lessons learned)5859Several plugins shipped with subtle MCP bugs the loop has been finding. Don't replicate them:6061- **`embeddings_embed` does not exist.** Real tool is `embeddings_generate`. Don't reference `embeddings_embed` in any `allowed-tools` line.62- **`agentdb_hierarchical-*` does NOT route by namespace.** It routes by tier (`working|episodic|semantic`). Pass `tier`, not `namespace`. For namespaced reads/writes, use `memory_*` instead.63- **`agentdb_pattern-*` does NOT route by namespace.** It routes through ReasoningBank. Don't pass a `namespace` arg — fallback writes to the reserved `pattern` namespace via `memory-store-fallback`.64- **`pattern` (singular) and `patterns` (plural) are different namespaces.** ReasoningBank fallback writes to `pattern`; `hooks_pretrain` writes to `patterns`. Don't conflate them.6566## Plugin.json schema6768Required fields:69- `name` — plugin identifier (kebab-case)70- `description` — what the plugin does71- `version` — semver7273Recommended fields:74- `author` — `{ "name": "...", "url": "..." }`75- `homepage`, `license`, `keywords`7677Optional fields:78- `graph_adapter` — ADR-130 graph intelligence contract (commented out by default in generated output):79 ```json80 // "graph_adapter": {81 // "edgeRelations": ["my-relation-type"],82 // "nodeTypes": ["entity"],83 // "autoRegister": true84 // }85 ```86 When `autoRegister: true`, the plugin's edges are automatically included in `graph_edges` writes87 by the core graph layer. Declare `edgeRelations` — the relation types this plugin produces.8889**Do NOT include** `skills`, `commands`, or `agents` arrays in plugin.json — these are auto-discovered from the directory structure by Claude Code and will cause validation errors if present.9091## Available MCP tools to wire9293Browse available tools: `mcp__plugin_ruflo-core_ruflo__transfer_plugin-info`9495Common tool categories:96- `memory_*` — storage, search, retrieval97- `agentdb_*` — 15 controller-bridge tools (do NOT pass `namespace` arg — they route by tier or ReasoningBank); call `agentdb_controllers` at runtime for the canonical list98- `neural_*` — neural training and prediction99- `hooks_*` — lifecycle hooks and intelligence100- `browser_*` — browser automation101- `workflow_*` — workflow management102- `aidefence_*` — safety scanning103- `embeddings_*` — 10 vector-embedding tools (use `embeddings_generate`, NOT `embeddings_embed` which does not exist)