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/extra-org/extra/runtime-enginenpx skills add extra-org/extra --skill runtime-enginegit clone --depth 1 https://github.com/extra-org/extraWhat 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.00041 | $0.00501 |
| Opus 5 | $0.00020 | $0.00251 |
| Sonnet 5 | $0.00008 | $0.00100 |
| Haiku 4.5 | $0.00004 | $0.00050 |
Grade A, and why
runtime-engine 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 2d 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.
What it actually says
Skill: Runtime Engine
When to use this skill
Use this when modifying RuntimeEngine, ExecutionContext, agent execution, or
the request lifecycle. Primary tasks: tasks/0003-compiled-agent-graph.md,
tasks/0004-runtime-engine.md.
Files to read first
AGENTS.mddocs/ARCHITECTURE.mddocs/RUNTIME_LIFECYCLE.mddocs/adr/0001-runtime-engine-created-once.md
Architecture rules
RuntimeEngineis long-lived, created once at startup from theCompiledAgentGraph.ExecutionContextis per-request and carries all request-scoped state.- The compiled graph is immutable at runtime.
- The runtime operates only on compiled, typed models — never raw YAML.
Implementation rules
- Construct the engine only on startup paths; never inside request handlers.
- Do not put request state (identity, tenant, current request, rendered prompts)
on
RuntimeEngineor the compiled graph. - Pass
ExecutionContextexplicitly through routing, context resolution, prompt rendering, and tool execution. - Keep the engine concurrency-safe by keeping it stateless w.r.t. requests.
- Build the engine in
src/agentplatform/runtime; the graph insrc/agentplatform/graph.
Validation checklist
- Engine constructed once (startup), not per request.
- No request-scoped fields on the engine or graph.
- All per-request data lives on
ExecutionContext. - Compiled graph treated as immutable.
- Tests cover concurrent requests not leaking state.
-
make checkpasses.
Common mistakes to avoid
- Recreating the runtime or recompiling the graph per request.
- Storing "current user/request" on the engine.
- Mutating the compiled graph during execution.
- Hidden global/singleton request state.
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.
- 2d ago First seen · 63 lines · 41 tokens per session scan A 6c5d9781ca7b
runtime-engine is a skill published in the GitHub repository extra-org/extra (108 stars, last pushed 4d ago), licensed MIT. It adds 41 tokens to every session and 501 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-08-30.
Other skills, from other repositories
skill-doc-delivery
Convert markdown to DOCX, PPTX, XLSX, PDF office documents — use when you need exportable deliverables.
peekaboo
Capture and automate macOS UI with the Peekaboo CLI.
powerpoint
Create designed, editable PowerPoint .pptx presentations with PptxGenJS. Use when the user asks to create, generate, update, or inspect a deck, slide deck, presentation, or .pptx file.
oracle
Best practices for using the oracle CLI (prompt + file bundling, engines, sessions, and file attachment patterns).
skill-intent-contract
Use when starting a complex or ambiguous task that risks scope drift.
skill-security-framing
URL validation and content sanitization for untrusted sources — use when handling external input safely.