app-deployer

app-deployer is a skill for Claude Code, Codex from bolivian-peru/os-moda. It costs 14 tokens per session (799 once invoked), scanned A, original, Apache-2.0.

A tool for running applications as managed system services on Linux. It supports programs such as Node.js applications, Python scripts, Go binaries, and container-like processes without Docker.

In plain words
What is it for?
Use it to deploy an application with its command, folder, environment variables, port, memory limit, and user account, then verify its status and logs.
Why use it?
It removes the need to start and monitor applications manually. It also provides a way to check whether an application is running and inspect its startup logs.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Not installable: its command points at a path on the author’s own machine, so it runs nowhere else. The line is /home/user/api.

Good fit Use it to deploy an application with its command, folder, environment variables, port, memory limit, and user account, then verify its status and logs.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

Made for: Claude Code, Codex.

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 app-deployer

README.md
[![agentmods](https://agentmods.dev/badge/skills/bolivian-peru/os-moda/app-deployer/github.svg)](https://agentmods.dev/skills/bolivian-peru/os-moda/app-deployer)
Your own site
<a href="https://agentmods.dev/skills/bolivian-peru/os-moda/app-deployer"><img src="https://agentmods.dev/badge/skills/bolivian-peru/os-moda/app-deployer/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 app-deployer

Your own site · 80×15
<a href="https://agentmods.dev/skills/bolivian-peru/os-moda/app-deployer"><img src="https://agentmods.dev/badge/skills/bolivian-peru/os-moda/app-deployer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 799 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.
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.00014 $0.00799
Opus 5 $0.00007 $0.00400
Sonnet 5 $0.00003 $0.00160
Haiku 4.5 $0.00001 $0.00080

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

Security

Grade A, and why

app-deployer 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 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.

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.

skills/app-deployer/SKILL.md · 81 lines

How it starts

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

App Deployer

Deploy and manage user applications (Node.js apps, Python scripts, Go binaries, Docker-less containers, etc.) as first-class managed processes on the OS.

Deploy Workflow

  1. Understand — Ask what to deploy. Determine the command, working directory, environment variables, and resource requirements.
  2. Deploy — Use app_deploy with appropriate parameters. Default isolation uses DynamicUser=yes (ephemeral UID, no root).
  3. Verify — Use app_list to confirm the app is running. Check app_logs for startup output.
  4. Store — Use memory_store to remember what was deployed and why.

Example

User: "Deploy my Node.js API at /home/user/api"

1. app_deploy({
     name: "user-api",
     command: "/usr/bin/node",
     args: ["server.js"],
     working_dir: "/home/user/api",
     env: { NODE_ENV: "production", PORT: "3000" },
     port: 3000,
     memory_max: "256M",
     user: "user"
   })
2. app_list() → confirm running, check PID
3. app_logs({ name: "user-api", lines: 20 }) → verify startup
4. memory_store({ summary: "Deployed user-api Node.js app", ... })

Managing Apps

  • Status: app_list shows all apps with live systemd state, PID, memory, CPU usage
  • Logs: app_logs pulls from journald — supports --since, --priority, line limits
  • Restart: app_restart — if the unit is active, calls systemctl restart. If inactive, re-deploys from registry
  • Stop: app_stop — stops the unit, marks as stopped in registry (preserved for restart)
  • Remove: app_remove — stops and permanently deletes from registry

Resource Limits

Apps run under systemd cgroups. Available limits:

Parameter Example Effect
memory_max "256M", "1G" Hard memory cap via MemoryMax=
cpu_quota "50%", "200%" CPU time limit (200% = 2 cores)

Isolation

  • Default (DynamicUser=yes): App runs as an ephemeral system user. No root, no access to other users' files. Best for self-contained binaries and services.
  • Named user (user: "username"): App runs as the specified user. Use when the app needs to read/write files owned by that user (e.g., /home/user/data).

Read the full file on GitHub · 81 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 · 81 lines · 14 tokens per session scan A 2bf7ad10e4ce

Subscribe to this mod's changes

app-deployer is a skill published in the GitHub repository bolivian-peru/os-moda (117 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 14 tokens to every session and 799 once invoked, about $0.0001 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-08-30.