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/thearcforge/hades/prefab-workflownpx skills add TheArcForge/Hades --skill prefab-workflowgit clone --depth 1 https://github.com/TheArcForge/HadesWrote 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/thearcforge/hades/prefab-workflow)<a href="https://agentmods.dev/skills/thearcforge/hades/prefab-workflow"><img src="https://agentmods.dev/badge/skills/thearcforge/hades/prefab-workflow.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.00033 | $0.03680 |
| Opus 5 | $0.00016 | $0.01840 |
| Sonnet 5 | $0.00007 | $0.00736 |
| Haiku 4.5 | $0.00003 | $0.00368 |
Grade A, and why
prefab-workflow 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 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.
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 — 417 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Prefab Workflow
Procedural guide for creating, editing, and managing Unity prefabs. Covers PrefabUtility API for programmatic prefab creation, prefab mode vs in-scene editing, variant strategies, and how to use Hades graph queries to discover existing prefabs before authoring new ones.
When to Apply
Activate when the task involves:
- Creating a new prefab asset from a scene object or from scratch
- Deciding whether to create a new prefab vs a prefab variant vs modify an existing one
- Editing a prefab's structure, components, or serialised values
- Applying or reverting prefab instance overrides
- Nesting prefabs inside other prefabs
- Writing an editor script to batch-create or batch-configure prefab assets
Do NOT activate for deciding the overall prefab architecture (depth, variant strategy, data vs behaviour) — use hades:unity-architect and hades:prefab-architecture for that, then return here to execute.
Project Context Check
Before creating or modifying any prefab:
-
Discover existing prefabs:
- Call
graph_query(edgeKind: "references", edgeTargetPath: "<path/to/Component.cs>")to check whether a prefab with the required component already exists — avoid duplicating assets (get the script's path fromsearch_by_namefirst if you only have the class name) - Call
search_by_name("*.prefab")for a full prefab inventory; narrow withsearch_by_name("Enemy*.prefab")or similar patterns when scope is known - Call
recall_memory("prefab workflow conventions")to surface any documented team conventions about prefab folder structure, naming, or variant depth limits
- Call
-
Adapt work based on findings:
- If a matching prefab exists → extend it (variant or composition) rather than creating a parallel asset
- If memory documents a max nesting depth (e.g. "no more than 2 levels of prefab nesting") → enforce it; flag to the user if a request would violate it
- If this is a new prefab category not yet in memory → after completing the work, call
propose_memory_updateto record the convention
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 · 417 lines · 33 tokens per session scan A 1fc6c8558f28
prefab-workflow is a skill published in the GitHub repository TheArcForge/Hades (27 stars, last pushed today), licensed MIT. It adds 33 tokens to every session and 3,680 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
golden-jupyter-dir
Use when testing the goldenjupyterdir golden build.
golden-man-kw
Use when testing the man golden build.
skill-builder
Automatically detect source types and build AI skills using Skill Seekers. Use when the user wants to create skills from documentation, repos, PDFs, videos, or other knowledge sources.
golden-rss
Use when testing the rss golden build.
golden-chat-topics
Use when testing the goldenchattopics golden build.
golden-chat-single
Use when testing the goldenchatsingle golden build.