amem copilot-instructions.md

amem copilot-instructions.md is an instructions file for GitHub Copilot from amanasmuei/amem. It costs 2,416 tokens per session, scanned A, original, MIT.

Project instructions for amem, an MCP server that gives AI coding tools searchable, persistent memory stored in SQLite, a small database. They document the project's commands, architecture, modules, and data flow.

In plain words
What is it for?
Use them when working on amem. They help run builds and tests, understand the database layer, and trace changes through the server's tools, resources, and prompts.
Why use it?
They give a coding agent the project-specific information needed to build, test, and change the code consistently. This reduces guesswork about how parts of the server depend on one another.

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

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

README.md
[![agentmods](https://agentmods.dev/badge/instructions/amanasmuei/amem/copilot-instructions.svg)](https://agentmods.dev/instructions/amanasmuei/amem/copilot-instructions)
Your own site
<a href="https://agentmods.dev/instructions/amanasmuei/amem/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/amanasmuei/amem/copilot-instructions.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,416 This file is loaded in full into every session.
When invoked 2,416 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.02416 $0.02416
Opus 5 $0.01208 $0.01208
Sonnet 5 $0.00483 $0.00483
Haiku 4.5 $0.00242 $0.00242

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

Security

Grade A, and why

amem 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 · 175 lines

How it starts

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

Copilot Instructions for amem

Build, Test, Lint

npm run build                                # tsc — must produce zero errors
npm test                                     # vitest run — full suite
npx vitest run tests/memory.test.ts          # single test file
npx vitest run -t "should compute score"     # single test by name
npm run dev                                  # tsc --watch

No linter is configured. The TypeScript compiler (strict: true) is the primary safety net.

Architecture

amem is an MCP server that gives AI coding tools persistent, searchable memory backed by SQLite. It communicates over stdio and exposes 23 tools, 6 resources, and 2 prompts via the MCP protocol.

Module dependency chain

index.ts  — entry point: MCP server init, project detection, resource/prompt registration, auto-backup
  ├── database.ts  — SQLite layer: 7 tables, prepared statements, FTS5 triggers, migrations
  │     └── transaction(), resolveId(), resolveReminderId(), getAllRelations() — centralized DB ops
  ├── tools/       — 23 MCP tool registrations, split by domain:
  │     ├── index.ts      — registerTools() orchestrator + re-exports (TYPE_ORDER, formatAge)
  │     ├── helpers.ts    — shared constants (SHORT_ID_LENGTH, CHARACTER_LIMIT) and utilities
  │     ├── memory.ts     — 12 core tools: store, recall, detail, context, forget, extract, stats, export, inject, consolidate, patch, import
  │     ├── versions.ts   — memory_versions tool
  │     ├── log.ts        — memory_log, memory_log_recall, memory_log_cleanup tools
  │     ├── graph.ts      — memory_relate, memory_since, memory_search tools
  │     └── reminders.ts  — reminder_set, reminder_list, reminder_check, reminder_complete tools
  ├── memory.ts    — ranking engine (scoring, consolidation, recall, explain mode)
  ├── schemas.ts   — Zod output schemas (discriminated unions)
  ├── embeddings.ts — HuggingFace all-MiniLM-L6-v2 (optional, graceful fallback)
  └── cli.ts  — standalone CLI entry point (read-only DB operations)

Read the full file on GitHub · 175 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 · 175 lines · 2,416 tokens per session scan A 6ac00a8d451d

Subscribe to this mod's changes

amem copilot-instructions.md is an instructions file published in the GitHub repository amanasmuei/amem (2 stars, last pushed 4mo ago), licensed MIT. It adds 2,416 tokens to every session, about $0.0121 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.