# Ito Workflow

> Ito workflow delegation - delegates all workflow content to Ito CLI instruction artifacts. Use when this capability is needed.

- Skill: `tomevault-io/ito-workflow` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/ito-workflow`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/ito-workflow/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/ito-workflow

---


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

```bash
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

```bash
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>"
ito agent instruction finish --change "<change-id>"

# Worktrees / multi-branch workflow (per-developer)
ito agent instruction worktrees

# Backend server configuration and usage
ito agent instruction backend
```

### Task Management

```bash
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

1. Run the appropriate `ito agent instruction` command
2. Read the output carefully
3. Follow the printed instructions exactly
4. Use `ito tasks` to track progress

## Related Skills

- `ito-fix` - Start fix-oriented changes
- `ito-feature` - Start feature-oriented changes
- `ito-proposal-intake` - Clarify change shape before scaffolding
- `ito-proposal` - Create new changes
- `ito-apply` - Implement changes
- `ito-review` - Review changes
- `ito-archive` - Archive completed changes
- `ito-tasks` - Manage tasks
- `ito-commit` - Create commits

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/withakay) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-13 -->

