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 skills add vucinatim/air-jam --skill prefab-authoringgit clone --depth 1 https://github.com/vucinatim/air-jamWrote 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/vucinatim/air-jam/prefab-authoring)<a href="https://agentmods.dev/skills/vucinatim/air-jam/prefab-authoring"><img src="https://agentmods.dev/badge/skills/vucinatim/air-jam/prefab-authoring/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/vucinatim/air-jam/prefab-authoring"><img src="https://agentmods.dev/badge/skills/vucinatim/air-jam/prefab-authoring.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.00035 | $0.00404 |
| Opus 5 | $0.00017 | $0.00202 |
| Sonnet 5 | $0.00007 | $0.00081 |
| Haiku 4.5 | $0.00003 | $0.00040 |
Grade A, and why
prefab-authoring 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.
What it actually says
Prefab Authoring
Use this skill when adding reusable scene objects, pickups, obstacles, props, spawnable entities, or authored content presets.
Read First
docs/airjam/prefab-authoring.mddocs/airjam/generated/project-structure.mddocs/airjam/generated/state-and-rendering.mdif the prefab introduces hot runtime behavior
Contract Rule
A prefab should be a reusable content unit, not a hidden pile of gameplay logic.
Keep the prefab definition declarative and stable enough that future tooling can:
- scan it
- render a preview
- expose safe config
- instantiate it consistently
Structure Rules
- place prefab code under
src/game/prefabs/ - keep metadata, schema, and runtime component clearly separated
- put pure behavior in domain/system modules when it outgrows the prefab itself
- avoid coupling prefab definitions directly to scene-global mutable state
- keep scene-population, spawn, and pooling layers outside
src/game/prefabs/
Config Rules
- expose explicit defaults
- keep config serializable where practical
- use stable ids, labels, categories, and tags
- avoid hidden magic props or implicit scene dependencies
Anti-Patterns
- one-off scene objects masquerading as reusable prefabs
- prefab files that bury behavior, metadata, and config in one component
- prefab placement rules that depend on trial-and-error offsets
- prefab contracts that are too ad hoc for future scanning or preview generation
- plural runtime mappers like
ShipsorCollectiblesliving insrc/game/prefabs/when they are actually population layers over 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.
- 10d ago First seen · 49 lines · 35 tokens per session scan A b34029a64ac4
prefab-authoring is a skill published in the GitHub repository vucinatim/air-jam (6 stars, last pushed yesterday), licensed MIT. It adds 35 tokens to every session and 404 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-31.
Other skills, from other repositories
design-lenses
Structured game-design critique: review a game through Schell's design lenses, Wright's systems-and-emergence lenses, and the MDA framework, producing severity-ranked findings with concrete fixes. Use when the user asks 'is my game fun?', 'review my game design', 'why is it boring?', 'critique this game', 'what's…
teach-me
Teach the user end-to-end browser game development over multiple sessions — design, engine, art, audio, juice, multiplayer, shipping — by building real games together. Use when the user wants to LEARN to make games themselves: 'teach me game development', 'I want to learn to make games', 'teach me Phaser', 'how do…
gaming-expert
Build comprehensive game systems including gameplay mechanics, multiplayer infrastructure, analytics tracking, and monetization features. Use when the user mentions game development, Unity or Unreal, gameplay mechanics, multiplayer netcode, game analytics, or in-game monetization.
game-design
Game design principles. GDD structure, balancing, player psychology, progression.
pc-games
PC and console game development principles. Engine selection, platform features, optimization strategies.
game-development
Game development orchestrator. Routes to platform-specific skills based on project needs.