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/xuiltul/animaworks/worker_managementnpx skills add xuiltul/animaworks --skill worker_managementgit clone --depth 1 https://github.com/xuiltul/animaworksWrote 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/xuiltul/animaworks/worker_management)<a href="https://agentmods.dev/skills/xuiltul/animaworks/worker_management"><img src="https://agentmods.dev/badge/skills/xuiltul/animaworks/worker_management.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.00066 | $0.00600 |
| Opus 5 | $0.00033 | $0.00300 |
| Sonnet 5 | $0.00013 | $0.00120 |
| Haiku 4.5 | $0.00007 | $0.00060 |
Grade C, and why
worker-management scanned grade C 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 4d 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.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl -s -X POST http://localhost:18500/api/system/reload | python3 -m json.tool Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s -X POST http://localhost:18500/api/system/reload | python3 -m json.tool How it starts
The opening of the file, as written. The whole thing — 83 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill: System Management
CLI Commands (Recommended)
Use the animaworks CLI for individual Anima management. Prefer CLI over direct API calls.
# Restart individual Anima (to apply config changes, etc.)
animaworks anima restart <name>
# Status check (all or individual)
animaworks anima status
animaworks anima status <name>
# Model change (updates status.json + auto restart)
animaworks anima set-model <name> <model>
# Role change
animaworks anima set-role <name> <role>
# Anima list
animaworks anima list
# Disable / Enable
animaworks anima disable <name>
animaworks anima enable <name>
# Delete (--archive for backup)
animaworks anima delete <name>
Common Usage
# Restart specific Anima after config.json change
animaworks anima restart aoi
# Change model and auto restart
animaworks anima set-model aoi claude-sonnet-4-6
API Reference (When CLI Unavailable)
Base URL: http://localhost:18500
| Endpoint | Method | Purpose |
|---|---|---|
/api/system/status |
GET | System status check |
/api/system/reload |
POST | Hot reload all animas |
/api/animas |
GET | Anima list |
/api/animas/{name} |
GET | Anima details |
/api/animas/{name}/restart |
POST | Individual restart |
/api/animas/{name}/stop |
POST | Individual stop |
/api/animas/{name}/start |
POST | Start stopped anima |
/api/animas/{name}/chat |
POST | Send message |
/api/animas/{name}/trigger |
POST | Trigger heartbeat immediately |
Reload Procedure (After Program Update)
curl -s -X POST http://localhost:18500/api/system/reload | python3 -m json.tool
added: Newly detected animasrefreshed: Reloaded animas (file changes applied)removed: Animas removed from disk- No server restart needed. Config and prompt changes take effect immediately via this endpoint
Notes
- Stopping a worker does not delete anima data (memory, settings)
- Do not perform operations that stop yourself
- Use CLI → API priority for individual operations
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.
- 4d ago First seen · 83 lines · 66 tokens per session scan C 9fb9647575f2
worker-management is a skill published in the GitHub repository xuiltul/animaworks (254 stars, last pushed today), licensed Apache-2.0. It adds 66 tokens to every session and 600 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
hive.context-preservation
Proactively extract critical values from tool results into working notes before automatic context pruning destroys them.
hive.note-taking
Maintain a free-form scratchpad of decisions, extracted values, and open questions so context pruning doesn't lose anything you still need.
Vizra ADK Memory System
Implement persistent memory, session context, and vector memory (RAG) for AI agents.
aspirations-consolidate
Runs session-end consolidation — the hippocampal sleep-replay pass that compresses session observations into long-term memory. Handles micro-hypothesis sweep, encoding queue processing, knowledge debt sweep, tree rebalancing, experience-to-skill mining, skill health check, aspiration archive, user recap, handoff…
aspirations-execute
Phase 4 of the aspirations loop: executes a selected goal end-to-end with precondition checks, LLM-driven intelligent retrieval, memory deliberation, subagent delegation, primary execution, fail-fast cascade, experience archival, context-utilization feedback, domain post-execution steps (commit/push per…
felt-sense-checkin
Fires whenever the aspirations-precheck cadence hits 75 completed goals — an autonomous structured 7-lane self-audit that converts the user's proven-high-yield diagnostic question into a routine. Sweeps memory hygiene (including insight curation from agents/{agent}/insights.jsonl — distills unprocessed entries into…