# Send Agi Term Helper 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": "agi-term-helper",
    "name": "Agi Term Helper",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/liuwujijay/agi-term-helper",
    "canonicalUrl": "https://clawhub.ai/liuwujijay/agi-term-helper",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agi-term-helper",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agi-term-helper",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agi-term-helper",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T17:30:20.542Z",
      "expiresAt": "2026-05-06T17:30:20.542Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agi-term-helper",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agi-term-helper",
        "contentDisposition": "attachment; filename=\"agi-term-helper-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agi-term-helper"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/agi-term-helper"
    },
    "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/agi-term-helper",
    "downloadUrl": "https://openagent3.xyz/downloads/agi-term-helper",
    "agentUrl": "https://openagent3.xyz/skills/agi-term-helper/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agi-term-helper/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agi-term-helper/agent.md"
  }
}
```
## Documentation

### /term — direct terminal execution (exec dispatch)

/term is a power-user shortcut: whatever you type after /term is forwarded as-is to OpenClaw’s exec tool.

This is intentionally “manual mode”:

You (the user) provide the exact shell command.
OpenClaw does not rewrite, expand, or “helpfully” change it.
It’s useful when you want quick, deterministic terminal actions without a planning loop.

### How dispatch works (important)

OpenClaw supports command-dispatch: tool skills. When you run:

/term ls -la

the raw argument string (ls -la) is forwarded to the configured tool (exec) without extra parsing. In tool-dispatch mode, OpenClaw invokes the tool with params shaped like:

{ command: "<raw args>", commandName: "<slash command>", skillName: "<skill name>" }

See the Skills docs section on command-dispatch, command-tool, and command-arg-mode. :contentReference[oaicite:10]{index=10}

### When to use /term vs normal “agent runs”

Use /term when:

You already know the exact command you want.
You want a quick read-only check (files, git status, grep).
You are debugging OpenClaw itself (skills folder, logs, Peekaboo bridge status).

Prefer normal agent flow when:

You want the model to decide the best approach.
The task may need multiple steps, safety checks, or file edits.

### Safety model (read this once, then follow it)

/term is equivalent to letting an assistant type into your terminal.
Good defaults:

Prefer read-only commands unless you mean to change state.
Avoid secrets in command lines (tokens, API keys, cookies).
Avoid remote execution one-liners:

no curl ... | sh
no “download and execute” pipelines


If the command could delete or overwrite files, slow down and double-check paths.

### Host + sandbox notes

Your actual execution environment depends on how you invoke exec in your setup (sandbox vs host).
Also note: when a session is sandboxed, environment variables are not automatically inherited by the container; you must inject them via sandbox env settings or bake them into the image. :contentReference[oaicite:11]{index=11}

### Quick inspection (safe, read-only)

/term pwd
/term ls -la
/term git status
/term rg -n "TODO|FIXME" .

### Debug Peekaboo bridge discovery (macOS)

/term peekaboo bridge status --verbose

If the output shows “no such file or directory” for all candidates and “Selected: local (in-process)”, you likely have no bridge host running (see troubleshooting below).

### One-liners for structured output

If you want JSON output for parsing:

/term python -c 'import json,platform; print(json.dumps({"py":platform.python_version()}))'

### “command not found”

The tool runs in whatever PATH your OpenClaw runtime provides. If you rely on Homebrew, ensure the runtime sees /opt/homebrew/bin.

### “permission denied” / macOS privacy prompts

Some tools (screen capture / UI automation) require Screen Recording / Accessibility. Those permissions are per-process context on macOS; using PeekabooBridge is often the reliable path for automation.

### I need richer guidance and guardrails

Install/use the companion skill terminal-helper (model-invocable) which teaches safe patterns, confirmations, and runbooks.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: liuwujijay
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T17:30:20.542Z
- Expires at: 2026-05-06T17:30:20.542Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agi-term-helper)
- [Send to Agent page](https://openagent3.xyz/skills/agi-term-helper/agent)
- [JSON manifest](https://openagent3.xyz/skills/agi-term-helper/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agi-term-helper/agent.md)
- [Download page](https://openagent3.xyz/downloads/agi-term-helper)