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)
Source: ruvnet/ruflo → plugins/ruflo-plugin-creator/skills/create-plugin/SKILL.md
1---2name: create-plugin-23description: Scaffold a new Claude Code plugin with proper directory structure, plugin.json, skills, commands, and agents4---5
6
7# Create Plugin
8
9Scaffold a new Claude Code plugin from scratch.
10
11## When to use
12
13When 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.
14
15## Steps
16
171. **Get plugin name and description** from the user
182. **Check for conflicts** — call `mcp__plugin_ruflo-core_ruflo__transfer_plugin-search` to ensure the name isn't taken
193. **Create directory structure** (follows the canonical plugin contract from sibling plugins' ADR-0001s):
20 ```
21 plugins/<name>/
22 ├── .claude-plugin/
23 │ └── plugin.json
24 ├── skills/
25 │ └── <skill-name>/
26 │ └── SKILL.md
27 ├── commands/
28 │ └── <command-name>.md
29 ├── agents/
30 │ └── <agent-name>.md
31 ├── docs/
32 │ └── adrs/
33 │ └── 0001-<name>-contract.md # Plugin-level ADR (Proposed)
34 ├── scripts/
35 │ └── smoke.sh # Structural contract (≥8 checks)
36 └── README.md # Compatibility + Namespace coordination + Verification + ADR sections
37 ```
384. **Generate plugin.json** with name, description, version, author (do NOT include `skills`, `commands`, or `agents` arrays — Claude Code auto-discovers these from directory structure)
395. **Generate SKILL.md files** with proper frontmatter:
40 ```yaml
41 ---
42 name: skill-name
43 description: What this skill does
44 allowed-tools: mcp__plugin_ruflo-core_ruflo__tool1 mcp__plugin_ruflo-core_ruflo__tool2 Bash
45 ---
46 ```
476. **Generate command files** with name and description frontmatter
487. **Generate agent files** with name, description, and `model: sonnet`
498. **Generate README.md** with install instructions, features, commands, skills, AND the canonical plugin-contract sections:
50 - **Compatibility** — pin to `@claude-flow/cli` v3.6 major+minor
51 - **Namespace coordination** — claim a kebab-case `<plugin-stem>-<intent>` namespace; defer to ruflo-agentdb ADR-0001 §"Namespace convention"
52 - **Verification** — `bash plugins/<name>/scripts/smoke.sh`
53 - **Architecture Decisions** — link to ADR-0001
549. **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`.
5510. **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.
5611. **Update marketplace.json** if adding to the ruflo marketplace.
57
58## MCP-tool drift to avoid (per sibling-ADR lessons learned)
59
60Several plugins shipped with subtle MCP bugs the loop has been finding. Don't replicate them:
61
62- **`embeddings_embed` does not exist.** Real tool is `embeddings_generate`. Don't reference `embeddings_embed` in any `allowed-tools` line.
63- **`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.
64- **`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`.
65- **`pattern` (singular) and `patterns` (plural) are different namespaces.** ReasoningBank fallback writes to `pattern`; `hooks_pretrain` writes to `patterns`. Don't conflate them.
66
67## Plugin.json schema
68
69Required fields:
70- `name` — plugin identifier (kebab-case)
71- `description` — what the plugin does
72- `version` — semver
73
74Recommended fields:
75- `author` — `{ "name": "...", "url": "..." }`
76- `homepage`, `license`, `keywords`
77
78Optional fields:
79- `graph_adapter` — ADR-130 graph intelligence contract (commented out by default in generated output):
80 ```json
81 // "graph_adapter": {
82 // "edgeRelations": ["my-relation-type"],
83 // "nodeTypes": ["entity"],
84 // "autoRegister": true
85 // }
86 ```
87 When `autoRegister: true`, the plugin's edges are automatically included in `graph_edges` writes
88 by the core graph layer. Declare `edgeRelations` — the relation types this plugin produces.
89
90**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.
91
92## Available MCP tools to wire
93
94Browse available tools: `mcp__plugin_ruflo-core_ruflo__transfer_plugin-info`
95
96Common tool categories:
97- `memory_*` — storage, search, retrieval
98- `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
99- `neural_*` — neural training and prediction
100- `hooks_*` — lifecycle hooks and intelligence
101- `browser_*` — browser automation
102- `workflow_*` — workflow management
103- `aidefence_*` — safety scanning
104- `embeddings_*` — 10 vector-embedding tools (use `embeddings_generate`, NOT `embeddings_embed` which does not exist)
105
106---
107
108**Source:** [`ruvnet/ruflo`](https://github.com/ruvnet/ruflo) → `plugins/ruflo-plugin-creator/skills/create-plugin/SKILL.md`