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.
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.
[](https://agentmods.dev/skills/bolivian-peru/os-moda/app-deployer)<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.
<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>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.00014 | $0.00799 |
| Opus 5 | $0.00007 | $0.00400 |
| Sonnet 5 | $0.00003 | $0.00160 |
| Haiku 4.5 | $0.00001 | $0.00080 |
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.
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
- Understand — Ask what to deploy. Determine the command, working directory, environment variables, and resource requirements.
- Deploy — Use
app_deploywith appropriate parameters. Default isolation usesDynamicUser=yes(ephemeral UID, no root). - Verify — Use
app_listto confirm the app is running. Checkapp_logsfor startup output. - Store — Use
memory_storeto 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_listshows all apps with live systemd state, PID, memory, CPU usage - Logs:
app_logspulls from journald — supports--since,--priority, line limits - Restart:
app_restart— if the unit is active, callssystemctl 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).
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.
- 10d ago First seen · 81 lines · 14 tokens per session scan A 2bf7ad10e4ce
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.
Other skills, from other repositories
cloudflare-router
Use when manage Cloudflare DNS, CDN, and security rules via API. Use when configuring domains, SSL, WAF, or edge caching.
devops-specialist
DevOps agent specializing in deployment, monitoring, and infrastructure automation.
gandi
Gère les domaines, DNS et emails via l'API Gandi v5. Permet de lister les domaines, consulter/modifier les enregistrements DNS, gérer les boîtes mail et configurer les redirections.
terraform-infrastructure-as-code
Comprehensive Terraform Infrastructure as Code skill covering resources, modules, state management, workspaces, providers, and advanced patterns for cloud-agnostic infrastructure deployment.
cloud-architect
Use when you need to design, evaluate, or optimize cloud infrastructure architecture at scale. Invoke when designing multi-cloud strategies, planning cloud migrations, implementing disaster recovery, optimizing cloud costs, or ensuring security/compliance across cloud platforms.
kubernetes-specialist
Use when you need to design, deploy, configure, or troubleshoot Kubernetes clusters and workloads in production environments.