shell-skill

shell-skill is a skill for Claude Code from zeenie-ai/OpenCompany. It costs 44 tokens per session (1,910 once invoked), scanned A, original, MIT.

A tool for running short-lived shell commands inside the workflow workspace.

In plain words
What is it for?
Checking files, running scripts, installing packages, and carrying out one-off development tasks.
Why use it?
It provides a controlled place to run common developer commands such as npm, Node, Python, and Git.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Checking files, running scripts, installing packages, and carrying out one-off development tasks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zeenie-ai/opencompany/shell-skill
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add zeenie-ai/OpenCompany --skill shell-skill
Clone the repo
git clone --depth 1 https://github.com/zeenie-ai/OpenCompany

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for shell-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/zeenie-ai/opencompany/shell-skill/github.svg)](https://agentmods.dev/skills/zeenie-ai/opencompany/shell-skill)
Your own site
<a href="https://agentmods.dev/skills/zeenie-ai/opencompany/shell-skill"><img src="https://agentmods.dev/badge/skills/zeenie-ai/opencompany/shell-skill/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for shell-skill

Your own site · 80×15
<a href="https://agentmods.dev/skills/zeenie-ai/opencompany/shell-skill"><img src="https://agentmods.dev/badge/skills/zeenie-ai/opencompany/shell-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,910 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00044 $0.01910
Opus 5 $0.00022 $0.00955
Sonnet 5 $0.00009 $0.00382
Haiku 4.5 $0.00004 $0.00191

Measured 6d ago against content hash ac9aedf20d30, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

shell-skill scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

server/skills/terminal/shell-skill/SKILL.md · 152 lines

How it starts

The opening of the file, as written. The whole thing — 152 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Shell Tool

Execute short-lived shell commands in the workflow workspace. The backend uses Nushell when nu is installed. Otherwise it passes the command to the host shell (cmd.exe on Windows or the platform /bin/sh-style shell on POSIX). Shell-specific syntax is therefore conditional on the installed runner.

External binaries on PATH (npm, node, python, git, etc.) are available to whichever runner is selected.

For portable calls, prefer one external command with ordinary arguments, such as git status or python -V. Use file_read, file_modify, or fs_search for filesystem work; they avoid runner-specific parsing.

Runner-dependent syntax

The node rejects space-delimited && and || before selecting a runner, so those operators are unsupported even when the host shell would normally accept them. Prefer separate tool calls. If the environment is known to have Nushell, its equivalents include:

try { npm install } catch { print 'install failed'; exit 1 }
open README.md --raw | lines | first 20

Do not send Nushell pipelines, Bash substitutions, PowerShell cmdlets, or cmd.exe builtins unless the selected environment is known to support that syntax. GNU utilities such as sed, awk, and grep are not generally available on Windows.

shell_execute Tool

Schema

Field Type Required Description
command string Yes Command interpreted by Nushell when installed, otherwise by the host shell
timeout int No Seconds (default 30, max 600)

Response

{
  "stdout": "command output",
  "exit_code": 0,
  "truncated": false,
  "command": "ls"
}
Exit code Meaning
0 Success
124 Timed out
non-zero Failure

Nushell reference (only when nu is installed)

Bash / cmd.exe form Nushell form
cmd1 && cmd2 (and-then) cmd1; cmd2 (unconditional sequential — see below for short-circuit)
`cmd1
$VAR substitution $env.VAR
`cmd` or $(cmd) (cmd) (parens, no dollar)
cmd > file.txt cmd | save file.txt
cmd >> file.txt cmd | save --append file.txt
cmd 2>&1 cmd | complete | get stdout (all output is captured anyway)
if [ -f x.txt ]; then ... if ('x.txt' | path exists) { ... }
for f in *.py; do ... glob '*.py' | each { |f| ... }
* glob in argv (auto-expand) wrap in quotes or use glob
~/path ('~/path' | path expand)
sed -n '1,N p' file open file --raw | lines | first N (prefer file_read with limit)
head -n N file open file --raw | lines | first N
tail -n N file open file --raw | lines | last N
sed -i 's/a/b/' file use file_modify (edit op) — not the shell
grep 'pat' file open file --raw | find 'pat' (prefer fs_search)
grep -r 'pat' src/ use fs_search (grep mode)
wc -l file open file --raw | lines | length
find . -name '*.py' glob '**/*.py'
xargs cmd each { |x| cmd $x }

Read the full file on GitHub · 152 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 152 lines · 44 tokens per session scan A ac9aedf20d30

Subscribe to this mod's changes

shell-skill is a skill published in the GitHub repository zeenie-ai/OpenCompany (878 stars, last pushed today), licensed MIT. It adds 44 tokens to every session and 1,910 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.