WebCrypt copilot-instructions.md

A project guide for an AI coding assistant that records tasks, decisions, progress, and blockers in a shared state graph.

In plain words
What is it for?
It is for starting tasks, checking dependencies and blockers, documenting decisions, tracking new files, and marking completed work.
Why use it?
It helps the assistant understand the project before making changes and keeps important work context from being lost.

Instructions file for GitHub Copilot

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/putervision/webcrypt/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/putervision/WebCrypt

Made for: GitHub Copilot.

Per session 2,464 This file is loaded in full into every session.
When invoked 2,464 The same file — it is already loaded in full.
Security scan B 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.02464 $0.02464
Opus 5 $0.01232 $0.01232
Sonnet 5 $0.00493 $0.00493
Haiku 4.5 $0.00246 $0.00246

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

Security

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:
Origin

Copies of this mod

1 near-identical copy found in the catalogue:

.github/copilot-instructions.md · 144 lines

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:

  1. get_project_summary — Always run this first to understand current project state, active branches, and overall progress.
  2. find_blockers — Identify any active blockers preventing progress.
  3. list_nodes — Find pending tasks, past decisions, or milestones.
  4. 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 using add_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 using add_edge(type: "produces").

3. Workflow Pattern

  1. Start of session: Run get_project_summary and find_blockers to align on current status.
  2. Task decomposition: Decompose user requests into tasks and add them to the graph.
  3. Execution: Mark tasks as "in_progress", document design decisions as they occur, and log blockers if you hit any obstacles.
  4. 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):

  1. Inspect the Codebase: Read the README and core files to understand the roadmap and architecture.
  2. Scaffold the Roadmap: Create a plan node (e.g., "Project Roadmap") and add milestone nodes representing key target phases, connecting them using part_of edges.
  3. Scaffold Architecture: Create decision nodes representing core technical choices (e.g., choice of databases, frameworks) and link them to the milestones/tasks using decided_in edges.

Read the full file on GitHub · 144 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 · 144 lines · 2,464 tokens per session scan B 03505fc6bf6b

Subscribe to this mod's changes

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.

Related

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.

EvolvingLMMs-Lab/engram · 463 tokens

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.

vinikjkkj/zapo · 12,795 tokens

emilia-protocol CLAUDE.md

Instructions for emiliaprotocol/emilia-protocol, covering emilia protocol - repo guide, required context, critical, build & ship and outbound & claims.

emiliaprotocol/emilia-protocol · 852 tokens

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.

emiliaprotocol/emilia-protocol · 63 tokens

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…

emiliaprotocol/emilia-protocol · 68 tokens

portal-tunnel AGENTS.md

Instructions for gosuda/portal-tunnel, covering agents.md, development principles, project principles and verification.

gosuda/portal-tunnel · 381 tokens