revise-mcp copilot-instructions.md

revise-mcp copilot-instructions.md is an instructions file for GitHub Copilot from davidfstr/revise-mcp. It costs 642 tokens per session, scanned A, original, MIT.

A set of project instructions for Revise MCP, an MCP server that provides code-refactoring tools. It documents how to build, test, run, structure, and type the Python project.

In plain words
What is it for?
Use it when changing Revise MCP code, adding refactoring tools, running its tests, or starting its server.
Why use it?
It gives a coding agent the project's conventions and commands, reducing guesses about architecture and verification.

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/davidfstr/revise-mcp/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/davidfstr/revise-mcp

Made for: GitHub Copilot.

Wrote 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.

agentmods badge for revise-mcp copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/davidfstr/revise-mcp/copilot-instructions.svg)](https://agentmods.dev/instructions/davidfstr/revise-mcp/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/davidfstr/revise-mcp/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/davidfstr/revise-mcp/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 642 This file is loaded in full into every session.
When invoked 642 The same file — it is already loaded in full.
Security scan A 0 findings. 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.00642 $0.00642
Opus 5 $0.00321 $0.00321
Sonnet 5 $0.00128 $0.00128
Haiku 4.5 $0.00064 $0.00064

Measured 3d ago against content hash 89a3a4a5b34f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

revise-mcp copilot-instructions.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 3d 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.

.github/copilot-instructions.md · 63 lines

How it starts

The opening of the file, as written. The whole thing — 63 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Project Guidelines

Overview

Revise MCP is an MCP (Model Context Protocol) server providing code refactoring tools that use substring matching with a marker instead of line numbers — solving the problem of AI agents being unable to reliably count characters or coordinates. See doc/DESIGN.md for architecture and design principles.

Build and Test

poetry install              # Create/update .venv
poetry run pytest tests/    # Run all tests
poetry run python -m revise # Run server (stdio mode)

Requires Python 3.14+ and Poetry.

Architecture

  • src/revise/server.py — Creates FastMCP instance; tools auto-register via @mcp.tool() decorators on import
  • src/revise/tools/ — One file per tool (move_string_in_file.py, indent_dedent.py)
  • src/revise/match.py — Shared -marker matching logic (parse, find, validate, expand context)
  • src/revise/indent.py — Indent style auto-detection
  • src/revise/__main__.py — CLI entrypoint; dispatches to mcp.run()

Conventions

Typing

Full type hints on all functions. Tool parameters use Annotated[type, "description"] — FastMCP parses these for schema generation.

Tool functions

  • Must be async def (FastMCP requirement)
  • Return JSON strings: {"success": true, ...} or {"success": false, "message": ...}
  • Never raise exceptions to the caller — encode errors in the JSON response
  • All boundary inputs are matched against the pre-edit file state

Error responses

Return rich error objects with disambiguation hints:

  • matchingLines: {line_num: context} when multiple matches found
  • subContextMatchingLines for partial sub-context fallback hints

Naming

  • snake_case functions; internal helpers prefixed with _
  • Test classes: class TestModuleName
  • Test helpers: _write(tmp_path, name, content) for temp files, _call(...) wraps tool call + JSON parse

Tests

  • Framework: pytest + pytest-asyncio
  • Pattern: create temp file → call tool → assert JSON response + file content
  • All test methods are async def with @pytest.mark.asyncio

Read the full file on GitHub · 63 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. 3d ago First seen · 63 lines · 642 tokens per session scan A 89a3a4a5b34f

Subscribe to this mod's changes

revise-mcp copilot-instructions.md is an instructions file published in the GitHub repository davidfstr/revise-mcp (0 stars, last pushed 4mo ago), licensed MIT. It adds 642 tokens to every session, about $0.0032 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-31.