一键导入
memory
Search curated markdown memory like sessions, plans, docs, and skills. Use when recalling prior context or looking for relevant historical/project knowledge.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search curated markdown memory like sessions, plans, docs, and skills. Use when recalling prior context or looking for relevant historical/project knowledge.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Bosun configuration — models, sandbox, daemon, Pi settings. Use when changing models, editing config, or understanding how bosun is set up.
Bootstrap a new project using bosun as a foundation — via bun dependency (recommended) or git submodule. Creates a downstream project that inherits bosun's multi-agent infrastructure while adding custom agents, skills, and extensions. Works standalone — fetchable by any pi agent via raw GitHub URL.
Analyze Pi session JSONL files using jq patterns. Use when extracting metrics, tool usage, costs, or reviewing session history. Load for session export, summarization, or workflow analysis.
Session-based browser plan review primitives for Bosun. Provides a local-first state model, markdown-aware anchor extraction, and review-session persistence for reviewing existing plan files in dedicated CDP browser windows. Triggers: "plan-review", "review this plan", "review markdown plan".
Session-based browser diff review primitives for Bosun. Provides transport- agnostic v1 schemas plus local state and git snapshot helpers for immutable review rounds. Triggers: "diff-review", "reround", "review round", "snapshot-backed review".
Browser automation via Chrome DevTools Protocol. Connects to Chromium running with --remote-debugging-port=9222. Use for: navigate, click, fill, screenshot, inspect DOM, capture console logs, debug errors, monitor network, viewport emulation, visual review, overflow detection. Triggers: "browser", "go to", "click", "fill form", "take screenshot", "web page", "scrape", "console errors", "debug", "network requests", "visual review", "responsive", "viewport", "overflow".
基于 SOC 职业分类
| name | memory |
| description | Search curated markdown memory like sessions, plans, docs, and skills. Use when recalling prior context or looking for relevant historical/project knowledge. |
| license | MIT |
| compatibility | pi |
| metadata | {"category":"retrieval","version":"1.0"} |
Bosun's memory system retrieves curated markdown knowledge using the pi-memory
extension, backed by qmd v2.
Use memory when you need:
Do not use memory for:
For those cases, prefer:
grepfindreadUse the memory tool with one of these actions:
| Action | Use |
|---|---|
search | Search curated markdown memory |
get | Retrieve one document after finding it |
multi_get | Retrieve several matching documents |
status | Inspect index health and collections |
memory({ action: "search", ... })memory({ action: "get", ... }) on the best hitmemory({ action: "multi_get", ... }) when you need a batch of related docskeywordFast BM25-style lookup. Best when you know likely terms.
memory({ action: "search", query: "daemon path isolation", mode: "keyword" })
hybridBroader qmd search for conceptual recall.
memory({
action: "search",
query: "what did we decide about memory indexing",
mode: "hybrid",
intent: "bosun package architecture and retrieval design"
})
keyword is the default because it is fast and works without embeddings.
Bosun memory typically includes:
sessions → workspace/users/**/*.mddocs → docs/**/*.mdskills → .pi/skills/**/*.mdagents → .pi/agents/**/*.mdSee references/collections.md for details.
references/query-strategy.md — how to search wellreferences/collections.md — what is indexed and whyreferences/troubleshooting.md — common failure modes