Cleanup Review
python scripts/_cache_clear.py is an optional cleanup helper for the Plugin Creator skill. It may recursively remove ~/.cache/skill_tmp, ~/.skill_state. Show the exact paths first, explain whether they are skill-private temporary paths or user state, and run the cleanup only after the user confirms.
Plugin Creator
Use this skill to build or debug OpenClaw plugins. Prefer the official SDK surface, official documentation, and existing plugin patterns over generic plugin assumptions.
Why plugins exist
Plugins exist to extend OpenClaw without forking the host.
That matters because most user needs are not “change everything.” They are usually one of these:
- teach the agent a new capability
- let the user trigger a deterministic shortcut
- react to an event in the runtime
- package repeatable domain knowledge
The philosophical goal is not to put all custom logic into one plugin. The goal is to place each behavior at the smallest correct boundary so it stays understandable, testable, and portable.
When deciding what to build, start from the user need, not from the mechanism. Ask:
- What exact problem is the user trying to solve?
- Who should initiate the behavior: the user, the agent, or the runtime?
- Does the behavior need judgment, determinism, or passive observation?
- What is the smallest unit that solves the need cleanly?
If you answer those questions first, the plugin shape usually becomes obvious.
Mental model: hook vs tool vs command vs skill
These are different layers. Do not collapse them into “plugin stuff.”
Hooks — react to runtime events
Use a hook when the behavior should happen because something else happened.
- Mental model: an interception point or observer in the runtime lifecycle
- Good for: auditing, rewriting, guardrails, telemetry, prompt shaping, policy enforcement
- Ask for a hook when the real question is: “When X happens, should I observe it, modify it, or block it?”
Tools — give the agent a capability
Use a tool when the agent needs to do something during reasoning.
- Mental model: a callable capability inside the agent's toolbox
- Good for: API calls, deterministic computations, external actions, structured lookups
- Ask for a tool when the real question is: “Should the model be able to choose this action mid-run?”
Slash commands / native commands — give the user a deterministic shortcut
Use a command when the user should be able to explicitly trigger a behavior without relying on model judgment.
- Mental model: a direct entrypoint, not an AI-selected capability
- Good for: status, toggles, admin actions, explicit workflows, manual overrides
- Ask for a command when the real question is: “Should the user be able to force this immediately?”
Skills — package reusable knowledge and workflow
Use a skill when the problem is not “run this one function,” but “help the model reason in a repeatable way.”
- Mental model: a reusable playbook for judgment, workflow, and domain knowledge
- Good for: domain-specific analysis, multi-step procedures, standard operating methods, decomposition guidance
- Ask for a skill when the real question is: “Does the model need better thinking structure, not just a new API?”
Practical decision rule
- If the user explicitly triggers it, start by considering a command.
- If the model should choose it during reasoning, start by considering a tool.
- If it should happen because the runtime reached a lifecycle point, start by considering a hook.
- If the main value is judgment, reusable reasoning, or process guidance, start by considering a skill.
Many good plugins combine more than one layer. The mistake is not combining them. The mistake is combining them without separating responsibilities.
Decomposing user needs
When a user says “I want a plugin that does X,” do not immediately design files. Decompose the request.
Step 1: find the real trigger
- User-triggered → likely command
- Agent-triggered → likely tool
- Event-triggered → likely hook
- Knowledge/workflow-triggered → likely skill
Step 2: split the request by responsibility
Most plugin requests contain multiple concerns mixed together:
- invocation: how behavior starts
- decision logic: how behavior decides what to do
- side effects: what external action happens
- state: what must be remembered
- visibility: what the user should see
Split those concerns before coding. A clean plugin often looks like:
- a thin registration layer in
index.ts
- small implementation modules per responsibility
- tests that validate each boundary separately
Step 3: choose the smallest correct unit
Prefer:
- one command per clear user intent
- one tool per clear capability
- one hook per lifecycle concern
- one skill per coherent reasoning workflow
Avoid “mega plugins” that mix unrelated behavior just because the code lives in one package.
Step 4: verify all four layers
Every plugin feature should be checked at four layers:
- Manifest — is the plugin declared correctly?
- Registration — does the plugin actually register the command/tool/hook/skill?
- Runtime — can the runtime reach and execute it?
- Surface — can the user actually observe or trigger it where expected?
This prevents a common failure mode: “the code exists, therefore the feature works.”
Evidence priority
When something is unclear, use this priority order:
- Public behavior explicitly promised in official docs.
- Published SDK types, manifest/schema references, and other stable plugin-facing contracts that do not require a full local source checkout.
- Existing plugin patterns in the OpenClaw repo when the repo source is available, for example
extensions/observability-lab/.
- Project-specific operational experience and known pitfalls.
If layers 3 or 4 conflict with layers 1 or 2, trust layers 1 and 2. Also separate “current repo implementation observations” from “stable public contract” in your write-up.
What to do first
Classify the task first.
- If you are creating or refactoring plugin structure, read
references/plugin-layout-and-registration.md first.
- If you are working on hooks or event observation, read
references/hooks-and-events.md first.
- If the issue is “the plugin seems registered but does not work at runtime”, read
references/pitfalls-and-debugging.md first.
- If you are adding tests, validating packaging, or tightening the dev workflow, read
references/testing-and-workflow.md first.
- If you are not sure which official source to trust first, read
references/official-docs.md first.
Confirm the plugin boundary before writing code.
- Decide whether this plugin is a tool, hook, command, skill, service, channel, provider, or a combination.
- Then split the problem into four layers:
- whether the manifest declares it
- whether registration actually happens
- whether runtime agent / gateway flows can really use it
- whether the relevant surface actually displays or exposes it
- Start with the smallest verifiable slice. Do not pile on multiple capabilities at once.
Prefer an existing pattern before inventing one.
extensions/observability-lab/: best for learning combined tool, typed hook, plugin skill, and slash-command patterns.
extensions/open-prose/: useful for learning plugin-shipped skill packaging.
extensions/lobster/ and extensions/llm-task/: useful for optional tools via optional: true.
Workflow
Choose the location and shape first.
- When developing inside the OpenClaw repo, prefer
extensions/<plugin-id>/.
- When developing outside the repo, keep the same directory shape and SDK import discipline.
Build the smallest valid skeleton first.
- At minimum, create
package.json, openclaw.plugin.json, and index.ts.
- If plugin code frequently references SDK types, add a local
api.ts barrel.
- If the plugin grows beyond a tiny surface, split command / hook / tool / skill / shared state into separate modules.
Add capabilities after the boundary is clear.
- tools use
api.registerTool(...)
- commands use
api.registerCommand(...)
- typed hooks use
api.on(...)
- lower-level or more generic hook work should consult
api.registerHook(...)
- plugin-shipped skills are declared via the
skills field in openclaw.plugin.json
Pass the pre-install validation gate before any install step.
- Run the most direct scoped test first:
pnpm test -- extensions/<plugin-id>/ or pnpm test -- extensions/<plugin-id>/index.test.ts
- When developing inside the OpenClaw repo, run at least one
pnpm build
- If the touched surface extends beyond the local plugin, add
pnpm check and the appropriate broader pnpm test
- Only after those pass may you proceed to
pnpm openclaw plugins inspect <id>, install, restart, and real-surface verification
Then do post-install and runtime verification.
pnpm openclaw plugins inspect <id>
- install / restart / real conversation-surface verification
- read session logs or
systemPromptReport when needed
Any new deliverable package must get a new version.
- Update the plugin
package.json version before repackaging.
- Every new remote handoff or installable iteration needs a fresh patch version.
- Always give the remote operator the latest tgz filename, the exact version, and an optional checksum. Do not say “install the package in dist” without naming the file.
Pre-install validation
If the task includes “hand this to someone to install”, “ship to a remote environment”, “build a tgz”, or “prepare install instructions”, pre-install validation is mandatory. Do not treat openclaw plugins install ... as the first validation step.
Minimum gate for in-repo plugin development:
- scoped tests pass
pnpm build passes
- the target runtime version is known before compatibility and packaging claims are made
Recommended order:
pnpm test -- extensions/<plugin-id>/index.test.ts
pnpm build
pnpm check
pnpm openclaw plugins inspect <plugin-id> --json
Execution rules:
pnpm check is not always required for the smallest isolated plugin-local change, but once the touched surface crosses plugin-local boundaries, do not skip it.
- Put
plugins inspect before install so you can confirm manifest / registration / diagnostics before debugging a failed install.
- If you are handing off a package, run
npm pack --pack-destination dist, then provide the exact latest dist/<package>-<version>.tgz filename, version, and checksum.
- If the target environment is not the current runtime, explicitly verify the target OpenClaw version. Since
2026.3.23, plugin compatibility is resolved against the active runtime version during install, so do not rely on stale constants.
- For correction releases such as
2026.3.23-2, do not reuse an older tgz. Repack and hand off the new deliverable version explicitly.
Non-negotiable constraints
- Import production plugin code only from
openclaw/plugin-sdk/<subpath> official surfaces; do not import core src/** paths directly.
openclaw.plugin.json must exist, and configSchema must stay strict.
- Skill YAML frontmatter is only for skill metadata; it does not attach tools to the agent.
- A plugin tool being “registered” does not mean it is automatically usable by the current agent; tool policy may still filter it.
- Every conclusion must carry enough local context to stand on its own; do not rely on unstated prior conversation context.
- Keep wording objective; avoid subjective phrasing.
- For any tool-related design, explicitly describe tool availability, triggerability, and determinism limits.
api.registerCommand(...), plugin-shipped skills, skill commands, command-dispatch: tool, and native command menu visibility are different mechanisms; do not blur them together.
- Prefer
before_model_resolve / before_prompt_build for prompt injection; treat before_agent_start as a compatibility path only.
- If the plugin needs runtime help, prefer
api.runtime.* instead of bypassing the SDK into host internals.
- If a plugin is being handed off for remote installation, the deliverable must be the newest tgz with the new version; do not present an older package path, filename, or hash as current.
- Install is not the start of validation; if the pre-install gate is not green, do not ask anyone to run
openclaw plugins install ....
- Before handoff, say which step validates manifest, registration, runtime, and surface discoverability. Do not collapse those layers into a vague “already tested”.
Handling abnormal cases
Plugins fail in predictable ways. Treat failure handling as part of the design, not as a cleanup step.
When behavior is ambiguous
- If the same user need could be solved by a hook, a tool, or a command, do not guess.
- Explain the tradeoff in plain language:
- command = deterministic and user-controlled
- tool = agent-controlled and flexible
- hook = passive or interceptive runtime behavior
- Pick the smallest mechanism that preserves the intended user experience.
When config or environment is missing
- Fail clearly, not silently.
- Return actionable errors that say what is missing and where it should be configured.
- Distinguish “plugin loaded” from “plugin usable” — many runtime failures are configuration failures, not registration failures.
When external dependencies fail
- Prefer narrow failures over global breakage.
- Let one failing API call or optional integration degrade one capability, not crash the whole plugin.
- If a capability is optional, model that explicitly in command output, tool errors, or docs.
When state can drift or disappear
- Assume in-memory state is temporary.
- If state must survive restart, make persistence explicit.
- Validate restored state before trusting it.
- Design for recovery, not just the happy path.
When debugging unexpected behavior
Use this order:
- confirm the plugin is loadable
- confirm the target capability is registered
- confirm the runtime path can actually reach it
- confirm the user-facing surface exposes it as expected
- only then treat it as a deeper logic bug
This order matters because many “logic bugs” are actually loading, policy, or surface-discovery problems.
Design philosophy for users
The job is not just to expose SDK features. The job is to help the user get the behavior they actually want.
That means you should be able to explain, in simple language:
- why this behavior belongs in a hook, tool, command, or skill
- why it is split into these pieces and not fewer or more
- what happens on the happy path
- what happens on the failure path
- what the user can rely on, and what remains probabilistic or policy-gated
If you cannot explain the design simply, the design is probably still too tangled.
Delivery standard
When plugin development or debugging is complete, the output should cover at least:
- plugin shape and directory structure
- key registration points
- which official docs or source entrypoints were used
- which validations were run
- which conclusions belong to manifest / registration / runtime / surface discoverability
- whether any residual risk remains around tool policy, hook semantics, config schema, or installation flow
References
- Layout and registration:
references/plugin-layout-and-registration.md
- Hooks and events:
references/hooks-and-events.md
- Testing and dev workflow:
references/testing-and-workflow.md
- Pitfalls and debugging:
references/pitfalls-and-debugging.md
- Official docs entrypoints:
references/official-docs.md
- In-repo example map:
references/example-map.md
1---2name: plugin-creator-33description: Build, review, and debug OpenClaw plugins with the official plugin SDK. Use when creating or modifying `extensions/<id>` plugins, `openclaw.plugin.json`, plugin-shipped skills, tools, hooks, slash commands, manifests, or tests, and when diagnosing why a plugin, hook, skill, command, or tool is loaded but unavailable at runtime.4---56789### Cleanup Review1011`python scripts/_cache_clear.py` is an optional cleanup helper for the `Plugin Creator` skill. It may recursively remove ~/.cache/skill_tmp, ~/.skill_state. Show the exact paths first, explain whether they are skill-private temporary paths or user state, and run the cleanup only after the user confirms.1213# Plugin Creator1415Use this skill to build or debug OpenClaw plugins. Prefer the official SDK surface, official documentation, and existing plugin patterns over generic plugin assumptions.1617## Why plugins exist1819Plugins exist to extend OpenClaw **without forking the host**.2021That matters because most user needs are not “change everything.” They are usually one of these:2223- teach the agent a new capability24- let the user trigger a deterministic shortcut25- react to an event in the runtime26- package repeatable domain knowledge2728The philosophical goal is not to put all custom logic into one plugin. The goal is to place each behavior at the **smallest correct boundary** so it stays understandable, testable, and portable.2930When deciding what to build, start from the user need, not from the mechanism. Ask:3132- What exact problem is the user trying to solve?33- Who should initiate the behavior: the user, the agent, or the runtime?34- Does the behavior need judgment, determinism, or passive observation?35- What is the smallest unit that solves the need cleanly?3637If you answer those questions first, the plugin shape usually becomes obvious.3839## Mental model: hook vs tool vs command vs skill4041These are different layers. Do not collapse them into “plugin stuff.”4243### Hooks — react to runtime events4445Use a hook when the behavior should happen **because something else happened**.4647- Mental model: an interception point or observer in the runtime lifecycle48- Good for: auditing, rewriting, guardrails, telemetry, prompt shaping, policy enforcement49- Ask for a hook when the real question is: “When X happens, should I observe it, modify it, or block it?”5051### Tools — give the agent a capability5253Use a tool when the agent needs to **do something** during reasoning.5455- Mental model: a callable capability inside the agent's toolbox56- Good for: API calls, deterministic computations, external actions, structured lookups57- Ask for a tool when the real question is: “Should the model be able to choose this action mid-run?”5859### Slash commands / native commands — give the user a deterministic shortcut6061Use a command when the user should be able to **explicitly trigger** a behavior without relying on model judgment.6263- Mental model: a direct entrypoint, not an AI-selected capability64- Good for: status, toggles, admin actions, explicit workflows, manual overrides65- Ask for a command when the real question is: “Should the user be able to force this immediately?”6667### Skills — package reusable knowledge and workflow6869Use a skill when the problem is not “run this one function,” but “help the model reason in a repeatable way.”7071- Mental model: a reusable playbook for judgment, workflow, and domain knowledge72- Good for: domain-specific analysis, multi-step procedures, standard operating methods, decomposition guidance73- Ask for a skill when the real question is: “Does the model need better thinking structure, not just a new API?”7475### Practical decision rule7677- If the user explicitly triggers it, start by considering a **command**.78- If the model should choose it during reasoning, start by considering a **tool**.79- If it should happen because the runtime reached a lifecycle point, start by considering a **hook**.80- If the main value is judgment, reusable reasoning, or process guidance, start by considering a **skill**.8182Many good plugins combine more than one layer. The mistake is not combining them. The mistake is combining them **without separating responsibilities**.8384## Decomposing user needs8586When a user says “I want a plugin that does X,” do not immediately design files. Decompose the request.8788### Step 1: find the real trigger8990- User-triggered → likely command91- Agent-triggered → likely tool92- Event-triggered → likely hook93- Knowledge/workflow-triggered → likely skill9495### Step 2: split the request by responsibility9697Most plugin requests contain multiple concerns mixed together:9899- invocation: how behavior starts100- decision logic: how behavior decides what to do101- side effects: what external action happens102- state: what must be remembered103- visibility: what the user should see104105Split those concerns before coding. A clean plugin often looks like:1061071. a thin registration layer in `index.ts`1082. small implementation modules per responsibility1093. tests that validate each boundary separately110111### Step 3: choose the smallest correct unit112113Prefer:114115- one command per clear user intent116- one tool per clear capability117- one hook per lifecycle concern118- one skill per coherent reasoning workflow119120Avoid “mega plugins” that mix unrelated behavior just because the code lives in one package.121122### Step 4: verify all four layers123124Every plugin feature should be checked at four layers:1251261. **Manifest** — is the plugin declared correctly?1272. **Registration** — does the plugin actually register the command/tool/hook/skill?1283. **Runtime** — can the runtime reach and execute it?1294. **Surface** — can the user actually observe or trigger it where expected?130131This prevents a common failure mode: “the code exists, therefore the feature works.”132133## Evidence priority134135When something is unclear, use this priority order:1361371. Public behavior explicitly promised in official docs.1382. Published SDK types, manifest/schema references, and other stable plugin-facing contracts that do not require a full local source checkout.1393. Existing plugin patterns in the OpenClaw repo when the repo source is available, for example `extensions/observability-lab/`.1404. Project-specific operational experience and known pitfalls.141142If layers 3 or 4 conflict with layers 1 or 2, trust layers 1 and 2. Also separate “current repo implementation observations” from “stable public contract” in your write-up.143144## What to do first1451461. Classify the task first.147 - If you are creating or refactoring plugin structure, read `references/plugin-layout-and-registration.md` first.148 - If you are working on hooks or event observation, read `references/hooks-and-events.md` first.149 - If the issue is “the plugin seems registered but does not work at runtime”, read `references/pitfalls-and-debugging.md` first.150 - If you are adding tests, validating packaging, or tightening the dev workflow, read `references/testing-and-workflow.md` first.151 - If you are not sure which official source to trust first, read `references/official-docs.md` first.1521532. Confirm the plugin boundary before writing code.154 - Decide whether this plugin is a tool, hook, command, skill, service, channel, provider, or a combination.155 - Then split the problem into four layers:156 - whether the manifest declares it157 - whether registration actually happens158 - whether runtime agent / gateway flows can really use it159 - whether the relevant surface actually displays or exposes it160 - Start with the smallest verifiable slice. Do not pile on multiple capabilities at once.1611623. Prefer an existing pattern before inventing one.163 - `extensions/observability-lab/`: best for learning combined tool, typed hook, plugin skill, and slash-command patterns.164 - `extensions/open-prose/`: useful for learning plugin-shipped skill packaging.165 - `extensions/lobster/` and `extensions/llm-task/`: useful for optional tools via `optional: true`.166167## Workflow1681691. Choose the location and shape first.170 - When developing inside the OpenClaw repo, prefer `extensions/<plugin-id>/`.171 - When developing outside the repo, keep the same directory shape and SDK import discipline.1721732. Build the smallest valid skeleton first.174 - At minimum, create `package.json`, `openclaw.plugin.json`, and `index.ts`.175 - If plugin code frequently references SDK types, add a local `api.ts` barrel.176 - If the plugin grows beyond a tiny surface, split command / hook / tool / skill / shared state into separate modules.1771783. Add capabilities after the boundary is clear.179 - tools use `api.registerTool(...)`180 - commands use `api.registerCommand(...)`181 - typed hooks use `api.on(...)`182 - lower-level or more generic hook work should consult `api.registerHook(...)`183 - plugin-shipped skills are declared via the `skills` field in `openclaw.plugin.json`1841854. Pass the pre-install validation gate before any install step.186 - Run the most direct scoped test first: `pnpm test -- extensions/<plugin-id>/` or `pnpm test -- extensions/<plugin-id>/index.test.ts`187 - When developing inside the OpenClaw repo, run at least one `pnpm build`188 - If the touched surface extends beyond the local plugin, add `pnpm check` and the appropriate broader `pnpm test`189 - Only after those pass may you proceed to `pnpm openclaw plugins inspect <id>`, install, restart, and real-surface verification1901915. Then do post-install and runtime verification.192 - `pnpm openclaw plugins inspect <id>`193 - install / restart / real conversation-surface verification194 - read session logs or `systemPromptReport` when needed1951966. Any new deliverable package must get a new version.197 - Update the plugin `package.json` version before repackaging.198 - Every new remote handoff or installable iteration needs a fresh patch version.199 - Always give the remote operator the latest tgz filename, the exact version, and an optional checksum. Do not say “install the package in dist” without naming the file.200201## Pre-install validation202203If the task includes “hand this to someone to install”, “ship to a remote environment”, “build a tgz”, or “prepare install instructions”, pre-install validation is mandatory. Do not treat `openclaw plugins install ...` as the first validation step.204205Minimum gate for in-repo plugin development:2062071. scoped tests pass2082. `pnpm build` passes2093. the target runtime version is known before compatibility and packaging claims are made210211Recommended order:212213```bash214pnpm test -- extensions/<plugin-id>/index.test.ts215pnpm build216pnpm check217pnpm openclaw plugins inspect <plugin-id> --json218```219220Execution rules:221222- `pnpm check` is not always required for the smallest isolated plugin-local change, but once the touched surface crosses plugin-local boundaries, do not skip it.223- Put `plugins inspect` before install so you can confirm manifest / registration / diagnostics before debugging a failed install.224- If you are handing off a package, run `npm pack --pack-destination dist`, then provide the exact latest `dist/<package>-<version>.tgz` filename, version, and checksum.225- If the target environment is not the current runtime, explicitly verify the target OpenClaw version. Since `2026.3.23`, plugin compatibility is resolved against the active runtime version during install, so do not rely on stale constants.226- For correction releases such as `2026.3.23-2`, do not reuse an older tgz. Repack and hand off the new deliverable version explicitly.227228## Non-negotiable constraints229230- Import production plugin code only from `openclaw/plugin-sdk/<subpath>` official surfaces; do not import core `src/**` paths directly.231- `openclaw.plugin.json` must exist, and `configSchema` must stay strict.232- Skill YAML frontmatter is only for skill metadata; it does not attach tools to the agent.233- A plugin tool being “registered” does not mean it is automatically usable by the current agent; tool policy may still filter it.234- Every conclusion must carry enough local context to stand on its own; do not rely on unstated prior conversation context.235- Keep wording objective; avoid subjective phrasing.236- For any tool-related design, explicitly describe tool availability, triggerability, and determinism limits.237- `api.registerCommand(...)`, plugin-shipped skills, skill commands, `command-dispatch: tool`, and native command menu visibility are different mechanisms; do not blur them together.238- Prefer `before_model_resolve` / `before_prompt_build` for prompt injection; treat `before_agent_start` as a compatibility path only.239- If the plugin needs runtime help, prefer `api.runtime.*` instead of bypassing the SDK into host internals.240- If a plugin is being handed off for remote installation, the deliverable must be the newest tgz with the new version; do not present an older package path, filename, or hash as current.241- Install is not the start of validation; if the pre-install gate is not green, do not ask anyone to run `openclaw plugins install ...`.242- Before handoff, say which step validates manifest, registration, runtime, and surface discoverability. Do not collapse those layers into a vague “already tested”.243244## Handling abnormal cases245246Plugins fail in predictable ways. Treat failure handling as part of the design, not as a cleanup step.247248### When behavior is ambiguous249250- If the same user need could be solved by a hook, a tool, or a command, do not guess.251- Explain the tradeoff in plain language:252 - command = deterministic and user-controlled253 - tool = agent-controlled and flexible254 - hook = passive or interceptive runtime behavior255- Pick the smallest mechanism that preserves the intended user experience.256257### When config or environment is missing258259- Fail clearly, not silently.260- Return actionable errors that say what is missing and where it should be configured.261- Distinguish “plugin loaded” from “plugin usable” — many runtime failures are configuration failures, not registration failures.262263### When external dependencies fail264265- Prefer narrow failures over global breakage.266- Let one failing API call or optional integration degrade one capability, not crash the whole plugin.267- If a capability is optional, model that explicitly in command output, tool errors, or docs.268269### When state can drift or disappear270271- Assume in-memory state is temporary.272- If state must survive restart, make persistence explicit.273- Validate restored state before trusting it.274- Design for recovery, not just the happy path.275276### When debugging unexpected behavior277278Use this order:2792801. confirm the plugin is loadable2812. confirm the target capability is registered2823. confirm the runtime path can actually reach it2834. confirm the user-facing surface exposes it as expected2845. only then treat it as a deeper logic bug285286This order matters because many “logic bugs” are actually loading, policy, or surface-discovery problems.287288## Design philosophy for users289290The job is not just to expose SDK features. The job is to help the user get the behavior they actually want.291292That means you should be able to explain, in simple language:293294- why this behavior belongs in a hook, tool, command, or skill295- why it is split into these pieces and not fewer or more296- what happens on the happy path297- what happens on the failure path298- what the user can rely on, and what remains probabilistic or policy-gated299300If you cannot explain the design simply, the design is probably still too tangled.301302## Delivery standard303304When plugin development or debugging is complete, the output should cover at least:305306- plugin shape and directory structure307- key registration points308- which official docs or source entrypoints were used309- which validations were run310- which conclusions belong to manifest / registration / runtime / surface discoverability311- whether any residual risk remains around tool policy, hook semantics, config schema, or installation flow312313## References314315- Layout and registration: `references/plugin-layout-and-registration.md`316- Hooks and events: `references/hooks-and-events.md`317- Testing and dev workflow: `references/testing-and-workflow.md`318- Pitfalls and debugging: `references/pitfalls-and-debugging.md`319- Official docs entrypoints: `references/official-docs.md`320- In-repo example map: `references/example-map.md`