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/amaar-mc/wit/coordinatenpx skills add amaar-mc/wit --skill coordinategit clone --depth 1 https://github.com/amaar-mc/witWhat 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.00606 |
| Opus 5 | $0.00016 | $0.00303 |
| Sonnet 5 | $0.00007 | $0.00121 |
| Haiku 4.5 | $0.00003 | $0.00061 |
Grade A, and why
coordinate 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 2d 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 — 62 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are working in a repository where Wit may be used for multi-agent coordination. Other AI agents may be working on this codebase simultaneously. Follow this protocol to prevent merge conflicts.
On session start
- Check if Wit is initialized:
test -d .wit && echo "wit:active" || echo "wit:inactive" - If active: run
wit statusto see what other agents are doing. - If inactive: check if the
witcommand exists:command -v wit >/dev/null 2>&1 && echo "wit:installed" || echo "wit:not-installed"- If installed but not initialized: run
wit initto start coordination. - If not installed: skip all coordination. Wit is not available in this environment.
- If installed but not initialized: run
Before editing any file
-
Declare your intent — announce what you plan to work on:
wit declare --description "Brief description of planned work" --files src/path/to/file.tsCheck the response for
conflicts. IfhasConflictsis true, read the conflict items — another agent may be working in the same area. Adjust your approach if needed. -
Lock specific symbols you plan to modify (functions, classes, types):
wit lock --symbol "src/path/to/file.ts:functionName"If you get a
LOCK_CONFLICT, another agent is actively editing that symbol. Work on a different part of the code instead. -
Check coordination state at any time:
wit statusThis shows all active intents, locks, and contracts across all agents.
After finishing your work
- Release your locks:
wit release --symbol "src/path/to/file.ts:functionName"
Rules
- Always declare intent BEFORE editing files, not after.
- Lock at the symbol level (function, class, type), not the file level.
- If you receive a conflict warning, do NOT ignore it — adjust your plan to avoid the conflicting region.
- If
witcommands fail with connection errors, the daemon may not be running. Runwit initto restart it. - Locks auto-expire after 30 minutes. Release them early when you finish.
- The
--jsonflag on any command gives machine-readable output.
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.
- 2d ago First seen · 62 lines · 33 tokens per session scan A c3f6c1bca2dc
coordinate is a skill published in the GitHub repository amaar-mc/wit (46 stars, last pushed 5mo ago), licensed MIT. It adds 33 tokens to every session and 606 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
opengeni
Use when editing, operating, extending, documenting, or debugging the OpenGeni source repository or deployment: architecture, sessions/events, worker orchestration, sandbox backends, files/storage, tools/MCP, scheduling, configuration, and deployment. For a customer product that consumes a standalone OpenGeni…
opengeni-client
Use when an external product, coding agent, CLI, backend, or automation uses a standalone OpenGeni deployment through @opengeni/sdk or @opengeni/react. Covers choosing between a stock-UI handoff, a headless product integration, embedded React session surfaces, or the optional workbench; tenant-safe proxy boundaries…
sixb-workflows
Use when discovering, starting, or monitoring authorized declared Sixb workflows.
sixb-actions
Use when requesting declared Sixb ontology actions as the preferred mutation path.
github-multi-repo
Multi-repository coordination, synchronization, and architecture management with AI swarm orchestration.
swarm-advanced
Advanced swarm orchestration patterns for research, development, testing, and complex distributed workflows.