Agent Skill
2/7/2026ito-workflow
Ito workflow delegation - delegates all workflow content to Ito CLI instruction artifacts.
W
withakay
0GitHub Stars
1Views
npx skills add withakay/ito
SKILL.md
| Name | ito-workflow |
| Description | Ito workflow delegation - delegates all workflow content to Ito CLI instruction artifacts. |
name: ito-workflow description: Ito workflow delegation - delegates all workflow content to Ito CLI instruction artifacts.
This skill delegates workflow operations to the Ito CLI.
Principle: The Ito CLI is the source of truth for workflow instructions. Skills should be thin wrappers that invoke the CLI and follow its output.
Available CLI Commands
Change Management
ito create change "<name>" --module <module-id>
ito list [--json]
ito list --ready # Show only changes ready for implementation
ito list --pending # Show changes with 0/N tasks complete
ito list --partial # Show changes with 1..N-1/N tasks complete
ito list --completed # Show changes with N/N tasks complete
ito status --change "<change-id>"
Agent Instructions
ito agent instruction proposal --change "<change-id>"
ito agent instruction specs --change "<change-id>"
ito agent instruction tasks --change "<change-id>"
ito agent instruction apply --change "<change-id>"
ito agent instruction review --change "<change-id>"
ito agent instruction archive --change "<change-id>"
# Worktrees / multi-branch workflow (per-developer)
ito agent instruction worktrees
Task Management
ito tasks status <change-id>
ito tasks next <change-id>
ito tasks ready # Show ready tasks across all changes
ito tasks ready <change-id> # Show ready tasks for a specific change
ito tasks start <change-id> <task-id>
ito tasks complete <change-id> <task-id>
Workflow Pattern
- Run the appropriate
ito agent instructioncommand - Read the output carefully
- Follow the printed instructions exactly
- Use
ito tasksto track progress
Related Skills
ito-proposal- Create new changesito-apply- Implement changesito-review- Review changesito-archive- Archive completed changesito-tasks- Manage tasksito-commit- Create commits
Skills Info
Original Name:ito-workflowAuthor:withakay
Download