rosetta local-db-grounding.instructions.md

rosetta local-db-grounding.instructions.md is an instructions file for GitHub Copilot from tikoci/rosetta. It costs 1,024 tokens per session, scanned A, original, MIT.

Instructions for checking which local SQLite database should be trusted when working with RouterOS documentation data. SQLite is a file-based database, and the latest CI release is treated as the shipped reference.

In plain words
What is it for?
Use them when syncing, extracting, or grounding work against ros-help.db in a checkout, especially before making claims about shipped data.
Why use it?
They prevent arbitrary or stale local data from supporting incorrect claims. They also describe how to safely synchronize the newest release database, including prereleases.

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/tikoci/rosetta/local-db-grounding
Clone the repo
git clone --depth 1 https://github.com/tikoci/rosetta

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 rosetta local-db-grounding.instructions.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/tikoci/rosetta/local-db-grounding.svg)](https://agentmods.dev/instructions/tikoci/rosetta/local-db-grounding)
Your own site
<a href="https://agentmods.dev/instructions/tikoci/rosetta/local-db-grounding"><img src="https://agentmods.dev/badge/instructions/tikoci/rosetta/local-db-grounding.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,024 This file is loaded in full into every session.
When invoked 1,024 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.01024 $0.01024
Opus 5 $0.00512 $0.00512
Sonnet 5 $0.00205 $0.00205
Haiku 4.5 $0.00102 $0.00102

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

Security

Grade A, and why

rosetta local-db-grounding.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/instructions/local-db-grounding.instructions.md · 62 lines

How it starts

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

Local DB grounding

Dev mode (resolveDbPath → project root) serves the repo-root ros-help.db — a git-ignored file whose contents are arbitrary local state. It is not trusted by default. Before grounding any claim about shipped data on it, verify it.

The rule

  • The latest CI-built release DB is the source of truth for grounding claims. It is what bunx @tikoci/rosetta consumers actually get. make db-sync (scripts/db-sync.ts) fetches it into the resolved path (atomic replace — safe while an MCP server holds the old file open).
    • It does not use --refresh: that pins the URL to package.json's version, which in a checkout is a CI-rewritten placeholder (v0.11.0-rc.0) with no release, and falls back to /releases/latest — the newest stable, which lags the prerelease schema. db-sync instead uses gh to find the newest release (prereleases included) that actually ships ros-help.db.gz, then reuses the hardened downloadDb() (schema/content validation + stale-sidecar cleanup + atomic swap) via its urlsOverride param. Requires the gh CLI. Keep it this way.
  • make extract produces an unstamped local working DB — for extraction and pipeline work, not for claims about shipped data. db-doctor reports it as unstamped; that is expected, not a failure to "fix" by re-extracting.
  • Verify before trusting. make db-doctor (or bun run db:doctor) prints the resolved path + db_meta provenance + a grounding verdict and exits non-zero when not ok. In-session, one routeros_stats call returns the same provenance.grounding block — prefer it over shelling into sqlite.

The verdict (classifyDbGrounding, src/paths.ts)

Pure function, shared by routeros_stats (getDbStats), MCP startup, and db-doctor. Status precedence:

status meaning typical fix
schema_mismatch PRAGMA user_version ≠ code SCHEMA_VERSION make db-sync
internal_inconsistent db_meta.schema_version ≠ pragma — a corpus bumped in place by initDb(); provenance no longer describes the bytes (the #94 "Frankenstein") make db-sync
unstamped neither release_tag nor source_commit — a local make extract build fine for extraction; make db-sync to ground
provenance_incomplete claims release identity but is missing one of the four CI stamps (release_tag/source_commit/built_at/schema_version), or a stamped version that won't parse — fail closed make db-sync
tag_behind release_tag base version behind the checkout make db-sync
ok all four stamps present, schema coherent, tag current

Read the full file on GitHub · 62 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 · 62 lines · 1,024 tokens per session scan A eb704903baca

Subscribe to this mod's changes

rosetta local-db-grounding.instructions.md is an instructions file published in the GitHub repository tikoci/rosetta (43 stars, last pushed 18d ago), licensed MIT. It adds 1,024 tokens to every session, about $0.0051 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.

Related

Other instructions, from other repositories

apple-health-mcp AGENTS.md

Instructions for neiltron/apple-health-mcp, covering repository guidance, project, validate changes, code map and invariants.

neiltron/apple-health-mcp · 561 tokens

bun-pg-mcp AGENTS.md

AGENTS.md instructions for igoraguiar/bun-pg-mcp, covering agents.md, project context, tech stack, directory map and commands.

igoraguiar/bun-pg-mcp · 725 tokens

bun-mcp copilot-instructions.md

Copilot instructions for TomasHubelbauer/bun-mcp, covering github copilot instructions for the bun-mcp repository and formatting.

TomasHubelbauer/bun-mcp · 253 tokens

invoice-builder copilot-instructions.md

Copilot instructions for piratuks/invoice-builder, a project described as: Invoice and quotation builder desktop app with PDF export, designed for small businesses and freelancers. Create, manage, and export invoices and quotes easily using a local database in an Electron-based app.

piratuks/invoice-builder · 1,320 tokens

mcp-server-excel documentation-structure.instructions.md

Instructions for sbroenne/mcp-server-excel, covering documentation structure & standards, 📁 documentation hierarchy, root level - essential user-facing only, docs/ - canonical documentation and specs/ - feature specifications.

sbroenne/mcp-server-excel · 1,534 tokens

mcp-server-powerpoint mcp-server-guide.instructions.md

Instructions for sbroenne/mcp-server-powerpoint, covering mcp server development guide, llm-facing content rules, two kinds of tools: hand-written vs. generated, implementation pattern: single hand-written dispatch tool and error handling (mandatory).

sbroenne/mcp-server-powerpoint · 1,737 tokens