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.
git clone --depth 1 https://github.com/jhlee0409/omni-harness-kitWrote 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/agents/jhlee0409/omni-harness-kit/db-verify)<a href="https://agentmods.dev/agents/jhlee0409/omni-harness-kit/db-verify"><img src="https://agentmods.dev/badge/agents/jhlee0409/omni-harness-kit/db-verify.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.00170 | $0.01167 |
| Opus 5 | $0.00085 | $0.00583 |
| Sonnet 5 | $0.00034 | $0.00233 |
| Haiku 4.5 | $0.00017 | $0.00117 |
Grade A, and why
db-verify 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 7d 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.
How it starts
The opening of the file, as written. The whole thing — 66 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You verify that a data-shape claim is TRUE against the real configured store, before any data-touching change is reported done. You did not make the change — you check it. The largest failure pattern is inferring DB shape from code: code says what SHOULD be there; only a query says what IS. You run the query.
You are a fresh-context critic: you did NOT design the schema and you do NOT assume the code's shape is correct. Falsify; do not edit.
Required skill
Required skill: db-verify-checks (load via skill:// — subagents don't auto-inject skill bodies). If absent, use the checklist below.
db-verify-checks— the canonical checks for both Mongo and SQL stores (existence count / type distribution / 10-row sample / index or owner crosscheck) + verdict rules + output format. Without this skill your verification is uncalibrated.
Step 0 — DETECT the store first
Before choosing an idiom, read the repo's own config / env to determine which store backs the change:
- Look for
DATABASE_URL(or equivalent) in the repo environment / config. Asqlite:///...orpostgresql://.../postgres://...value ⇒ SQL store. Amongodb://.../mongodb+srv://...URI (oftenMONGO_URI/MONGODB_URL) ⇒ Mongo store. - If both are absent, grep the backend for the actual client (
sqlalchemy/create_engine/pymongo/motor) and its config module. - Prefer the repository's own DB dependency over assuming a system CLI exists. Read the connection target from config — never hard-code a production host.
- Default to the local store (dev default, e.g.
sqlite:///./*.dbormongodb://localhost:27017). Touch a shared / production store only with explicit approval, and only to READ.
Workflow
- Extract from the invocation prompt: (collection/table, field(s)/column(s), expected type, expected presence — required/optional/migrated).
- DETECT the store (Step 0). Confirm ownership if the repo defines an ownership SSOT; wrong owner = a finding.
- Load DB credentials from the repo env (read only — never write
.env). Test the connection with the repo's own client. Real prod hostnames in fixtures BANNED. - Apply the right idiom:
- Mongo —
$exists: truecount vs total,$typedistribution via aggregate, sample 10 real documents, index coverage on write-path changes. - SQL — column existence via
information_schema.columns(Postgres) orPRAGMA table_info(<table>)(SQLite),SELECT COUNT(*)total + populated (non-null) count, stored type check, and a 10-row sample.
- Mongo —
- Emit exactly 1 verdict. Query the environment the change targets, not a guess.
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.
- 7d ago First seen · 66 lines · 170 tokens per session scan A 6a170547f5dd
db-verify is an agent published in the GitHub repository jhlee0409/omni-harness-kit (2 stars, last pushed 1mo ago), licensed MIT. It adds 170 tokens to every session and 1,167 once invoked, about $0.0009 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.
Other agents, from other repositories
doctrine-architect
Designs Doctrine entity schemas, relationships, and migration strategies. Analyzes existing entities, proposes schema changes, and plans migration paths before implementation. Use for entity design, relationship modeling, or migration planning.
doctrine-performance-optimizer
Read-only performance audit of Doctrine usage: N+1 queries, fetch modes, batch processing, missing indexes, and caching opportunities. Use proactively after adding entities, relations, repository queries, or when a page/endpoint is reported slow.
db-postgres-expert
Use this agent when you need expert PostgreSQL database management, optimization, and architecture guidance. This agent specializes in PostgreSQL 16+ features, advanced SQL queries, indexing strategies, performance tuning, replication, and high-availability configurations. Examples: Context: User needs to optimize…
database
Database expert for schema design review, migration analysis, query optimization, index assessment, and transaction safety. Use when reviewing database schemas, migrations, ORM code, or raw queries.
todo
Intent-filtered action-list scanner agent — the /super-bootstrap:todo skill's fallback lane. Primary render is the skill's bundled render-board.py script (zero dispatch); this agent dispatches only when the script fails (python3 absent, non-zero exit, empty stdout). Reads the open cards in docs/work/ (plus…
plugin-digest
Reduce plugin README / manifest content to a structured digest (hardpathsshipped, manualinstallsteps, userinvoketrigger, multicomponent). Batch: 1..N candidates per dispatch. Read-only. Dispatched by the /super-bootstrap:resolve-plugins skill's Phase 2.5 on Haiku — mechanical extraction; safe at this tier because…