Borrowing it
Nothing to install: this file belongs to agigante80/actual-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/agigante80/actual-mcp-server/main/.github/instructions/tool-files.instructions.mdgit clone --depth 1 https://github.com/agigante80/actual-mcp-serverWrote 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/agigante80/actual-mcp-server/tool-files)<a href="https://agentmods.dev/instructions/agigante80/actual-mcp-server/tool-files"><img src="https://agentmods.dev/badge/instructions/agigante80/actual-mcp-server/tool-files.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.1 | $0.00789 | $0.00789 |
| Opus 5 | $0.00394 | $0.00394 |
| Sonnet 5 | $0.00158 | $0.00158 |
| Haiku 4.5 | $0.00079 | $0.00079 |
Grade A, and why
actual-mcp-server tool-files.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 8d 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.
What it actually says
Rules for MCP tool files (src/tools/*.ts)
- Tool name MUST follow
actual_{domain}_{action}snake_case convention - File name MUST match the tool name (e.g.
accounts_create.tsforactual_accounts_create) - InputSchema MUST use
z.object({...})from Zod - Use types from
CommonSchemasinsrc/lib/schemas/common.tsfor shared fields:- Dates →
CommonSchemas.date(validates YYYY-MM-DD) - Account UUIDs →
CommonSchemas.accountId - Amounts →
CommonSchemas.amountCents(integer cents, never decimal dollars)
- Dates →
- The
callfunction MUSTInputSchema.parse(args)before any other logic - NEVER wrap an
adapter.*call in a session of your own.adapter.*methods already open one, and the API mutex (withApiLockinactual-adapter.ts) is NOT reentrant, so nesting deadlocks. What you observe is a ~30s stall thenActual API operation timed out after 30000ms (ACTUAL_OP_TIMEOUT_MS), because #270 bounds each operation inside the lock and that timeout is what breaks the deadlock. Read that error as a probable nesting bug, not a slow server. - Default to calling
adapter.*methods. Do NOT reach for@actual-app/apijust to avoid a wrapper. - Importing
@actual-app/apidirectly is correct in one case: when you are already INSIDE a single adapter session callback and need more than one operation in that one cycle. Then use the raw functions, because calling back throughadapter.*from in there is the nesting deadlock above. Exactly ONE tool file does this today (see CLAUDE.md):budget_updates_batch.ts: raw calls insideadapter.batchBudgetUpdates(...), a batch of pure writes
- A read-then-write guard belongs in the ADAPTER, not the tool (#371, #376). Four tool files used to hold one inside their own
withWriteSession; all four were migrated. A guard in the tool costsretryon the reads, bypasses the observability call site, and leaves the matchingadapter.*method reachable and UNGUARDED, which is howadapter.deleteRulesat callerless while silently failing to delete a schedule-owned rule. The single-cycle property does not require the raw api:queueWriteOperationholds the lock for its whole body - When you move a guard into the adapter, fix its test's seam too. Stubbing
adapter.withWriteSessionas a pass-through stubs away the guard itself. Use_setSkipApiInitForTests(true)with the RAW api functions stubbed BEFORE the adapter import (it destructures them at module load), and assert the cycle count with_getWriteQueueBatchCountForTests() - Error messages must be actionable: include entity type, ID, and a suggested next tool
- After creating a tool file, you MUST:
- Export it from
src/tools/index.ts - Add the name to
IMPLEMENTED_TOOLSinsrc/actualToolsManager.ts - Run
npm run buildfirst (verify-tools reads fromdist/, notsrc/) - Run
npm run verify-toolsto confirm registration
- Export it from
- To check uncovered Actual API surface before implementing:
npm run check:coverage(prints every@actual-app/apimethod against the current tool list; read-only, safe to run)
On conflict,
CLAUDE.mdis authoritative over this file. It carries the same rules with fuller rationale.
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.
- 8d ago First seen · 31 lines · 789 tokens per session scan A 5e3d67511a73
actual-mcp-server tool-files.instructions.md is an instructions file published in the GitHub repository agigante80/actual-mcp-server (50 stars, last pushed yesterday), licensed MIT. It adds 789 tokens to every session, about $0.0039 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-30.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
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.
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).
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).
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.
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.