qb-linq AGENTS.md

qb-linq AGENTS.md is an instructions file for Codex, OpenCode from isndev/qb-linq. It costs 1,169 tokens per session, scanned A, original, MIT.

A set of instructions for coding agents working on qb-linq, a header-only C++ library for querying data with C++ code.

In plain words
What is it for?
Use it when modifying or building qb-linq, especially its public headers, CMake configuration, generated version information, documentation, or optional single-header distribution.
Why use it?
It tells an agent what the repository contains, where its implementation lives, which standards it uses, and what documentation to read before making changes.

Instructions file for CodexOpenCode

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/isndev/qb-linq/agents-md
Clone the repo
git clone --depth 1 https://github.com/isndev/qb-linq

Made for: Codex, OpenCode.

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 qb-linq AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/isndev/qb-linq/agents-md.svg)](https://agentmods.dev/instructions/isndev/qb-linq/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/isndev/qb-linq/agents-md"><img src="https://agentmods.dev/badge/instructions/isndev/qb-linq/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,169 This file is loaded in full into every session.
When invoked 1,169 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.01169 $0.01169
Opus 5 $0.00584 $0.00584
Sonnet 5 $0.00234 $0.00234
Haiku 4.5 $0.00117 $0.00117

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

Security

Grade A, and why

qb-linq AGENTS.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.

AGENTS.md · 72 lines

How it starts

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

Instructions for AI coding agents — qb-linq

What this repository is

qb-linq is a header-only C++ library (CMake INTERFACE target qb::linq). The numeric version lives in project(qb-linq VERSION …) in CMakeLists.txt (see the table below). Implementation is entirely under include/; there is no separate library .cpp to compile for consumers.

Fact Source
Public API #include <qb/linq.h>, namespace qb::linq
CMake target qb::linq
C++ standard 17
Library version project(qb-linq VERSION …) in CMakeLists.txt → generated qb/linq/version.hdocs/VERSIONING.md
Layout See README Repository layout and docs/LLM_CONTEXT.md; optional amalgam single_header/linq.h (regenerate qb_linq_single_header)

Build, presets, options, install: docs/BUILDING.md (aligned with root CMakeLists.txt and CMakePresets.json).

Before changing code

  1. docs/LLM_CONTEXT.md — include graph, handle types, where declarations vs definitions live, materialization / iterator contracts.
  2. include/qb/linq.h — Doxygen @defgroup linq: caveats (select_many, zip/concat, where_view cache, hashing for set ops, thread-safety, etc.).
  3. Minimal diffs — match existing style, naming, and Doxygen; no unrelated refactors.

Where implementation lives

Task Primary files
Algorithm declarations (query_range_algorithms) include/qb/linq/detail/query_range.h
Out-of-line bodies (many materializers, join, …) include/qb/linq/query.h or include/qb/linq/detail/extra_views.h — split table in docs/LLM_CONTEXT.md
Iterator adaptors (select, where, take, …) include/qb/linq/iterators.h
Compositional views (concat, zip, scan, chunk, …) include/qb/linq/detail/extra_views.h
group_by container shape include/qb/linq/detail/group_by.h
order_by keys / comparators include/qb/linq/detail/order.h
Public façade and factories include/qb/linq/enumerable.h
Umbrella include include/qb/linq.hversion.h (generated) + enumerable.h

Read the full file on GitHub · 72 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 · 72 lines · 1,169 tokens per session scan A 771d273509cd

Subscribe to this mod's changes

qb-linq AGENTS.md is an instructions file published in the GitHub repository isndev/qb-linq (13 stars, last pushed 4d ago), licensed MIT. It adds 1,169 tokens to every session, about $0.0058 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

cxxmcp AGENTS.md

AGENTS.md instructions for caomengxuan666/cxxmcp, covering agent instructions, source of truth, do not touch casually, public sdk boundary and build options and package contract.

caomengxuan666/cxxmcp · 2,073 tokens

compiler-explorer AGENTS.md

AGENTS.md instructions for compiler-explorer/compiler-explorer, covering agents.md, build & test commands, important workflow requirements, style guidelines and architecture guidelines.

compiler-explorer/compiler-explorer · 2,422 tokens

compiler-explorer copilot-instructions.md

Copilot instructions for compiler-explorer/compiler-explorer: For each answer to the user, evaluate your level of confidence in the correctness of the answer on a scale from 1 to 10, where 1 is very uncertain and 10 is absolutely certain. If your confidence level is below 8, state so and suggest ways to verify the…

compiler-explorer/compiler-explorer · 60 tokens

flamerobin copilot-instructions.md

Copilot instructions for mariuz/flamerobin, covering flamerobin — copilot instructions, build, run from build dir (sets up paths to resource subdirs), tests and or with verbose boost.test output.

mariuz/flamerobin · 1,376 tokens

mx api-headers.instructions.md

Instructions for webern/mx: These are the public mx::api headers: plain-old-data structs that re-shape MusicXML into a simpler model (doctrine: .claude/skills/mx-api-doctrine/SKILL.md). Review for.

webern/mx · 426 tokens

mx corpus-and-tests.instructions.md

Instructions for webern/mx, a project described as: C++ binding for MusicXML.

webern/mx · 282 tokens