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/binary16labs/prime-silo/spacesnpx skills add binary16labs/prime-silo --skill spacesgit clone --depth 1 https://github.com/binary16labs/prime-siloWhat 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.00011 | $0.00454 |
| Opus 5 | $0.00005 | $0.00227 |
| Sonnet 5 | $0.00002 | $0.00091 |
| Haiku 4.5 | $0.00001 | $0.00045 |
Grade A, and why
Spaces 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 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.
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.
This is a copy
100% identical to Spaces — 14 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.
What it actually says
Use this skill for space selection and space.yaml work
transient
Available Spacesin_____transientlistsspaces (id|title)↓- when a current space is open,
Current Space Widgetssummarizes the live widget layout for that space - after widget writes or reloads,
Current Widgetis the last edited widget envelope
main helpers
- listSpaces()
- openSpace(id)
- createSpace({ title? })
- removeSpace(id)
- readSpace(id)
- saveSpaceMeta({ id, title?, icon?, icon_color?, agent_instructions? })
space selection
listSpaces()returns plain objects.Available Spacesis the lightweight prompt readback withid|titlerows- If the user already named a target space clearly, list spaces, match that visible title to an id, and use that id directly
- Prefer the exact
idreturned bylistSpaces()or shown inAvailable Spaces - Do not ask which space if the visible title match is already unique
- Do not invent a different id when the current list already showed the right one
current-space handoff
- widget creation or editing inside the current open space belongs to the auto-loaded
space-widgetsskill - if the request is about the current open space itself, stay on it instead of reopening it
- use this skill for space CRUD, navigation, and
space.yaml; use current-space widget helpers only for widget work
examples Loading the spaces list _javascript return await space.spaces.listSpaces()
Opening the selected space _javascript return await space.spaces.openSpace("space-7")
Creating a new space _javascript return await space.spaces.createSpace({ title: "Research" })
Reading the current space file _javascript return await space.spaces.readSpace("space-7")
Removing the selected space _javascript return await space.spaces.removeSpace("space-7")
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 · 60 lines · 11 tokens per session scan A ab5939b6143b
Spaces is a skill published in the GitHub repository binary16labs/prime-silo (5 stars, last pushed 10d ago), licensed MIT. It adds 11 tokens to every session and 454 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to Spaces, differing in 14 lines, and is treated as a copy.
Other skills, from other repositories
draw-image
Generate an image from a text prompt using an OpenAI-compatible image generation API (gpt-image-1-mini or compatible). The image is uploaded to the gofile.io public file sharing service and ONLY the public download page URL is returned. Trigger when user asks to draw, paint, generate, or create an image.
compose:subagent
Use when executing implementation plans with independent tasks in the current session.
compose:worktree
Use when starting feature work that needs isolation from current workspace or before executing implementation plans - ensures an isolated workspace exists via native tools or git worktree fallback.
compose:merge
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup.
compose:new-skill
Use when creating new skills or editing existing skills for the project or personal skill library.
compose:plan
Use when you have a spec or requirements for a multi-step task, before touching code.