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/putervision/webcrypt/copilot-instructionsgit clone --depth 1 https://github.com/putervision/WebCryptWhat 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.02464 | $0.02464 |
| Opus 5 | $0.01232 | $0.01232 |
| Sonnet 5 | $0.00493 | $0.00493 |
| Haiku 4.5 | $0.00246 | $0.00246 |
Grade B, and why
WebCrypt copilot-instructions.md scanned grade B 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.
Reads agent configuration directoriesmediumAgent snooping
.claude/, .codex/, .gemini/ hold keys, settings and other credentials a mod has no legitimate need for.
- **Google Antigravity (`~/.gemini/config/config.json`)**: Add these rules to your `"globalPermissionGrants"` -> `"allow"` list: Copies of this mod
1 near-identical copy found in the catalogue:
- WebCrypt CLAUDE.md — 100% identical, 0 lines differ
How it starts
The opening of the file, as written. The whole thing — 144 lines — stays where its author put it; the contents beside it link to each section on GitHub.
State Graph (state-graph-mcp)
This project tracks workflow state, tasks, design decisions, and blockers using state-graph-mcp.
1. Priority Order
Before doing any coding or investigation:
get_project_summary— Always run this first to understand current project state, active branches, and overall progress.find_blockers— Identify any active blockers preventing progress.list_nodes— Find pending tasks, past decisions, or milestones.trace_dependencies— Trace what depends on or blocks a task.
2. When to Write to the Graph
You MUST update the graph as you work:
- Starting a new task: Create a node with
add_node(type: "task", title: "..."). - Making a design or implementation decision: Document it with
add_node(type: "decision", title: "...", metadata: { "rationale": "..." }). - Encountering a blocker: Record the blocker with
add_node(type: "blocker", ...)and connect it to the blocked task usingadd_edge(type: "blocks", source_id: blocker_id, target_id: task_id). - Completing a task: Update the status to done using
update_node(id: task_id, status: "done"). - Creating/generating a new file: Create an artifact node with
add_node(type: "artifact", ...)and connect it usingadd_edge(type: "produces").
3. Workflow Pattern
- Start of session: Run
get_project_summaryandfind_blockersto align on current status. - Task decomposition: Decompose user requests into tasks and add them to the graph.
- Execution: Mark tasks as "in_progress", document design decisions as they occur, and log blockers if you hit any obstacles.
- Resolution: Mark tasks as "done", document completed artifacts, and resolve blockers.
4. Codebase Seeding on Initialization
If the project was just initialized or is missing high-level structure (Plans, Milestones, Decisions):
- Inspect the Codebase: Read the README and core files to understand the roadmap and architecture.
- Scaffold the Roadmap: Create a
plannode (e.g., "Project Roadmap") and addmilestonenodes representing key target phases, connecting them usingpart_ofedges. - Scaffold Architecture: Create
decisionnodes representing core technical choices (e.g., choice of databases, frameworks) and link them to the milestones/tasks usingdecided_inedges.
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 · 144 lines · 2,464 tokens per session scan B 03505fc6bf6b
WebCrypt copilot-instructions.md is an instructions file published in the GitHub repository putervision/WebCrypt (26 stars, last pushed 10d ago), licensed MIT. It adds 2,464 tokens to every session, about $0.0123 per session on Opus 5. A static security scan graded it B with 1 finding (reads agent configuration directories). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
engram AGENTS.md
AGENTS.md instructions for EvolvingLMMs-Lab/engram, covering agents.md, repository management, toolchain, common commands and dependencies.
zapo AGENTS.md
Instructions for vinikjkkj/zapo, covering agents.md – development guide for zapo, 1. non-negotiable principles, source of truth: wa-web/ and wa-mob/, 2. current project layout and monorepo conventions.
emilia-protocol CLAUDE.md
Instructions for emiliaprotocol/emilia-protocol, covering emilia protocol - repo guide, required context, critical, build & ship and outbound & claims.
emilia-protocol copilot-instructions.md
Instructions for emiliaprotocol/emilia-protocol: Read AGENTS.md and AICONTEXT.md before proposing changes. Current evidence and provenance are in public/.well-known/emilia-context.json. Treat archived, staged, private, and outreach documents as non-authoritative for current behavior or standards status.
emilia-protocol GEMINI.md
Instructions for emiliaprotocol/emilia-protocol: Read AGENTS.md and AICONTEXT.md before analyzing or editing this repository. Use public/.well-known/emilia-context.json for current evidence counts and provenance. Do not infer current behavior or standards status from archived, staged, private, or randomly sampled…
portal-tunnel AGENTS.md
Instructions for gosuda/portal-tunnel, covering agents.md, development principles, project principles and verification.