Agent skill
openclaw
Install this agent skill to your Project
npx add-skill https://github.com/nutthouse/tutti/tree/main/skills/openclaw
SKILL.md
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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
tutti
Orchestrate multiple AI coding agents (Claude Code, Codex, Aider) from a single config — launch teams, run workflows, track capacity, and manage handoffs.
setup-pre-commit
Set up Husky pre-commit hooks with lint-staged (Prettier), type checking, and tests in the current repo. Use when user wants to add pre-commit hooks, set up Husky, configure lint-staged, or add commit-time formatting/typechecking/testing.
handoff
Compact the current conversation into a handoff document for another agent to pick up.
git-guardrails-claude-code
Set up Claude Code hooks to block dangerous git commands (push, reset --hard, clean, branch -D, etc.) before they execute. Use when user wants to prevent destructive git operations, add git safety hooks, or block git push/reset in Claude Code.
scaffold-exercises
Create exercise directory structures with sections, problems, solutions, and explainers that pass linting. Use when user wants to scaffold exercises, create exercise stubs, or set up a new course section.
edit-article
Edit and improve articles by restructuring sections, improving clarity, and tightening prose. Use when user wants to edit, revise, or improve an article draft.
Didn't find tool you were looking for?