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.
npx skills add amanning3390/flowstate-qmd --skill qmdgit clone --depth 1 https://github.com/amanning3390/flowstate-qmdWrote 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/skills/amanning3390/flowstate-qmd/qmd)<a href="https://agentmods.dev/skills/amanning3390/flowstate-qmd/qmd"><img src="https://agentmods.dev/badge/skills/amanning3390/flowstate-qmd/qmd.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.00030 | $0.00926 |
| Opus 5 | $0.00015 | $0.00463 |
| Sonnet 5 | $0.00006 | $0.00185 |
| Haiku 4.5 | $0.00003 | $0.00093 |
Grade A, and why
qmd 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.
How it starts
The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.
QMD for Coding Agents
FlowState-QMD is a local-first memory layer for coding agents. It turns markdown knowledge bases into project memory that is fast enough to feel built in.
What It Is Good At
- Repo memory: design docs, specs, ADRs, RFCs, changelogs
- Team memory: meeting notes, incident reviews, migration summaries
- Agent memory: anticipatory context before a reactive search step
- Trustworthy recall: inspectable snippets, doc IDs, and explain traces
Status
!qmd status 2>/dev/null || echo "Not installed: run 'qmd skill install --global' or 'npm install -g @tobilu/qmd'"
Start Here
- Call
fetch_anticipatory_contextat the beginning of a coding turn when recent conversation context is available. - Use
querywhen you need deeper retrieval or want to inspect the evidence directly. - Use
getormulti_getto pull exact docs, ADRs, changelogs, or notes once you know what matters.
MCP Tool: fetch_anticipatory_context
Use this first when you want the agent to feel like it already knows the project context.
{
"recent_conversation": "What changed in the auth rollback plan and why did we revert the migration?",
"refresh": false,
"lite_mode": false
}
Returns:
- cached anticipatory memories from FlowState when available
- or a fresh live query over the current project memory
MCP Tool: query
{
"searches": [
{ "type": "lex", "query": "\"auth rollback\" migration changelog" },
{ "type": "vec", "query": "why did we revert the authentication migration?" }
],
"collections": ["docs", "notes"],
"intent": "coding agent project memory for a migration debugging task",
"limit": 8
}
Query Types
| Type | Method | Best for |
|---|---|---|
lex |
BM25 | exact names, code terms, filenames, changelog phrases |
vec |
Vector | natural-language engineering questions |
hyde |
Vector | nuanced answers when you know what the result should sound like |
Writing Better Coding-Agent Queries
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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 · 113 lines · 30 tokens per session scan A 0e6579fcb75a
qmd is a skill published in the GitHub repository amanning3390/flowstate-qmd (47 stars, last pushed 5mo ago), licensed MIT. It adds 30 tokens to every session and 926 once invoked, about $0.0002 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 skills, from other repositories
distilly
Build and use evidence-grounded local person profiles with Distilly's exact five-tool workflow. Use when a user asks to research, ingest, distill, update, correct, retrieve, or recall a real or fictional person's profile, voice, boundaries, or evidence.
workspace-dispatch
Single-agent mission orchestrator. Decomposes a mission into tasks, spawns one worker per task using the default model, verifies exit criteria, and chains tasks with retry. No critic pattern — each worker self-verifies. Simple, fast, works with any model config.
hermes-memory-providers
Install and configure Mnemosyne as a Hermes Agent memory provider — local SQLite with vector search, episodic consolidation, and temporal knowledge graphs.
mnemosyne
Persistent cross-session memory via Mnemosyne — store, recall, and consolidate facts, preferences, and context.
mnemosyne-memory-override
Hard rule override that forces Mnemosyne for all durable memory storage. The legacy memory tool is DEPRECATED for user preferences, credentials, and project conventions. Use memory ONLY for ephemeral session state.
query-memory
A memory-search workflow for finding information from earlier conversations. It can search summaries, retrieve original messages, count messages, and look up logged emotional changes.