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/cloudflare/artifact-fs/agents-mdgit clone --depth 1 https://github.com/cloudflare/artifact-fsWhat 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.00821 | $0.00821 |
| Opus 5 | $0.00411 | $0.00411 |
| Sonnet 5 | $0.00164 | $0.00164 |
| Haiku 4.5 | $0.00082 | $0.00082 |
Grade A, and why
artifact-fs AGENTS.md 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 — 47 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Repository-specific guidance for artifact-fs.
Code review rules
- Flag credentials in Git CLI arguments or unredacted logs. Pass credentials through the environment-based helper in
internal/gitstore/gitstore.go, and redact log output withauth.RedactString. - Flag blob bytes converted to
string. KeepBlobToCachebinary-safe by streaminggit cat-file --batchoutput to disk. - Keep
GIT_NO_LAZY_FETCH=1ongit cat-file --batch-checkinbatchResolveSizes. Removing it turns size resolution in blobless clones into network round-trips. - Normalize paths only with
model.CleanPath(). Do not add local wrappers. - Use the canonical
model.*interfaces for snapshot, overlay, hydrator, and gitstore access. Do not add subset interfaces around them.
Architecture
cmd/artifact-fsis the only binary entrypoint.internal/cliwires commands ontodaemon.Service.internal/daemonowns repo lifecycle: registry sync, snapshot publish, overlay reconcile, FUSE mount, watcher, refresh loop.internal/fusefsis the merged view and writable filesystem layer.internal/gitstoreis the performance-sensitive git wrapper; most easy-to-break invariants live there.internal/snapshotandinternal/overlayare persistent SQLite-backed stores.
Runtime contracts
ARTIFACT_FS_ROOTis the state root.artifact-fs daemon --rootis the mount root. They are different things.add-repois one-shot by default: register repo, clone blobless, build the initial snapshot, then exit. It does not mount FUSE or start background goroutines.add-repo --asynconly registers prepare state. The daemon mounts a gated placeholder, prepares clone/fetch and snapshot in the background, then opens the gate and starts watcher/refresh.daemonis long-running: it mounts registered repos and starts watcher, refresh, and hydrator workers.git.CloneBloblessalready populates the git index withread-tree HEAD; be careful about extra index resets because they can discard staged state.
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 · 47 lines · 821 tokens per session scan A 6a50da478d04
artifact-fs AGENTS.md is an instructions file published in the GitHub repository cloudflare/artifact-fs (1,129 stars, last pushed 21d ago), licensed Apache-2.0. It adds 821 tokens to every session, about $0.0041 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 instructions, from other repositories
airstore AGENTS.md
AGENTS.md instructions for beam-cloud/airstore, covering airstore, architecture, key packages, build and deploy and gateway hot-reloads automatically.
frankenfs AGENTS.md
AGENTS.md instructions for Dicklesworthstone/frankenfs, covering agents.md — frankenfs (ffs), rule 0 - the fundamental override prerogative, rule number 1: no file deletion, git branch: only use main, never master and toolchain: rust & cargo.
rustfs CLAUDE.md
Instructions for rustfs/rustfs, covering rustfs — claude.md, commands, where to look (do not duplicate here) and domain conventions worth knowing up front.
agents AGENTS.md
AGENTS.md instructions for cloudflare/agents, covering agents.md, project overview, repository structure, nested agents.md files and setup.
cloudflare-workers-nextjs-saas-template AGENTS.md
Instructions for LubomirGeorgiev/cloudflare-workers-nextjs-saas-template, covering project context, vinext, general coding rules, control flow and comments.
scrapai-cli CLAUDE.md
Instructions for discourselab/scrapai-cli, covering claude.md, 1. who you are, 2. hard rules, 3. tools and 4. before you start: confirm the project.