Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

shell-command外壳命令

Agent Skill

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

总安装

445

周安装

18

GitHub Stars

公开资料未说明

下载量

140
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:shell-command(外壳命令)
来源仓库:https://github.com/iyaki/opencode-base-template
仓库路径:skills/shell-command
安装命令:
npx skills add https://github.com/iyaki/opencode-base-template --skill shell-command
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/iyaki/opencode-base-template --skill shell-command

简介

shell-command 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它支持结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

SKILL.md

Shell Non-Interactive Strategy (Global)

Context: OpenCode's shell environment is strictly non-interactive. It lacks a TTY/PTY, meaning any command that waits for user input, confirmation, or launches a UI (editor/pager) will hang indefinitely and timeout.

Goal: Achieve parity with Claude Code's shell capabilities through internalized knowledge of non-interactive flags and environment variables.

Cognitive & Behavioral Standards

To match the high-agency, autonomous capabilities of advanced models (like Claude Sonnet), this strategy enforces strict cognitive patterns. These are not just shell tips; they are behavioral requirements for success in this environment.

Goal: Eliminate "human-in-the-loop" dependency during task execution.

Key Behaviors:

  1. Process Continuity (Turn-Taking):

- Rule: Never stop after a tool output to "wait for instructions" unless the task is complete. - Why: The environment is non-interactive. You must drive the workflow. - Mechanism: Commands expecting input MUST use timeouts or explicit "yes" pipes.

  1. Explicit Action Framing (Positive Constraints):

- Rule: Follow "GOOD" (positive) instructions, ignore "BAD" (negative) assumptions. - Why: Models follow explicit directives ("Use -y") better than prohibitions ("Don't prompt"). - Mechanism: Always preemptively supply non-interactive flags.

  1. Environment Rigor (Context Awareness):

- Rule: Assume a headless CI environment where any prompt = failure. - Why: There is no TTY. "Asking the user" via a shell prompt causes a hang. - Mechanism: Strictly avoid editors, pagers, and interactive modes.

Core Mandates

  1. Assume CI=true: Act as if running in a headless CI/CD pipeline.
  2. No Editors/Pagers: vim, nano, less, more, man are BANNED.
  3. Force & Yes: Always preemptively supply "yes" or "force" flags.
  4. Use Tools: Prefer Read/Write/Edit tools over shell manipulation (sed, echo, cat).
  5. No Interactive Modes: Never use -i or -p flags that require user input.

Environment Variables (Auto-Set)

These environment variables help prevent interactive prompts:

VariableValuePurpose
CItrueGeneral CI detection
DEBIAN_FRONTENDnoninteractiveApt/dpkg prompts
GIT_TERMINAL_PROMPT0Git auth prompts
GIT_EDITORtrueBlock git editor
GIT_PAGERcatDisable git pager
PAGERcatDisable system pager
GCM_INTERACTIVEneverGit credential manager
HOMEBREW_NO_AUTO_UPDATE1Homebrew updates
npm_config_yestrueNPM prompts
PIP_NO_INPUT1Pip prompts
YARN_ENABLE_IMMUTABLE_INSTALLSfalseYarn lockfile

Command Reference

Package Managers

ToolInteractive (BAD)Non-Interactive (GOOD)
NPMnpm initnpm init -y
NPMnpm installnpm install --yes
Yarnyarn installyarn install --non-interactive
PNPMpnpm installpnpm install --reporter=silent
Bunbun initbun init -y
APTapt-get install pkgapt-get install -y pkg
APTapt-get upgradeapt-get upgrade -y
PIPpip install pkgpip install --no-input pkg
Homebrewbrew install pkgHOMEBREW_NO_AUTO_UPDATE=1 brew install pkg

Git Operations

ActionInteractive (BAD)Non-Interactive (GOOD)
Commitgit commitgit commit -m "msg"
Mergegit merge branchgit merge --no-edit branch
Pullgit pullgit pull --no-edit
Rebasegit rebase -igit rebase (non-interactive)
Addgit add -pgit add. or git add <file>
Stashgit stash pop (conflicts)git stash pop or handle manually
Loggit log (pager)git log --no-pager or git log -n 10
Diffgit diff (pager)git diff --no-pager or git --no-pager diff

System & Files

ToolInteractive (BAD)Non-Interactive (GOOD)
RMrm file (prompts)rm -f file
RMrm -i filerm -f file
CPcp -i a bcp -f a b
MVmv -i a bmv -f a b
Unzipunzip file.zipunzip -o file.zip
Tartar xf file.tartar xf file.tar (usually safe)
SSHssh hostssh -o BatchMode=yes -o StrictHostKeyChecking=no host
SCPscp file host:scp -o BatchMode=yes file host:
Curlcurl urlcurl -fsSL url
Wgetwget urlwget -q url

Docker

ActionInteractive (BAD)Non-Interactive (GOOD)
Rundocker run -it imagedocker run image
Execdocker exec -it container bashdocker exec container cmd
Builddocker build.docker build --progress=plain.
Composedocker-compose updocker-compose up -d

Python/Node REPLs

ToolInteractive (BAD)Non-Interactive (GOOD)
Pythonpythonpython -c "code" or python script.py
Nodenodenode -e "code" or node script.js
IPythonipythonNever use - always python -c

Banned Commands (Will Always Hang)

These commands will hang indefinitely - never use them:

  • Editors: vim, vi, nano, emacs, pico, ed
  • Pagers: less, more, most, pg
  • Manual pages: man
  • Interactive git: git add -p, git rebase -i, git commit (without -m)
  • REPLs: python, node, irb, ghci (without script/command)
  • Interactive shells: bash -i, zsh -i

Handling Prompts

When a command doesn't have a non-interactive flag:

The "Yes" Pipe

yes | ./install_script.sh

Heredoc Input

./configure.sh <<EOF
option1
option2
EOF

Echo Pipe

echo "password" | sudo -S command

Timeout Wrapper (last resort)

timeout 30 ./potentially_hanging_script.sh || echo "Timed out"

Alternatively, use a subshell to start the hanging command and kill it after completion (e.g., for starting a dev server).

Best Practices

  1. Always test commands mentally for interactive prompts before running
  2. Check man pages (via web search) for -y, --yes, --non-interactive, -f, --force flags
  3. Use --help to discover non-interactive options: cmd --help | grep -i "non-interactive\|force\|yes"
  4. Prefer OpenCode tools over shell commands for file operations
  5. Set timeout for any command that might unexpectedly prompt

Advanced Instruction Patterns (Cognitive Optimization)

The Problem: Implicit Constraints

Large Language Models (LLMs) often struggle with:

  1. Negative constraints: Inverting or ignoring "don't do X" instructions.
  2. Turn termination: Stopping after tool execution instead of auto-continuing.
  3. Context weighting: Failing to prioritize authoritative instructions over general knowledge.

Strategy 1: Explicit Action Framing (BAD vs GOOD)

This plugin uses the BAD vs GOOD pattern to enforce positive constraints. Instead of saying "Don't use interactive flags", we provide a concrete "Good" alternative.

Why it works:

  • "BAD: npm init" → Model identifies the failure pattern.
  • "GOOD: npm init -y" → Model receives a specific, executable instruction.
  • Result: Reduces hallucination of interactive commands by providing a verified substitute.

Strategy 2: Process Continuity

In non-interactive environments, the agent must drive the process forward.

The Rule: Never stop after a tool execution unless the task is complete.

Pattern:

1. Execute command (e.g., git status)
2. Analyze output
3. Explicitly state next step: "Status is clean. Next: I will run tests."
4. Execute next step immediately

Strategy 3: Context Hierarchy

When instructions conflict (e.g., generic docs vs this specific strategy), establish precedence:

  1. Cite the Authority: "Per shell_strategy.md..."
  2. Follow the Specifics: Rules in this file override general model training or other documentation.

Strategy 4: Applying These Patterns Beyond Shell

The cognitive strategies used here (Explicit Action Framing) apply to all coding tasks:

Instead of:

Do not use logging.getLogger()
Don't create CLI code here

Use:

ALWAYS USE: config.logging_config.get_logger()
USE THIS REPO FOR: API backend only

By framing instructions as "Actionable Positive Constraints", you reduce hallucination and improve compliance across all models.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.92%
按下载量换算52

Claude

29.17%
按下载量换算41

Cursor

20.16%
按下载量换算28

Gemini CLI

8.93%
按下载量换算13

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

未通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills