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 OneDro1d/dark-factory --skill vinculum-mapgit clone --depth 1 https://github.com/OneDro1d/dark-factoryWrote 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/onedro1d/dark-factory/vinculum-map)<a href="https://agentmods.dev/skills/onedro1d/dark-factory/vinculum-map"><img src="https://agentmods.dev/badge/skills/onedro1d/dark-factory/vinculum-map/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/onedro1d/dark-factory/vinculum-map"><img src="https://agentmods.dev/badge/skills/onedro1d/dark-factory/vinculum-map.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.00081 | $0.02368 |
| Opus 5 | $0.00041 | $0.01184 |
| Sonnet 5 | $0.00016 | $0.00474 |
| Haiku 4.5 | $0.00008 | $0.00237 |
Grade A, and why
vinculum-map 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 5d 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 — 155 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Mission Map — durable state for a multi-session build
A mission larger than one context window cannot live in the conversation. It lives on the Mission Map: one item on the project's tracker that indexes every decision made and points at the tickets holding the detail.
The map is an index, not a store. A decision lives in exactly one place — its own ticket. The map gists it in one line and links. This is what makes resume cheap: a cold session reads the map (small), then zooms only into what it needs.
Ported from the wayfinding pattern in
mattpocock/skills, adapted to the Dark Factory stage pipeline and a pluggable tracker.
The tracker is chosen per mission
Declare it when the loop is invoked — "run the loop on X, tracker: jira, project ABC". Record the choice in the map's Tracker field so every later session inherits it.
| Tracker | Status | Map is | Tickets are | Blocking |
|---|---|---|---|---|
| Notion | wired where a hub exposes a Notion upstream | a Mission value grouping rows |
rows in the Tasks database |
Blocks / Blocked By dual relations |
| Jira | wired (jira_*) where a hub exposes Atlassian |
an Epic, label vinculum:map |
child issues in the epic | native blocks / is blocked by link |
| Monday | wired where a hub exposes a Monday upstream | a board | items | Blocked by column |
| local-markdown | always available, the fallback | MAP.md in the notepad repo |
tickets/<NN>-<slug>.md |
Blocked by: line in the body |
Board ids, data sources, frontier queries, dispatch scripts and deploy gates are organisation bindings — they live in that organisation's Tier-2 repo, never here. Do not re-derive them.
Rate limits are part of the tracker contract. Notion's query_data_sources is
available_with_limit on some plans: read the frontier once per dispatch batch,
never once per worker. A tracker that throttles under a fleet is a tracker that will
silently starve the frontier.
Verify the blocking write. Monday's dependency column with dependencyNewInfra: true
silently discards writes made through change_item_column_values — the mutation returns
success and the column reads back null. Always read the column back after setting it. If it
did not take, carry blocking in the status field instead and record the edges on the map.
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.
- 5d ago Changed · +36 lines 44ef7e4fba53
- 8d ago First seen · 119 lines · 81 tokens per session scan A 01736b13f303
vinculum-map is a skill published in the GitHub repository OneDro1d/dark-factory (0 stars, last pushed today), licensed Apache-2.0. It adds 81 tokens to every session and 2,368 once invoked, about $0.0004 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-09-01.
Other skills, from other repositories
recipe-create-meet-space
Create a Google Meet meeting space and share the join link.
workthreads
SpecStory Workthreads - a weekly work-thread rollup across a team's repos from SpecStory coding histories (any agent - Claude Code, Codex, Cursor, Gemini, and more). It groups the window's sessions into threads of work per project and labels each new / open / recently closed, so a lead sees what shipped, what is still…
atmos-config
Atmos root configuration: atmos.yaml discovery, precedence, deep merging, basepath, imports, minimal bootstrap, and routing to narrower Atmos skills.
story-readiness
Validate that a story file is implementation-ready. Checks for embedded GDD requirements, ADR references, engine notes, clear acceptance criteria, and no open design questions. Produces READY / NEEDS WORK / BLOCKED verdict with specific gaps. Use when user says 'is this story ready', 'can I start on this story', 'is…
autotask-creator
Rules for automation CRUD from the group-chat commander. The commander does not call mutation tools and does not edit cloud/autotasks files directly. It emits one or more top-level ... containers in its final text; the bus parses and applies them after the turn.
projects
List all managed projects with status, branch, open PRs, and open issue counts — portfolio-level view.