用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/joshka0/foxctl --skill foxctl-observability命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Protocol for participant agents in transport-first rooms: join, check membership, handle inbox/tasks, reply durably, and escalate.
Operate inside an existing foxctl room: orient from status or inbox, manage tasks correctly, escalate, and close with durable updates.
Run durable multi-agent rooms with transport-first delivery, participant state, room tasks, and optional tmux or zellij viewers.
基于 SOC 职业分类
正在显示 SKILL.md
| name | foxctl Observability |
| description | Query and browse observability logs - foxcular events, errors, stats. |
Query foxcular events without navigating to the observability directory.
# Recent events (default: 20)
foxctl run obs/logs --input '{}'
# Errors only
foxctl run obs/logs --input '{"errors_only": true}'
# Filter by skill with stats
foxctl run obs/logs --input '{"command": "code/semantic_search", "stats": true}'
# Events from last hour
foxctl run obs/logs --input '{"since": "1h", "limit": 50}'
# Filter by operation
foxctl run obs/logs --input '{"operation": "skill.run", "status": "error"}'
| Param | Description |
|---|---|
limit | Max events (default: 20, max: 500) |
operation | Filter by operation (e.g., skill.run, hook.execute) |
command | Filter by skill/command name |
status | Filter: ok, error, canceled |
component | Filter: cli, web, hook, skill, job |
since | RFC3339 timestamp or duration (1h, 30m) |
stats | Include aggregate statistics |
errors_only | Only show error events |
Returns events sorted by timestamp (most recent first) with:
events[]: Matching foxcular eventscount: Number of events returnedtotal_scanned: Total events in filestats: Aggregate statistics (if requested)summary: Human-readable filter summary