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/riseup-oss/mcp/copilot-instructionsgit clone --depth 1 https://github.com/riseup-oss/mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/riseup-oss/mcp/copilot-instructions)<a href="https://agentmods.dev/instructions/riseup-oss/mcp/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/riseup-oss/mcp/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01123 | $0.01123 |
| Opus 5 | $0.00562 | $0.00562 |
| Sonnet 5 | $0.00225 | $0.00225 |
| Haiku 4.5 | $0.00112 | $0.00112 |
Grade A, and why
mcp copilot-instructions.md scanned grade A 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 5d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
5. **Documentation accuracy.** `docs/` and `README.md` give end users curl examples that have to actually work. Wrong path, wrong header, stale env-var name → flag. How it starts
The opening of the file, as written. The whole thing — 53 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Copilot Code Review Instructions — @riseup-oss/mcp
Context
This repository is the official RiseUp MCP server — a small TypeScript package distributed via npm to end users (Claude Desktop, Base44, Claude Agent SDK, other MCP clients). It runs on the user's machine, holds the user's Personal Access Token in an environment variable, and calls the RiseUp Exposed API at https://input.riseup.co.il/api/external/* to fetch the user's own financial data.
Key facts that shape what feedback matters:
- Internet-distributed package. Anyone with the published npm package runs this code. A compromise here ships directly to customers.
- Customer data passes through. Budget / transactions / balances flow through this process. Anything that logs, persists, transmits to a third party, or otherwise leaks the response body is a serious finding.
- PAT is a long-lived bearer secret. Logging it, embedding it in errors, sending it to any host besides the configured
RISEUP_API_BASE, or storing it on disk are critical issues. - Read-only API. This package never mutates RiseUp state. Anything that looks like a write call (
POST/PUT/DELETE/PATCH) is wrong unless explicitly for token management. - Tech stack: TypeScript, ESM (
"type": "module"),@modelcontextprotocol/sdk,zodfor input schemas,jest(with--experimental-vm-modules) for tests, Node 18+. - Architecture: stdio MCP server (
src/index.ts) registers tools (src/tools/*.ts) that call a thin HTTP client (src/client.ts) which usesfetchagainst the RiseUp API. No DB, no caching, no telemetry.
What feedback to share
Prioritize findings in roughly this order:
- Supply-chain / secrets. Hardcoded PATs/keys; a
console.logof headers or auth; afetchto a host other thanRISEUP_API_BASE; reading fromprocess.envfor anything beyondRISEUP_PATandRISEUP_API_BASE; writing to disk; opening sockets; spawning subprocesses; adding dependencies that aren't widely used or maintained. - Customer data hygiene. Logging response bodies; including bodies in error messages; persisting fetched data; sending data anywhere besides the MCP client's stdio. The package should be transparent — request in, response out, nothing on disk.
- MCP protocol correctness. Tool input schemas using
zod; tool descriptions that are accurate (Claude reads them to pick which tool to call); return shape{ content: [{ type: 'text', text }] }; error returns setisError: trueand put a useful message incontent[0].text. - Dependencies. Carets (
^) inpackage.json— we pin exact versions for supply-chain safety. New deps should be widely-used, recently-maintained, and necessary. Flag anything looking like name-squatting (reqquest,lodahs, etc.). - Documentation accuracy.
docs/andREADME.mdgive end users curl examples that have to actually work. Wrong path, wrong header, stale env-var name → flag. - Public API surface. Anything exported from
src/index.tsis part of our SDK contract. New top-level exports merit a note. - Test coverage of the HTTP client (
src/client.ts). Auth header, error mapping (401/403/429), URL construction. Don't be precious about coverage of pure-data tool wrappers.
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.
- 5d ago First seen · 53 lines · 1,123 tokens per session scan A 457fc4ac7464
mcp copilot-instructions.md is an instructions file published in the GitHub repository riseup-oss/mcp (22 stars, last pushed 1mo ago), licensed MIT. It adds 1,123 tokens to every session, about $0.0056 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
next.js AGENTS.md
Instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.