documcp copilot-instructions.md

documcp copilot-instructions.md is an instructions file for GitHub Copilot from tosin2013/documcp. It costs 1,894 tokens per session, scanned A, original, MIT.

Developer instructions for DocuMCP, a GitHub Pages documentation server with tools for deployment, code analysis, and a knowledge graph, which stores connected facts and past results.

In plain words
What is it for?
They are for building and maintaining DocuMCP tools that analyze repositories, deploy documentation, and retain searchable analysis results.
Why use it?
They establish consistent validation, response formatting, temporary resources, and memory storage across the server’s tools.

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

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 documcp copilot-instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/tosin2013/documcp/copilot-instructions.svg)](https://agentmods.dev/instructions/tosin2013/documcp/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/tosin2013/documcp/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/tosin2013/documcp/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,894 This file is loaded in full into every session.
When invoked 1,894 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.01894 $0.01894
Opus 5 $0.00947 $0.00947
Sonnet 5 $0.00379 $0.00379
Haiku 4.5 $0.00189 $0.00189

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

Security

Grade A, and why

documcp 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 4d 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 · 209 lines

How it starts

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

DocuMCP AI Coding Agent Instructions

DocuMCP is an intelligent MCP server for GitHub Pages documentation deployment with 45+ tools, Knowledge Graph memory system, and AST-based code analysis.

Architecture Essentials

MCP Server Design (src/index.ts)

  • Stateless operation: Each tool analyzes current state; no persistent session data
  • Resource storage: Temporary session context in resourceStore Map with URIs like documcp://analysis/{id}
  • Response format: ALL tools MUST use formatMCPResponse() from src/types/api.ts returning MCPToolResponse
  • Memory integration: Tools auto-store results in JSONL (.documcp/memory/) and query historical data

Tool Implementation Pattern

Every tool follows this structure:

  1. Zod schema for input validation (e.g., inputSchema.parse())
  2. Business logic with error handling
  3. Return via formatMCPResponse({ success, data, metadata, recommendations?, nextSteps? })
  4. Store result as resource: storeResourceFromToolResult(result, 'analysis', analysis.id)

Example (see src/tools/analyze-repository.ts):

const inputSchema = z.object({
  path: z.string(),
  depth: z.enum(["quick", "standard", "deep"]).optional(),
});
export async function analyzeRepository(
  args: unknown,
): Promise<MCPToolResponse> {
  const input = inputSchema.parse(args);
  // ... logic ...
  return formatMCPResponse({
    success: true,
    data: analysis,
    metadata: { toolVersion, executionTime, timestamp },
  });
}

Knowledge Graph Memory (src/memory/)

  • Entities: Project, User, Configuration, Technology, CodeFile, DocumentationSection (see src/memory/schemas.ts)
  • Relationships: project_uses_technology, project_deployed_with, similar_to, documents, etc.
  • Storage: .documcp/memory/knowledge-graph-entities.jsonl and knowledge-graph-relationships.jsonl
  • Integration: Use createOrUpdateProject(), getProjectContext(), trackDeployment() from src/memory/kg-integration.ts

Read the full file on GitHub · 209 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. 4d ago First seen · 209 lines · 1,894 tokens per session scan A c0823797286e

Subscribe to this mod's changes

documcp copilot-instructions.md is an instructions file published in the GitHub repository tosin2013/documcp (9 stars, last pushed 1mo ago), licensed MIT. It adds 1,894 tokens to every session, about $0.0095 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.