How this skill is triggered — by the user, by Claude, or both
Slash command
/brain:mem-procedureThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Record a reusable procedure for future retrieval.
Record a reusable procedure for future retrieval.
Call memory_write_procedure:
title (required): Short name (e.g. "Deploy to production", "Set up dev environment").steps (required): A single markdown string — not an array. Use ordered/unordered lists, code blocks, headings, whatever reads best.tags: Topic tags for retrieval, as a JSON array.importance: 0.0–1.0 (default 0.9).links (optional, preferred): Inline links to attach the new procedure to existing entities in one round-trip. JSON array of {to: {type, id}, edge_kind} objects.{to: {type: "EPISODE", id: <ep_id>}, edge_kind: "relates_to"}{to: {type: "RECORD", id: <record_id>}, edge_kind: "covers"} or "relates_to"{to: {type: "TASK", id: <task_id>}, edge_kind: "relates_to"}{to: {type: "PROCEDURE", id: <prior_proc_id>}, edge_kind: "supersedes"} (DAG-checked)Edge kinds: parent_of, blocks, covers, relates_to, see_also, supersedes, contradicts.
Inline links are partial-failure tolerant — the procedure persists even if some links fail. Successes and failures are reported per-link in the response.
The response returns summary_id. If you discover additional linking targets only after seeing the response, call links_add:
links_add {
from: { type: PROCEDURE, id: <summary_id> },
to: { type: EPISODE, id: <ep_id> },
edge_kind: "relates_to"
}
If arguments are missing for the initial write, ask for: title, then steps (as one markdown blob), then tags, then importance.
Procedures are indexed for semantic search and findable via /brain:mem-search. Use procedures for repeatable workflows — use /brain:mem-write for one-time events.
npx claudepluginhub benediktms/brain --plugin brainProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.