Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

tuttitutti 搜索

Agent Skill

tutti 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

10,110

周安装

409

GitHub Stars

公开资料未说明

下载量

3,174
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tutti(tutti 搜索)
来源仓库:https://github.com/nutt-adam/tutti
安装命令:
openclaw skills install tutti
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install tutti

简介

从单个配置中编排多个 AI 编码代理(Claude Code、Codex、Aider)——启动团队、运行工作流程、跟踪容量和管理交接。

SKILL.md

name
tutti
description
Orchestrate multiple AI coding agents (Claude Code, Codex, Aider) from a single config — launch teams, run workflows, track capacity, and manage handoffs.
version
1.1.0
metadata
openclaw
requires
bins
emoji
\F3B6
homepage
https://github.com/nutthouse/tutti

Tutti — Multi-Agent Orchestration

Orchestrate a team of AI coding agents from a declarative tutti.toml config. Launch agents in isolated git worktrees, run verification workflows, track token usage, and manage context handoffs — all through a single CLI.

When to use this skill

Use when the user asks you to:

  • Launch, monitor, or stop a team of AI coding agents
  • Run or verify automated workflows across agents
  • Dispatch prompts to agents with auto-start and output capture
  • Land agent work back to the main branch or open PRs
  • Check agent status, health, or capacity usage
  • Generate or apply context handoff packets
  • Coordinate multi-agent development workflows

Prerequisites

  1. tt binary installed and on PATH (install from https://github.com/nutthouse/tutti)
  2. tmux installed
  3. python3 available
  4. A tutti.toml config file in the workspace root

Always run preflight checks before starting a workflow:

python3 tutti_openclaw.py doctor_check

Actions

All actions go through the wrapper script. Every action returns a consistent JSON envelope:

{
  "ok": true,
  "action": "action_name",
  "command": ["tt", "..."],
  "exit_code": 0,
  "data": {},
  "stdout": "",
  "stderr": ""
}

Lifecycle

ActionCommandPurpose
doctor_checkpython3 tutti_openclaw.py doctor_checkPreflight: verify tools, config, and environment
launch_teampython3 tutti_openclaw.py launch_teamLaunch all agents defined in tutti.toml
launch_agentpython3 tutti_openclaw.py launch_agent <name>Launch a single agent
send_promptpython3 tutti_openclaw.py send_prompt <agent> <prompt...> [--auto-up] [--wait] [--output]Send a prompt to an agent with optional auto-start, wait-for-idle, and output capture
team_statuspython3 tutti_openclaw.py team_statusRead agent states from .tutti/state/
agent_outputpython3 tutti_openclaw.py agent_output <name> --lines 50Peek at an agent's terminal output
stop_agentpython3 tutti_openclaw.py stop_agent <name>Stop a single agent
stop_teampython3 tutti_openclaw.py stop_teamStop all agents

Workflows

ActionCommandPurpose
list_workflowspython3 tutti_openclaw.py list_workflowsDiscover available workflows
plan_workflowpython3 tutti_openclaw.py plan_workflow <name> [--strict]Dry-run a workflow
run_workflowpython3 tutti_openclaw.py run_workflow <name> [--agent <a>] [--strict]Execute a workflow
verify_teampython3 tutti_openclaw.py verify_team [--workflow <w>] [--strict]Run verification workflow
read_verify_statuspython3 tutti_openclaw.py read_verify_statusRead last verification result

Git Operations

ActionCommandPurpose
land_agentpython3 tutti_openclaw.py land_agent <agent> [--pr] [--force]Land an agent's branch back to current branch, or open a PR

Handoffs

ActionCommandPurpose
generate_handoffpython3 tutti_openclaw.py generate_handoff <agent> [--reason <r>]Capture agent context to a packet
apply_handoffpython3 tutti_openclaw.py apply_handoff <agent> [--packet <path>]Inject a handoff packet into an agent
list_handoffspython3 tutti_openclaw.py list_handoffs [--agent <a>] [--limit 20]List available handoff packets

Permissions

ActionCommandPurpose
permissions_checkpython3 tutti_openclaw.py permissions_check <cmd...>Check if a command is allowed by policy

Workflow step types

Workflows in tutti.toml support these step types:

TypePurposeKey fields
promptSend text to an agent sessionagent, text, inject_files, wait_for_idle, wait_timeout_secs
commandExecute a shell commandrun, cwd, timeout_secs, fail_mode
ensure_runningStart an agent if not already runningagent, fail_mode
workflowExecute another workflow as a nested stepworkflow, agent, strict, fail_mode
landLand an agent's branchagent, pr, force, fail_mode
reviewSend an agent's diff to a revieweragent, reviewer, fail_mode

Prompt steps support inject_files — an array of workspace-relative file paths that are copied into the agent's worktree before the prompt is sent. This enables stateful context passing between agents (e.g., injecting a snapshot JSON produced by another agent).

Nested workflow steps enable composition: observe → dispatch → fix → verify → land as a chain of workflow invocations.

Execution pattern

Follow this sequence for orchestrating a workspace:

  1. Preflightdoctor_check. Stop and report if non-zero.
  2. Launchlaunch_team or launch_agent <name>.
  3. Monitorteam_status and agent_output <name> to observe progress.
  4. Dispatchsend_prompt <agent> "do something" --auto-up --wait --output to dispatch work and capture results.
  5. Workflowlist_workflows to discover, then run_workflow <name>.
  6. Verifyverify_team --strict for gate-style quality checks.
  7. Landland_agent <agent> to cherry-pick work, or land_agent <agent> --pr to open a PR.
  8. Handoffgenerate_handoff <agent> when context is high, apply_handoff <agent> to resume.
  9. Stopstop_team or stop_agent <name> when done.

Failure handling

  • Non-zero exit: Surface the action, command, and stderr from the JSON envelope. Do not retry blindly.
  • Verify warnings (non-strict): Report as warning. Include data from read_verify_status.
  • Missing state files: Treat as transient — retry up to 3 times with short delays. If still missing, the workspace may not have been launched.
  • Auth failures: If stderr contains auth errors, stop and escalate to the user. Do not retry auth failures.
  • Agent not running: Use --auto-up on send_prompt to automatically start agents on demand rather than failing.

Configuration override

If tt is not on PATH or you need a specific version:

python3 tutti_openclaw.py --tt-bin /path/to/tt doctor_check
# or via environment variable
TUTTI_BIN=/path/to/tt python3 tutti_openclaw.py doctor_check

Rules

  • Always run doctor_check before any launch or workflow operation.
  • Never retry auth failures — escalate to the user immediately.
  • Prefer team_status (reads state files directly) over agent_output for status checks.
  • Use --strict flag on verify_team and run_workflow when results gate further actions.
  • Use --auto-up on send_prompt when the target agent may not be running.
  • Use --output on send_prompt to capture the agent's response for programmatic verification.
  • Use --json output from tt commands when you need structured data (the wrapper handles this automatically).
  • Do not parse stdout text output — always use the data field from the JSON envelope.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

80.35%
按下载量换算2,550

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills