用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dinglebear-ai/axon --skill monitor命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | monitor |
| description | Use Axon source watches and job monitoring to track recurring source changes and observe durable job activity. |
Axon has two related surfaces:
axon watch defines recurring source re-indexing. A watch persists a
canonical source request plus a schedule; each due tick leases the watch and
enqueues one source job.axon monitor jobs streams unified durable job lifecycle events.Use this skill when the user wants repeated checks, change history, or job monitoring.
A watch takes a source and an interval — nothing else is required. There is
no --task-type and no --task-payload; those belonged to the retired
per-family watch model.
axon watch create "https://example.com/pricing" --every-seconds 3600
Optional: --collection <name> to target a non-default Qdrant collection.
Manage it:
axon watch list
axon watch get <watch-id>
axon watch status <watch-id>
axon watch exec <watch-id> # run immediately
axon watch pause <watch-id>
axon watch resume <watch-id>
axon watch update <watch-id>
axon watch history <watch-id> # run history, with the job id per tick
axon watch delete <watch-id>
watch history records the source job id for each tick — follow it into
axon jobs get <job-id> for stage-level detail.
axon monitor jobs --jsonl
axon monitor jobs --watch --jsonl --interval-secs 5
watch for recurring re-indexing of any source, not just web URLs — the
watch source string accepts the same selectors axon <source> does.monitor jobs for queue visibility while detached source and extract jobs
run; use axon jobs get/events for one job's detail and axon status for the
global snapshot.axon jobs worker, axon serve,
or HTTP-mode axon mcp) before debugging the watch.