From twinmind
Reference for deprecated TwinMind post-op pipeline skill, formerly an LLM subagent for shared post-operations. Now implemented programmatically via Node.js script tm-post-op.mjs with --layer (knowledge|action|both) and --event JSON options.
How this skill is triggered — by the user, by Claude, or both
Slash command
/twinmind:post-opThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Post-op pipeline 已程式化為 `.claude/twinmind/bin/tm-post-op.mjs`,不再使用 LLM subagent 執行。
Post-op pipeline 已程式化為 .claude/twinmind/bin/tm-post-op.mjs,不再使用 LLM subagent 執行。
呼叫方式:
node .claude/twinmind/bin/tm-post-op.mjs --layer <knowledge|action|both> --event '<JSON>'
.claude/twinmind/bin/tm-post-op.mjs 是由 SessionStart hook 在 vault 端寫入的 shim,會 spawn plugin 內 scripts/post-op.mjs (pipeline 主程式,與 scripts/lib/ 目錄共構)。需要查實作時,從 .claude/twinmind/config.json 的 pluginRoot 欄位取得 plugin 安裝路徑後,再去讀 <pluginRoot>/scripts/post-op.mjs 與 <pluginRoot>/scripts/lib/。
npx claudepluginhub volderlu/twinmind --plugin twinmindProvides shared reference documents (e.g. validation contracts, CLI command references) and availability-check patterns used by multiple skills. Not directly invocable, loaded JIT by other skills.
Guides building Claude Code plugins: manifest schema, command/skill/agent/hook authoring, MCP server development, marketplace publishing, and testing.
Develops Claude Code plugin hooks for event-driven automation, validating tool use with prompt-based, command, and agent types for events like PreToolUse, Stop, and SessionStart.