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 instructions/php-workx/fuse/agents-mdgit clone --depth 1 https://github.com/php-workx/fuseWhat 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.01349 | $0.01349 |
| Opus 5 | $0.00674 | $0.00674 |
| Sonnet 5 | $0.00270 | $0.00270 |
| Haiku 4.5 | $0.00135 | $0.00135 |
Grade C, and why
fuse AGENTS.md scanned grade C with 1 finding 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 yesterday.
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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf directory # NOT: rm -r directory How it starts
The opening of the file, as written. The whole thing — 146 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Instructions
This project uses epos for task and ticket tracking.
Quick Reference
epos ready # Find available work
epos blocked # Find blocked work
epos show <id> # View ticket details
epos claim <id> -o "$AGENT_ID" # Claim work
epos close <id> -r "Reason" # Complete work
epos new "Title" # Create a new ticket
Non-Interactive Shell Commands
ALWAYS use non-interactive flags with file operations to avoid hanging on confirmation prompts.
Shell commands like cp, mv, and rm may be aliased to include -i (interactive) mode on some systems, causing the agent to hang indefinitely waiting for y/n input.
Use these forms instead:
# Force overwrite without prompting
cp -f source dest # NOT: cp source dest
mv -f source dest # NOT: mv source dest
rm -f file # NOT: rm file
# For recursive operations
rm -rf directory # NOT: rm -r directory
cp -rf source dest # NOT: cp -r source dest
Other commands that may prompt:
scp- use-o BatchMode=yesfor non-interactivessh- use-o BatchMode=yesto fail instead of promptingapt-get- use-yflagbrew- useHOMEBREW_NO_AUTO_UPDATE=1env var
Issue Tracking with epos
IMPORTANT: This project uses epos for ALL task and ticket tracking. Do NOT use markdown TODOs, task lists, direct .tickets/ edits, or other tracking methods.
Why epos?
- Dependency-aware: Track blockers and relationships between tickets
- Plain markdown: Tickets are readable directly from
.tickets/ - Agent-optimized: Ready work detection, claims/leases, validation, JSON export, and partial ID matching
- Prevents duplicate tracking systems and confusion
Quick Start
Check for ready work:
epos ready
epos blocked
Create new tickets:
epos new "Ticket title" --type bug --priority 2 --body "Detailed context"
epos new "Follow-up task" --body "What this issue is about"
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.
- yesterday First seen · 146 lines · 1,349 tokens per session scan C 1f7eac045363
fuse AGENTS.md is an instructions file published in the GitHub repository php-workx/fuse (2 stars, last pushed 2d ago), licensed MIT. It adds 1,349 tokens to every session, about $0.0067 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
azure-sdk-for-go go-code.instructions.md
Instructions for Azure/azure-sdk-for-go: All code should follow the guidelines from the Azure Go SDK Guidelines. This document is a summary of the most important guidelines to follow when contributing to the Azure Go SDK.
chatgpt-cli CLAUDE.md
Instructions for kardolus/chatgpt-cli, covering chatgpt-cli — release runbook, prerequisites, 1. cut the release, 2. publish the github release + binaries and 3. update the homebrew tap.
Sighthound AGENTS.md
Instructions for Corgea/Sighthound, covering claude, commands, python / django test naming and agent skill.
dsh-auto-review AGENTS.md
Instructions for PerryLink/dsh-auto-review, covering agents.md, layout, hard rules applied here, build and docs.
openings-mcp AGENTS.md
Instructions for amikai/openings-mcp, a project described as: 💼 One MCP server to search job boards and company career sites.
uspto-cli CLAUDE.md
Instructions for smcronin/uspto-cli, covering uspto cli - project guide, what this is, architecture, key conventions and building.