Tutti OpenClaw Skill (Starter)
Use this skill to orchestrate a Tutti workspace from another agent loop.
Reference wrapper:
integrations/openclaw/tutti_openclaw.pyintegrations/openclaw/action-contract.json
If your tt binary is older than repo main, invoke the wrapper with:
--tt-bin "cargo run --quiet --"
Trigger
Use when asked to launch/monitor/verify/stop a multi-agent workspace managed by Tutti.
Preconditions
- Run from workspace root (
tutti.tomlpresent). - Run
tt doctorbefore launching long workflows. - Prefer
.tutti/state/*.jsonandtt verify --last --jsonfor verification reads.
Intent Mapping
launch_team:tt uplaunch_agent:tt up <agent>run_workflow:tt run <workflow> [--agent <agent>] [--strict] [--json]list_workflows:tt run --list --jsonplan_workflow:tt run <workflow> --dry-run --jsonverify_team:tt verify [--workflow <name>] [--agent <agent>] [--strict] [--json]generate_handoff:tt handoff generate <agent> --jsonlist_handoffs:tt handoff list --json [--agent <agent>]apply_handoff:tt handoff apply <agent> [--packet <path>]team_status:tt statusagent_output:tt peek <agent> --lines <n>stop_agent:tt down <agent>stop_team:tt downread_verify_status:tt verify --last --json(fallback:.tutti/state/verify-last.json)
Execution Pattern
- Preflight:
python3 integrations/openclaw/tutti_openclaw.py doctor_check- stop if non-zero and report failures.
- Launch:
... launch_teamor... launch_agent <agent>.
- Work:
... list_workflows, then... run_workflow <workflow>.
- Verify:
... verify_team --strictfor gate-style checks.
- Stop:
... stop_teamor... stop_agent <agent>.
Failure Policy
- Non-zero
ttexit: surface command + stderr summary. tt verifynon-strict warnings: report as warning, includett verify --last --jsonfields.- Missing state file: treat as transient for up to 3 short retries.
Output Contract (Recommended)
Return:
- action performed
- command used
- exit status
- brief evidence (one or two key lines)
- next recommended action
For full integration details, see:
docs/AGENT_INTEGRATION_CONTRACT.mddocs/OPENCLAW_SKILL_CONTRACT.md
Source: nutthouse/tutti — distributed by TomeVault.