verify

verify is a skill for Claude Code from inflexa-ai/inflexa. It costs 57 tokens per session (644 once invoked), scanned A, original, Apache-2.0.

Verify harness changes at the package boundary — build dist, link the package into a scratch consumer, drive runAgent/tools/gateways against a real Postgres via podman. Use after changing @inflexa-ai/harness when the CLI does not yet consume the change.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Install with agentmods
npx agentmods add skills/inflexa-ai/inflexa/verify
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.

Any agent
npx skills add inflexa-ai/inflexa --skill verify
Clone the repo
git clone --depth 1 https://github.com/inflexa-ai/inflexa

Made for: Claude Code.

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 verify

README.md
[![agentmods](https://agentmods.dev/badge/skills/inflexa-ai/inflexa/verify/github.svg)](https://agentmods.dev/skills/inflexa-ai/inflexa/verify)
Your own site
<a href="https://agentmods.dev/skills/inflexa-ai/inflexa/verify"><img src="https://agentmods.dev/badge/skills/inflexa-ai/inflexa/verify/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for verify

Your own site · 80×15
<a href="https://agentmods.dev/skills/inflexa-ai/inflexa/verify"><img src="https://agentmods.dev/badge/skills/inflexa-ai/inflexa/verify.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 644 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin unknown 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.1 $0.00057 $0.00644
Opus 5 $0.00028 $0.00322
Sonnet 5 $0.00011 $0.00129
Haiku 4.5 $0.00006 $0.00064

Measured today against content hash 12eead8cfc83, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

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 today.

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.

harness/.claude/skills/verify/SKILL.md · 45 lines

How it starts

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

Verifying @inflexa-ai/harness at the package boundary

The harness is a library: its surface is the npm package export, not a CLI or server. The embedding CLI consumes the published harness, so an uncommitted harness change is only observable by importing the freshly built package.

Recipe that works

  1. Build: cd harness && npm run build (tsc → dist/), then bun link.
  2. Postgres (this machine uses podman, not Docker Desktop):
    podman run -d --name verify-pg -e POSTGRES_USER=cortex -e POSTGRES_PASSWORD=dev \
      -e POSTGRES_DB=cortex -p 127.0.0.1:5599:5432 pgvector/pgvector:pg18
    podman exec verify-pg pg_isready -U cortex   # poll until ready (~3s)
    
  3. Scratch consumer in the session scratchpad: package.json with "type": "module" and deps neverthrow + zod (match harness majors), then bun link @inflexa-ai/harness && bun install. Run scripts with node (harness runtime is Node; bun is test-only).
  4. Import ONLY from @inflexa-ai/harness (the barrel). Useful exports: createPool, initCortexState(pool), runAgent, defineTool, passthroughStep, makeLocalAuth, plus whatever seam is under test.

Gotchas

  • createPool takes port as a string and requires sslMode: "disable" for a local container — default config path expects SSL.
  • A fake AgentChat must return neverthrow okAsync({message, finishReason}) and SHOULD honor the signal argument (if (signal?.aborted) throw signal.reason) — the real AI SDK provider does, and abort-path behavior is wrong without it (chat wires no isFatalLoopError; cancellation exits via the provider call).
  • Session shape: {identity:{user}, scope:{kind:"analysis", analysisId, threadId}, provenance:{agentId, callPath:[agentId]}, auth: makeLocalAuth()}.
  • Spawned helper processes exit fast — guard child.exitCode !== null before awaiting its exit event, or the await never settles (Node exit code 13).
  • TRUNCATE cortex_* tables between runs for idempotent assertions.
  • Cross-process claims (polling gateways, ledgers) deserve a real second process: spawn a sibling node script with its own pool.

Read the full file on GitHub · 45 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. today First seen · 45 lines · 57 tokens per session scan A 12eead8cfc83

Subscribe to this mod's changes

verify is a skill published in the GitHub repository inflexa-ai/inflexa (33 stars, last pushed yesterday), licensed Apache-2.0. It adds 57 tokens to every session and 644 once invoked, about $0.0003 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-09-09.

Related

Other skills, from other repositories

methylkit-database-mode-configuration

Use when when analyzing DNA methylation data from bisulfite sequencing (RRBS, target-capture, or whole-genome) and the dataset is too large to fit comfortably in memory, or when you need to process multiple large samples sequentially without reloading data.

HolobiomicsLab/asb-skill-collections · 63 tokens

dna-methylation-file-format-handling

Use when you have CpG methylation call files (from Bismark or MethylDackel) and need to load them into R for differential methylation analysis, but anticipate memory constraints or want to avoid loading the entire dataset into memory.

HolobiomicsLab/asb-skill-collections · 59 tokens

biosymphony-structure-factory

Use when planning structural biology campaigns, binder-design triage, model comparison, structure mapping, RunPod or cloud GPU stage contracts, or Symphony or Linear task packs for long-running biological agent work.

BioSymphony/structure-factory · 47 tokens

binder-lane-round

Plan and run study-shaped protein-binder rounds with interchangeable toolchains, execution profiles, license gates, output checks, and result boundaries.

BioSymphony/structure-factory · 32 tokens

alphafold

Skill for protein structure prediction and analysis with AlphaFold. Use this skill whenever a user wants to predict or fetch a protein 3D structure, download structures from the AlphaFold Database (AFDB), run ColabFold for novel proteins, parse pLDDT confidence scores or PAE (predicted aligned error) from AlphaFold…

naity/FM4Life · 141 tokens

esm2

Skill for working with ESM2 protein language models from Meta FAIR. Use this skill whenever the user wants to generate protein embeddings or representations, score variant effects or predict mutation fitness, run contact prediction, or use ESMFold for structure prediction. Also trigger when the user mentions ESM2…

naity/FM4Life · 86 tokens