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.
npx skills add zeenie-ai/OpenCompany --skill shell-skillgit clone --depth 1 https://github.com/zeenie-ai/OpenCompanyWrote 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.
[](https://agentmods.dev/skills/zeenie-ai/opencompany/shell-skill)<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.
<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>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once 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 |
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.
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 } |
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.
- 6d ago First seen · 152 lines · 44 tokens per session scan A ac9aedf20d30
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.
Other skills, from other repositories
imsg
Use the imsg CLI from OpenClaw agents for iMessage/SMS DMs, groups, replies, reactions, polls, watching, and private-API actions.
control-ui
Operate and troubleshoot the OpenClaw Control UI: navigate connected clients, organize sessions, build session dashboards, and handle direct or Tailscale-hosted Gateways.
gog
Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs.
peekaboo
Capture and automate macOS UI with the Peekaboo CLI.
taskflow-inbox-triage
Preview synthetic inbox routing with a real TaskFlow approval pause, and identify the adapters needed for live triage.
wacli
Send third-party WhatsApp messages or sync/search WhatsApp history via wacli, not normal active chats.