process-manager-skill

process-manager-skill is a skill for Claude Code from zeenie-ai/OpenCompany. It costs 41 tokens per session (954 once invoked), scanned B, original, MIT.

A process manager for starting, stopping, restarting, and inspecting long-running programs such as development servers, file watchers, and build tools.

In plain words
What is it for?
Running npm, Python, or Node servers; managing watchers; and checking process logs.
Why use it?
It keeps persistent programs running and provides access to their output without mixing them up with short commands.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Good fit Running npm, Python, or Node servers; managing watchers; and checking process logs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zeenie-ai/opencompany/process-manager-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 process-manager-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 process-manager-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/zeenie-ai/opencompany/process-manager-skill/github.svg)](https://agentmods.dev/skills/zeenie-ai/opencompany/process-manager-skill)
Your own site
<a href="https://agentmods.dev/skills/zeenie-ai/opencompany/process-manager-skill"><img src="https://agentmods.dev/badge/skills/zeenie-ai/opencompany/process-manager-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 process-manager-skill

Your own site · 80×15
<a href="https://agentmods.dev/skills/zeenie-ai/opencompany/process-manager-skill"><img src="https://agentmods.dev/badge/skills/zeenie-ai/opencompany/process-manager-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 954 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Tool Misuse · line 20
    Tool parameters are crafted to achieve unintended or unsafe behavior. Parameter abuse can bypass intended safety checks (e.g. shell=True, --force, dangerous glob patterns).
    Fix: Validate all tool parameters against an allowlist. Reject dangerous parameter values (shell=True, --force, -rf /) and use safe defaults.
  • medium Privilege Escalation · line 20
    Commands invoke sudo or root privileges. Verify this elevated access is necessary and justified.
    Fix: Avoid sudo/root unless strictly required. Prefer least-privilege patterns. If elevation is needed, document the justification and scope.
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.00041 $0.00954
Opus 5 $0.00020 $0.00477
Sonnet 5 $0.00008 $0.00191
Haiku 4.5 $0.00004 $0.00095

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

Security

Grade B, and why

process-manager-skill scanned grade B with 2 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 10d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

**Blocked commands:** `rm`, `rmdir`, `del`, `rd`, `Remove-Item`, `format`, `mkfs`, `dd`, `shred`, `chmod 777`

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- **bash-skill** -- Linux/macOS (apt, brew, lsof, kill, curl)
server/skills/terminal/process-manager-skill/SKILL.md · 107 lines

How it starts

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

Process Manager Tool

Manage long-running processes with full system PATH access. Use this for anything that needs npm, python, node, or runs as a persistent server/watcher.

Security

The process manager blocks destructive file commands to prevent accidental deletion outside the agent's workspace. Use shell_execute for file operations instead (sandboxed, no PATH, confined to workspace).

Blocked commands: rm, rmdir, del, rd, Remove-Item, format, mkfs, dd, shred, chmod 777

Allowed: npm, python, node, pip, cargo, go, servers, build tools, installers

Operations

start

Launch a process. Output streams to the Terminal tab and is saved to log files.

{"operation": "start", "name": "dev-server", "command": "python -m http.server 8080"}

stop

Kill a process and its entire process tree.

{"operation": "stop", "name": "dev-server"}

restart

Stop then re-launch with the same command.

{"operation": "restart", "name": "dev-server"}

list

Show all running processes for this workflow.

{"operation": "list"}

get_output

Read output from a process's log file. Use tail to get last N lines, stream to choose stdout or stderr.

{"operation": "get_output", "name": "dev-server", "stream": "stdout", "tail": 20}

Returns {"lines": [...], "total": 150, "file": "/path/to/stdout.log"}.

send_input

Write text to a process's stdin (newline appended automatically).

{"operation": "send_input", "name": "dev-server", "text": "quit"}

Shell vs Process Manager

Need Tool Why
ls, cat, find, grep shell_execute Sandboxed, fast, no PATH
rm, mv, cp, file ops shell_execute Sandboxed, confined to workspace
npm install, pip install process_manager Needs PATH
python script.py process_manager Needs PATH
npm run dev, flask run process_manager Long-running, streams output
Dev servers, watchers process_manager Persistent, log files

Read the full file on GitHub · 107 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. 10d ago First seen · 107 lines · 41 tokens per session scan B 26399d1a36ce

Subscribe to this mod's changes

process-manager-skill is a skill published in the GitHub repository zeenie-ai/OpenCompany (893 stars, last pushed yesterday), licensed MIT. It adds 41 tokens to every session and 954 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.