用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jaydubya818/mnemonic-kb --skill hermes-context命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Audit the skill/resolver/filing-rules layer for structural integrity.
Convert a repeated workflow into a reusable Markdown skill (procedural document only in v0.1).
Canonicalize an open proposal into a typed page (or append to an existing page's timeline).
基于 SOC 职业分类
正在显示 SKILL.md
| id | integrations/hermes-context |
| name | Hermes Context |
| description | Build a Hermes-ready context block from a task, suitable for pasting into Hermes' planning prompt. |
| status | active |
| parameters | [{"name":"task","type":"string","required":true},{"name":"repo","type":"string","required":false},{"name":"project","type":"string","required":false}] |
| outputs | [{"name":"contextBlock","type":"string"}] |
| uses | ["retrieval.getTaskContext","agentAdapters.hermes.buildHermesContextBlock"] |
| steps | [{"id":"get-task-context","kind":"deterministic","tool":"retrieval.getTaskContext"},{"id":"format-block","kind":"deterministic","tool":"agentAdapters.hermes.buildHermesContextBlock"}] |
| lanes | {"covers":["hermes-context-block","hermes-planning-prompt-input"],"excludes":["hermes-execution","hermes-writeback"]} |
| risk | low |
| governance | none |
| triggers | ["prepare Hermes for this task","give Hermes context for ...","build a Hermes context block"] |
Wrap retrieval/get-task-context with the formatting Hermes prefers for its
planning prompt. Mnemonic does not call Hermes; it just produces the block.
mnemonic.list_skills (cheap index).mnemonic.inspect_skill for the matched skill (only on dispatch).integrations/hermes-context) to produce the
context block.mnemonic.propose_memory for any durable
lessons/decisions/patterns it discovered.retrieval.getTaskContext({ task, repo?, project? }).ContextPack to agentAdapters.hermes.buildHermesContextBlock.A Markdown string Hermes can paste verbatim into its planning prompt.
retrieval/get-task-context — upstream.