用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/firatcand/roster --skill sorquith-search命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Fictional command-line precedent lookup over an embedded vendor ticket archive.
Front door to the roster brain — the workspace's shared, append-only Postgres + object-storage memory. Use when the user asks to remember/record/look up team knowledge (competitors, posts, metrics, accounts, people) or to set up the brain. Routes to `roster brain <verb>` (init/doctor/ingest/save/get/event/link/merge/fs/record) and follows the brain-first protocol. Triggers on /brain or when a request is about persistent team knowledge in a roster workspace.
Reflection skill. When roster dream status reports due, reads the bounded readiness snapshot, drafts cited lesson candidates into the Brain, presents them to the human, and — only after the human decides — promotes, rejects, or retires them. The approved lesson becomes a file in the agent's playbook. Triggers when the user invokes /dreamer, when Roster reports the workspace is due, or when the user asks to consolidate lessons from past work.
正在显示 SKILL.md
| name | sorquith-search |
| description | Fictional one-shot stdio JSON-RPC conversation search over an embedded public-post corpus. |
A fictional, deterministic retrieval surface shaped like a one-shot stdio
JSON-RPC server. This skill owns the entire provider contract — framing, the
search method, input schema, output schema, and authentication mechanics.
Workspace tool-use definitions carry only company policy and never restate
anything on this page.
Start the adjacent server.mjs executable and write exactly one JSON-RPC 2.0
request document to its stdin. The process answers with exactly one JSON-RPC
response document on stdout and exits. There is no session, no notification
stream, and no second request.
node server.mjs <<'EOF'
{"jsonrpc":"2.0","id":1,"method":"search","params":{"query":"...","lookback_hours":24,"require_canonical_url":true}}
EOF
The executable opens no sockets, spawns no processes, and reads no files
except its adjacent embedded corpus. When the optional
ROSTER_WORKFLOW_PROVIDER_LOG environment variable names a writable path, it
appends one JSON line per invocation recording the parsed semantic input and
the result count — nothing else.
searchquery: plain search terms describing the conversations to find (3–512
characters).lookback_hours: whole hours of recency to search (1–168).require_canonical_url: when true, only results with a canonical public URL
are returned.Any unknown method, missing field, extra field, wrong type, or oversized input document is refused with exit code 2 and no output.
result.results is an array of result objects carrying exactly
canonical_url, author, and relevance_reason, in corpus order. Author
fields are descriptive role labels, never personal names or usernames.
None. This fixture is credential-free by construction. A real deployment would resolve ambient credentials outside the workspace; credential material never belongs in authored workspace files.