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 agentmods add skills/samugit83/redamon/orchestrator-container-spawnnpx skills add samugit83/redamon --skill orchestrator-container-spawngit clone --depth 1 https://github.com/samugit83/redamonWrote 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/samugit83/redamon/orchestrator-container-spawn)<a href="https://agentmods.dev/skills/samugit83/redamon/orchestrator-container-spawn"><img src="https://agentmods.dev/badge/skills/samugit83/redamon/orchestrator-container-spawn.svg" alt="Measured on agentmods" 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 | $0.00103 | $0.01718 |
| Opus 5 | $0.00051 | $0.00859 |
| Sonnet 5 | $0.00021 | $0.00344 |
| Haiku 4.5 | $0.00010 | $0.00172 |
Grade A, and why
orchestrator-container-spawn scanned grade A with 1 finding 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 3d 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 rootlowPrivilege escalation
A mod that escalates privileges can change anything on the machine, not only the project.
Scan containers run as root and **bind-mount host-owned source** (the live Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.
How it starts
The opening of the file, as written. The whole thing — 119 lines — stays where its author put it; the contents beside it link to each section on GitHub.
When to Use
- Changing how the orchestrator launches or secures a scan container (recon_orchestrator/container_manager.py).
For the no-env_file knob rule, see the recon_orchestrator
AGENTS.md CRITICAL RULES (not repeated here).
Critical Rules
- NEVER add
cap_drop: [ALL]to a scan container that writes to a host-owned source bind mount. It stripsCAP_DAC_OVERRIDE, so root-in-container can no longer write the host-owned files, and the scan breaks. This was reverted after breaking recon/partial spawns; hardening is deliberately deferred withdrop_caps=Falseat every spawn site (container_manager.py:837, :1798, :2168). Keep it deferred unless the mount is not host-owned. - NEVER add
security_opt: no-new-privilegesto these spawns. It breaksexecvefor non-root users inside the recon image (reverted once already): container_manager.py:939. - NEVER add a
tmpfsmount withoutuid/gid/modewhen the container runs as a NON-ROOT user and the mount lands on a path that user must write. Docker mounts a tmpfs root-owned 0755 unless told otherwise (only/tmpgets the 1777 default), and the mount SHADOWS whatever the image built at that path - so a tmpfs added to give a non-root user writable scratch is what takes it away. This shipped: the TruffleHog spawn's/home/trufflehogtmpfs hid the home diruseradd --create-homehad given uid 10001, andgithub_experimentaldied on "failed to create .trufflehog folder in user's home directory" while the other thirteen sources were fine, because it is the only one that writes to$HOME. Build the spec in_trufflehog_tmpfs(), not inline, and size-cap every entry - an uncapped tmpfs is host RAM a hostile archive can exhaust. - ALWAYS apply hardening through
_scanner_hardening()(container_manager.py:567), not ad-hoc per spawn, so all three spawn sites stay consistent. - ALWAYS keep
sibling_host_path()robust to BOTH POSIX (/) and Windows (\) host paths (container_manager.py:53). It derives a sibling source dir's host path for bind mounts; a POSIX-only assumption breaks spawns on Windows hosts. Its two companionsparent_host_path()andjoin_host_path()carry the same POSIX+Windows discipline - never swap inpathlib/Path(...).parent, which collapses a Windows host path on the Linux orchestrator. - NEVER assume a scanner source dir is a repo-root sibling. Scanners live two
levels deep under
scanners/<name>/, so a bind mount to a repo-root sibling (e.g.graph_db) must climb out ofscanners/first:sibling_host_path(parent_host_path(scanner_path), "graph_db"), and ascanners/-nested sibling is reached withjoin_host_path(parent_host_path(recon_path), "scanners", "supply_chain_common"). The oldsibling_host_path(scanner_path, "graph_db")now resolves to a nonexistentscanners/graph_db; Docker silently binds an empty root-owned dir there and graph writes / imports fail with no error. The build context climbs two parents:parent_host_path(parent_host_path(scanner_path)). - NEVER bind
/app/graph_dbdirectly at a spawn site. Always route it throughself._graph_db_mount(<derived>, baked_into_image=...)(container_manager.py:605). Deriving graph_db's host path is a LAST RESORT, not the mechanism: the real path is auto-detected from the orchestrator's own./graph_db:/app/graph_db:romount (GRAPH_DB_PATH, resolved inapi.pyexactly likeRECON_PATH). The derivation is only right when Docker reports the literal repo path - Docker Desktop on Windows/WSL2 reports rewritten bindSourcestrings whose sibling is nowhere, Docker auto-creates that path EMPTY, and the empty dir shadows the graph_db baked into the scan image. Every spawned scan then dies withcannot import name 'Neo4jClient' from 'graph_db' (unknown location)(issue #169).baked_into_image=Truefor recon / gvm / github-hunt (they COPY graph_db, so no mount beats a wrong mount);Falseonly for supply-chain, which does not bake it. TruffleHog has NO graph_db mount at all: its container is the dirty half of a dirty/clean split and holds no Neo4j credentials, so the orchestrator ingests its findings afterwards. - ALWAYS resolve a new host source path with
_get_host_path()+ a compose mount, not by string surgery on another path. If a spawn needs host dirX, mountXinto the orchestrator so Docker itself reports its source. A missing bind source is not an error to Docker; it silently becomes an empty directory.
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.
- 3d ago First seen · 119 lines · 103 tokens per session scan A dfaee4d08989
orchestrator-container-spawn is a skill published in the GitHub repository samugit83/redamon (2,372 stars, last pushed 2d ago), licensed MIT. It adds 103 tokens to every session and 1,718 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (asks for root). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
aiq-deploy
Use when asked to install, deploy, run, validate, troubleshoot, or stop NVIDIA AI-Q Blueprint infrastructure.
cuopt-install
Install cuOpt for Python, C, or server via pip, conda, or Docker; verify the install. For building cuOpt from source, see cuopt-developer.
doca-container-deployment
Use this skill when the user is hands-on deploying an in-bundle DOCA service container (Argus, DMS, Firefly, or UROM service) on a BlueField — kubelet standalone watching a static-pod manifests directory, YAML pod-spec drop, kubelet status / ENTRYPOINT logs / per-service liveness, smoke-before-bulk, and the layered…
amc-setup-calibration-stack
Launch AutoMagicCalib microservice and web UI from NGC release images via Docker Compose. Use when user says 'deploy auto calibration', 'launch auto calibration', 'launch AMC', 'start MS+UI', or 'set up auto-magic-calib'. Requires NGC API key.
cvm-ai-doctor
CVM 实例健康诊断,采用智能快速/深度检查模式。涵盖性能和使用问题专业检查、诊断、和修复。支持服务器、PC、虚拟机、容器场景,支持 Linux/macOS/Windows。.
workflow-orchestrator
Module Loop and Iteration Skill for orchestrating multi-phase penetration testing workflows. Use when coordinating sequential tool execution, managing dependencies between reconnaissance and vulnerability scanning modules, implementing adaptive fallback strategies, or managing workflow state across iterations.…