fuse AGENTS.md

Project instructions for agents working in php-workx/fuse, including epos ticket commands and non-interactive file operations.

In plain words
What is it for?
Use them when working on fuse with epos, or when copying, moving, or removing files from automated shell sessions.
Why use it?
They reduce stalled tasks caused by confirmation prompts and document how to find, claim, and close tickets.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/php-workx/fuse/agents-md
Clone the repo
git clone --depth 1 https://github.com/php-workx/fuse

Made for: Codex, OpenCode.

Per session 1,349 This file is loaded in full into every session.
When invoked 1,349 The same file — it is already loaded in full.
Security scan C 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured yesterday against content hash 1f7eac045363, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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
AGENTS.md · 146 lines

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=yes for non-interactive
  • ssh - use -o BatchMode=yes to fail instead of prompting
  • apt-get - use -y flag
  • brew - use HOMEBREW_NO_AUTO_UPDATE=1 env 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"

Read the full file on GitHub · 146 lines

Changes

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.

  1. yesterday First seen · 146 lines · 1,349 tokens per session scan C 1f7eac045363

Subscribe to this mod's changes

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.