{
  "schemaVersion": "1.0",
  "item": {
    "slug": "sandboxer-tmux",
    "name": "Skill",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/chriopter/sandboxer-tmux",
    "canonicalUrl": "https://clawhub.ai/chriopter/sandboxer-tmux",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/sandboxer-tmux",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sandboxer-tmux",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/sandboxer-tmux"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/sandboxer-tmux",
    "agentPageUrl": "https://openagent3.xyz/skills/sandboxer-tmux/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sandboxer-tmux/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sandboxer-tmux/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Sandboxer — Dispatch Tasks to Tmux Sessions",
        "body": "Power-user skill. Sandboxer gives agents full access to tmux sessions, workspace files, and terminal output on your server. Intended for dedicated AI machines where agents run with root access. Not for shared or untrusted environments.\n\nSandboxer runs on localhost:8081. No auth needed from localhost."
      },
      {
        "title": "Quick: Dispatch a Task",
        "body": "# 1. Spawn a Claude session in a repo\ncurl \"localhost:8081/api/create?type=claude&dir=/root/workspaces/AGENT/data/repos/PROJECT\"\n\n# 2. Send it a task\ncurl \"localhost:8081/api/send?session=SESSION_NAME&text=Fix+the+failing+tests\"\n\n# 3. Check progress\ncurl \"localhost:8081/api/session-monitor?session=SESSION_NAME\"\n\n# 4. Kill when done\ncurl \"localhost:8081/api/kill?session=SESSION_NAME\"\n\nSession types: claude, bash, lazygit, gemini, opencode"
      },
      {
        "title": "Workspace Structure",
        "body": "Sandboxer manages /root/workspaces/ — a single git repo containing all agent workspaces.\n\n/root/workspaces/                          ← git repo (Sandboxer commits this)\n├── .gitignore                             ← tracks only .md, .gitignore, cronjobs/\n├── <agent-name>/                          ← one folder per OpenClaw agent\n│   ├── AGENTS.md                          ← agent behavior rules\n│   ├── SOUL.md, USER.md, TOOLS.md         ← agent identity & config\n│   ├── MEMORY.md                          ← curated long-term memory\n│   ├── TODO.md                            ← workspace task list (P1/P2/P3)\n│   ├── CLAUDE.md                          ← coding rules for this workspace\n│   ├── memory/YYYY-MM-DD.md               ← daily memory logs\n│   ├── cronjobs/                          ← cron configs (tracked by git)\n│   └── data/\n│       └── repos/                         ← software projects (git clones)\n│           ├── <project-a>/               ← separate git repo\n│           │   ├── CLAUDE.md              ← project-specific coding rules\n│           │   └── ...source code...\n│           └── <project-b>/"
      },
      {
        "title": "Key rules:",
        "body": "data/repos/ contains separate git repos — each project has its own .git, branches, remotes\nThe workspace .gitignore excludes data/ — repo contents stay in their own git, not the workspace commit\nThe workspace git only tracks: .md files, .gitignore, and cronjobs/\nAlways read CLAUDE.md / AGENTS.md in both workspace AND repo before dispatching work to a session"
      },
      {
        "title": "API Reference",
        "body": "EndpointWhatGET /api/sessionsList all sessions (status: running/idle/done/error)GET /api/create?type=T&dir=DSpawn sessionGET /api/session-monitor?session=SLast 20 lines + status + durationGET /api/capture?session=SFull terminal outputGET /api/send?session=S&text=TSend keystrokesGET /api/forward?session=S&task=TCtrl+C then send taskGET /api/kill?session=SKill sessionGET /api/workspacesList workspaces (with repos)GET /api/workspace-repos?workspace=WList repos in workspaceGET /api/repo-tree?path=PRepo file tree with git statusGET/POST /api/workspace/W/file/PATHRead/write workspace filesPOST /api/auto-commit?workspace=WCommit workspace changes\n\nPOST /api/create accepts JSON body with notify_url — gets called when session finishes."
      }
    ],
    "body": "Sandboxer — Dispatch Tasks to Tmux Sessions\n\nPower-user skill. Sandboxer gives agents full access to tmux sessions, workspace files, and terminal output on your server. Intended for dedicated AI machines where agents run with root access. Not for shared or untrusted environments.\n\nSandboxer runs on localhost:8081. No auth needed from localhost.\n\nQuick: Dispatch a Task\n# 1. Spawn a Claude session in a repo\ncurl \"localhost:8081/api/create?type=claude&dir=/root/workspaces/AGENT/data/repos/PROJECT\"\n\n# 2. Send it a task\ncurl \"localhost:8081/api/send?session=SESSION_NAME&text=Fix+the+failing+tests\"\n\n# 3. Check progress\ncurl \"localhost:8081/api/session-monitor?session=SESSION_NAME\"\n\n# 4. Kill when done\ncurl \"localhost:8081/api/kill?session=SESSION_NAME\"\n\n\nSession types: claude, bash, lazygit, gemini, opencode\n\nWorkspace Structure\n\nSandboxer manages /root/workspaces/ — a single git repo containing all agent workspaces.\n\n/root/workspaces/                          ← git repo (Sandboxer commits this)\n├── .gitignore                             ← tracks only .md, .gitignore, cronjobs/\n├── <agent-name>/                          ← one folder per OpenClaw agent\n│   ├── AGENTS.md                          ← agent behavior rules\n│   ├── SOUL.md, USER.md, TOOLS.md         ← agent identity & config\n│   ├── MEMORY.md                          ← curated long-term memory\n│   ├── TODO.md                            ← workspace task list (P1/P2/P3)\n│   ├── CLAUDE.md                          ← coding rules for this workspace\n│   ├── memory/YYYY-MM-DD.md               ← daily memory logs\n│   ├── cronjobs/                          ← cron configs (tracked by git)\n│   └── data/\n│       └── repos/                         ← software projects (git clones)\n│           ├── <project-a>/               ← separate git repo\n│           │   ├── CLAUDE.md              ← project-specific coding rules\n│           │   └── ...source code...\n│           └── <project-b>/\n\nKey rules:\ndata/repos/ contains separate git repos — each project has its own .git, branches, remotes\nThe workspace .gitignore excludes data/ — repo contents stay in their own git, not the workspace commit\nThe workspace git only tracks: .md files, .gitignore, and cronjobs/\nAlways read CLAUDE.md / AGENTS.md in both workspace AND repo before dispatching work to a session\nAPI Reference\nEndpoint\tWhat\nGET /api/sessions\tList all sessions (status: running/idle/done/error)\nGET /api/create?type=T&dir=D\tSpawn session\nGET /api/session-monitor?session=S\tLast 20 lines + status + duration\nGET /api/capture?session=S\tFull terminal output\nGET /api/send?session=S&text=T\tSend keystrokes\nGET /api/forward?session=S&task=T\tCtrl+C then send task\nGET /api/kill?session=S\tKill session\nGET /api/workspaces\tList workspaces (with repos)\nGET /api/workspace-repos?workspace=W\tList repos in workspace\nGET /api/repo-tree?path=P\tRepo file tree with git status\nGET/POST /api/workspace/W/file/PATH\tRead/write workspace files\nPOST /api/auto-commit?workspace=W\tCommit workspace changes\n\nPOST /api/create accepts JSON body with notify_url — gets called when session finishes."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/chriopter/sandboxer-tmux",
    "publisherUrl": "https://clawhub.ai/chriopter/sandboxer-tmux",
    "owner": "chriopter",
    "version": "1.0.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/sandboxer-tmux",
    "downloadUrl": "https://openagent3.xyz/downloads/sandboxer-tmux",
    "agentUrl": "https://openagent3.xyz/skills/sandboxer-tmux/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sandboxer-tmux/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sandboxer-tmux/agent.md"
  }
}