# Ito

> Unified entry point for ito commands with intelligent skill-first routing and CLI fallback. Use when this capability is needed.

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

---


Route ito commands to the best handler.

## Goal

Users may type requests like `ito archive 001-03_add-ito-skill` or `ito dashboard`.

This skill MUST:

1. Prefer matching ito-* skills (skill-first precedence)
2. Fall back to the ito CLI when no matching skill is installed
3. Preserve argument order and content

## Input

The requested command is provided either:

- As plain text following the word "ito" in the user request
- In prompt arguments (if your harness provides them)
- In a `<ItoCommand>` block

## Steps

1. **Parse** the command:
   - Extract the primary command (first token) and the remaining args
   - If no command is provided, output a concise error: "Command is required" and show a one-line usage example

2. **Resolve skill target**:
   - Build candidate skill id: `ito-${command}`
   - Determine if that skill is installed/available in this harness
     - OpenCode: check for a directory under `.opencode/skills/`
     - Claude: check for a directory under `.claude/skills/`
     - GitHub Copilot: check for a directory under `.github/skills/`
     - Codex: skills are global; if unsure, assume not installed and use CLI fallback

3. **Execute**:
   - If matching skill exists: follow that skill's instructions, passing along the original args
   - Otherwise: invoke the CLI using Bash: `ito <command> <args...>`

4. **Error handling**:
   - If the invoked skill fails: prefix with `[ito-* skill error]` and preserve the original error
   - If the CLI fails: prefix with `[ito CLI error]` and preserve the original error

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

