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/unbound-force/gaze/forge-globalnpx skills add unbound-force/gaze --skill forge-globalgit clone --depth 1 https://github.com/unbound-force/gazeWrote 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/unbound-force/gaze/forge-global)<a href="https://agentmods.dev/skills/unbound-force/gaze/forge-global"><img src="https://agentmods.dev/badge/skills/unbound-force/gaze/forge-global.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.1 | $0.00008 | $0.00282 |
| Opus 5 | $0.00004 | $0.00141 |
| Sonnet 5 | $0.00002 | $0.00056 |
| Haiku 4.5 | $0.00001 | $0.00028 |
Grade A, and why
forge-global 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.
What it actually says
Forge Global
Patterns for forge coordination that apply across projects.
When to Forge
Use a forge when:
- Task touches 3+ files
- Task has independent subtasks that can parallelize
- Task benefits from specialized workers (e.g., tests vs implementation)
Don't forge when:
- Task is a single-file change
- Task requires sequential steps with tight coupling
- Task is exploratory or investigative
File Reservation Protocol
- Workers MUST call
comms_reserve(paths=[...])before editing - Reservations are exclusive by default
- Set
ttl_secondsto auto-release after timeout - Always release when done:
comms_release(paths=[...]) - Coordinator can emergency release:
comms_release_all()
Worker Spawning
Each worker gets:
- A bead ID (cell in the org)
- An epic ID (parent cell)
- A list of assigned files
- Shared context from the coordinator
Workers operate independently and report back via comms.
Broadcast
Coordinator can broadcast context updates to all workers:
forge_broadcast(
project_path=".",
agent_name="coordinator",
epic_id="<id>",
message="API contract changed, update imports"
)
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 First seen · 53 lines · 8 tokens per session scan A abf8c6572788
forge-global is a skill published in the GitHub repository unbound-force/gaze (2 stars, last pushed yesterday), licensed Apache-2.0. It adds 8 tokens to every session and 282 once invoked, about $0.0000 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
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.
hive-mind-advanced
Advanced Hive Mind collective intelligence system for queen-led multi-agent coordination with consensus mechanisms and persistent memory.
minecraft-modpack-server
Host modded Minecraft servers (CurseForge, Modrinth).
agent-teams
Coordinates Claude agent teams via filesystem protocol. Use when orchestrating parallel agents with task dependencies. Do not use for single-agent tasks.
orchestrate
This skill should be used when the user asks to 'orchestrate a task', 'break down work into parallel agents', 'coordinate subtasks', 'run agents in parallel', or mentions 'multi-agent'. Decomposes complex tasks into tracked subtasks, dispatches parallel subagents, and coordinates until completion.