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

agi-terminal-helperagi 终端助手

Agent Skill

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

总安装

27,166

周安装

1,155

GitHub Stars

公开资料未说明

下载量

9,517
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install agi-terminal-helper

简介

安全使用 OpenClaw exec 的实用运行手册(沙箱优先、显式确认和调试手册)。

SKILL.md

name
terminal-helper
description
A practical runbook for using OpenClaw exec safely (sandbox-first, explicit confirmations, and debugging playbooks).
user-invocable
true
disable-model-invocation
false
metadata
{ "openclaw": { "emoji": "🖥️", "os": ["darwin","linux","win32"] } }

Terminal Helper — a runbook for OpenClaw exec

This skill is not a “generic terminal tips” template. It’s a concrete runbook for how to use OpenClaw’s exec tool effectively in a real workspace (like your /Users/.../clawd workspace), with attention to:

  • sandbox vs host execution
  • predictable working directories
  • long-running processes
  • permissions on macOS (Peekaboo, screen recording, UI automation)
  • avoiding “accidental shell scripting” disasters

OpenClaw skills are loaded from bundled skills, ~/.openclaw/skills, and <workspace>/skills with workspace taking precedence. :contentReference[oaicite:12]{index=12}

Operating principles (what I will do every time)

1) State the intent + the exact command before running it

Before calling exec, I will say:

  • what the command is intended to do
  • what directory it will run in
  • what files it might read/write
  • what output I expect (so we can spot anomalies)

2) Default to read-only exploration

When debugging or orienting:

  • pwd, ls -la, git status, rg, cat, head, tail
  • only escalate to writes/installs after we know what’s going on

3) Prefer sandboxed execution for untrusted or high-churn work

Use the sandbox for:

  • tests, builds, dependency installs
  • exploring unknown repos
  • running scripts from third-party sources

Important nuance: If a session is sandboxed, the sandbox does not inherit host process.env. Global env and skills.entries.<skill>.env/apiKey apply to host runs only; sandbox env must be set separately. :contentReference[oaicite:13]{index=13}

4) Explicit confirmation for anything risky

I will require the user to confirm before:

  • deleting or overwriting files
  • installing system-level packages
  • touching ~/.ssh, keychains, browser profiles
  • changing network/system settings
  • running privileged commands (sudo, launchctl changes)

Execution patterns (the “how”)

A) Choose a working directory deliberately

When diagnosing OpenClaw itself, I’ll work inside your workspace (example: /Users/proman/clawd) and be explicit about it.

Typical commands:

  • check skills:

- ls -la ./skills - find ./skills -maxdepth 2 -name SKILL.md -print

  • check git state:

- git status (if the workspace is a git repo)

  • verify binaries:

- which peekaboo || echo "peekaboo not on PATH"

B) Keep commands single-purpose

Prefer multiple small commands over one “do everything” pipeline. This makes it easier to review and safer to approve.

C) Long-running commands: background + poll

When supported, run with a short yield and then poll a process session.

Examples you can adapt:

  • start a long build:

- exec: make test (with a short yield)

  • poll until completion:

- process: poll (using the returned session id)

(Exact parameter names depend on your tool surface, but the pattern is: yield → poll.)

Practical playbooks

Playbook 1: “My skill isn’t loading”

1) Confirm skill location/precedence: - OpenClaw loads <workspace>/skills and that wins precedence. :contentReference[oaicite:14]{index=14} 2) Verify the skill folder has SKILL.md and valid frontmatter. 3) If you changed files, ensure watcher is enabled: - skills.load.watch: true is the default pattern. :contentReference[oaicite:15]{index=15}

Playbook 2: “Peekaboo works in Terminal but fails in OpenClaw”

This is usually macOS TCC context + daemon behavior. A common fix is enabling PeekabooBridge in OpenClaw.app:

  • Settings → Enable Peekaboo Bridge :contentReference[oaicite:16]{index=16}

Then validate:

  • peekaboo bridge status --verbose should select a host (OpenClaw.app) rather than local (in-process). :contentReference[oaicite:17]{index=17}

Playbook 3: “ClawHub sync rejects my skill docs”

ClawHub has a quality gate (language-aware word counting and heuristics) that rejects docs that are too thin/templated. :contentReference[oaicite:18]{index=18} Fix by adding:

  • concrete examples
  • troubleshooting
  • environment notes (sandbox, PATH, permissions)
  • “what/why/when/how” that is clearly specific to the skill

What I will NOT do

  • I will not run remote “install scripts” (e.g., curl | sh) without explicit user request and review.
  • I will not paste or echo secrets into commands.
  • I will not make destructive changes without confirming the exact file paths.

Quick commands I often start with

  • pwd
  • ls -la
  • git status
  • rg -n "error|warn|TODO" .
  • uname -a
  • node -v && python -V

If you want raw, direct execution (no model involvement), use /term.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82%
按下载量换算7,804

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills