# Send Skill to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/sandboxer-tmux",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sandboxer-tmux",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Sandboxer — Dispatch Tasks to Tmux Sessions

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.

Sandboxer runs on localhost:8081. No auth needed from localhost.

### Quick: Dispatch a Task

# 1. Spawn a Claude session in a repo
curl "localhost:8081/api/create?type=claude&dir=/root/workspaces/AGENT/data/repos/PROJECT"

# 2. Send it a task
curl "localhost:8081/api/send?session=SESSION_NAME&text=Fix+the+failing+tests"

# 3. Check progress
curl "localhost:8081/api/session-monitor?session=SESSION_NAME"

# 4. Kill when done
curl "localhost:8081/api/kill?session=SESSION_NAME"

Session types: claude, bash, lazygit, gemini, opencode

### Workspace Structure

Sandboxer manages /root/workspaces/ — a single git repo containing all agent workspaces.

/root/workspaces/                          ← git repo (Sandboxer commits this)
├── .gitignore                             ← tracks only .md, .gitignore, cronjobs/
├── <agent-name>/                          ← one folder per OpenClaw agent
│   ├── AGENTS.md                          ← agent behavior rules
│   ├── SOUL.md, USER.md, TOOLS.md         ← agent identity & config
│   ├── MEMORY.md                          ← curated long-term memory
│   ├── TODO.md                            ← workspace task list (P1/P2/P3)
│   ├── CLAUDE.md                          ← coding rules for this workspace
│   ├── memory/YYYY-MM-DD.md               ← daily memory logs
│   ├── cronjobs/                          ← cron configs (tracked by git)
│   └── data/
│       └── repos/                         ← software projects (git clones)
│           ├── <project-a>/               ← separate git repo
│           │   ├── CLAUDE.md              ← project-specific coding rules
│           │   └── ...source code...
│           └── <project-b>/

### Key rules:

data/repos/ contains separate git repos — each project has its own .git, branches, remotes
The workspace .gitignore excludes data/ — repo contents stay in their own git, not the workspace commit
The workspace git only tracks: .md files, .gitignore, and cronjobs/
Always read CLAUDE.md / AGENTS.md in both workspace AND repo before dispatching work to a session

### API Reference

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

POST /api/create accepts JSON body with notify_url — gets called when session finishes.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: chriopter
- Version: 1.0.1
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/sandboxer-tmux)
- [Send to Agent page](https://openagent3.xyz/skills/sandboxer-tmux/agent)
- [JSON manifest](https://openagent3.xyz/skills/sandboxer-tmux/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/sandboxer-tmux/agent.md)
- [Download page](https://openagent3.xyz/downloads/sandboxer-tmux)