用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/joshka0/foxctl --skill foxctl-todo命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 Todo |
| description | Manage tasks with foxctl todo commands. Create, list, complete tasks for tracking work. |
Structured task tracking with dependencies and completion notes.
foxctl todo add --title "Task title" --description "Details"
Use --depends-on to block a task until dependencies complete:
foxctl todo add --title "Deploy app" --depends-on 01ABC123 --depends-on 01DEF456
Use --parent to create subtasks:
foxctl todo add --title "Write tests" --parent 01ABC123
foxctl todo list
foxctl todo list --status pending
foxctl todo list --status completed
foxctl todo active
foxctl todo complete --id <task-id> --notes "What was done"
Tasks with incomplete dependencies cannot be completed until their dependencies are done.
foxctl todo update --id <task-id> --title "New title"
# Start a feature
foxctl todo add --title "Implement user auth" --description "Add JWT-based authentication"
# Check what's active
foxctl todo active
# Complete when done
foxctl todo complete --id 01ABC... --notes "Added JWT middleware, login/logout endpoints"
The PreToolUse task-guard hook automatically:
Set mode: export FOXCTL_TASK_GUARD_MODE=strict
Tasks can be linked to Claude Code plans from ~/.claude/plans/:
# Import plan steps as tasks
foxctl run plan/sync --input '{"import_tasks": true}'
# List tasks from a specific plan
foxctl todo list # Tasks show plan_file if linked
When plan/sync imports tasks, each task includes:
plan_file: Path to the source planplan_section: Section hierarchy (e.g., "Phase 1 > Step 1.1")