一键导入
glean-status
Show glean pipeline health - pending queue, delivered fragments, outbox, recent activity, last extraction timestamp, and config summary
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Show glean pipeline health - pending queue, delivered fragments, outbox, recent activity, last extraction timestamp, and config summary
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Manually trigger glean extraction on pending sessions, or on a specific session by ID. Reports processed, extracted, skipped, and errors
Review delivered glean fragments interactively - star, archive, or trash each one, capture a short note on why, feeds signals into feedback.jsonl
| name | glean-status |
| description | Show glean pipeline health - pending queue, delivered fragments, outbox, recent activity, last extraction timestamp, and config summary |
| allowed-tools | Bash, Read |
| user-invocable | true |
Show the current health of the glean extraction pipeline.
PYTHONPATH="${CLAUDE_PLUGIN_ROOT}/scripts" python3 -m glean.worker --status
Parse the JSON. Expect fields like: pending, processing, failed, delivered_7d, outbox, last_extraction, config (with output_mode, vault_path, vault_folder, extraction_model, prompt_version, max_fragments_per_session). If the actual JSON shape differs, adapt to what is returned and surface any unknown fields verbatim.
Render a compact human-readable status table. Suggested layout:
glean pipeline status
---------------------
Queue pending: N processing: N failed: N
Delivered last 7d: N total: N
Outbox N (items needing attention)
Last run 2026-04-05T18:45:00Z
Config
mode: obsidian
vault: /Users/ved/.../VedOS/Fragments
model: haiku
prompt_version: 1
max fragments: 3 / session
If outbox count > 0, list each outbox item with its fragment_id and reason (vault write failure, etc). Read files from ${CLAUDE_PLUGIN_DATA}/outbox/ only if the status JSON does not already include the details.
If failed count > 0, mention that .failed files exist in the queue dir and suggest the user inspect ${CLAUDE_PLUGIN_DATA}/worker.log.
Keep output tight - one screen, no decoration beyond what is shown above. Do not add emojis.
${CLAUDE_PLUGIN_DATA} is unset or the config is missing, report that clearly and suggest the user re-run the plugin install.