Borrowing it
Nothing to install: this file belongs to lucifer1004/VeloQ. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/lucifer1004/VeloQ/main/AGENTS.mdgit clone --depth 1 https://github.com/lucifer1004/VeloQWrote 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/instructions/lucifer1004/veloq/agents-md)<a href="https://agentmods.dev/instructions/lucifer1004/veloq/agents-md"><img src="https://agentmods.dev/badge/instructions/lucifer1004/veloq/agents-md.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.07150 | $0.07150 |
| Opus 5 | $0.03575 | $0.03575 |
| Sonnet 5 | $0.01430 | $0.01430 |
| Haiku 4.5 | $0.00715 | $0.00715 |
Grade A, and why
VeloQ 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 6d 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 — 498 lines — stays where its author put it; the contents beside it link to each section on GitHub.
VeloQ — Contributor Guidelines
This file is for agents/contributors developing VeloQ itself
(adding verbs, profile sources, fixes, refactors). User-facing
agents that use veloq as a black-box CLI to analyze profiles
should read the skills under .agents/skills/:
.agents/skills/nsys-profile-analysis/— Nsight Systems timelines.agents/skills/ncu-profile-analysis/— Nsight Compute kernel reports.agents/skills/pytorch-profile-analysis/— PyTorch/Kineto traces
The canonical repo-local Agent Skills source is plugins/veloq/skills/.
The .agents/skills/ path is a compatibility alias for agent discovery.
VeloQ (velo-query) is a profile-query CLI family. Pure CLI in /
JSON contract out by default, CSV/table projections for row-shaped
views, no GUI, no MCP server in v1. Today it covers Nsight Systems
(timeline traces), Nsight Compute (kernel reports), and experimental
PyTorch/Kineto Chrome traces through a single binary with a shared
envelope and pluggable ProfileSource trait. The PyTorch/Kineto source
covers the Perfetto-style Chrome trace shape used by PyTorch profiler.
Wire-format invariants (do not break casually)
These constrain how every new verb/source must emit data. The
user-facing contract description (with examples) lives in each
skill's SKILL.md; this section is the maintainer-side rule set.
The JSON envelope and the per-source versions are VeloQ's public
contract; the crate's 0.x Cargo version is independent of the wire
version (breaking shape changes bump ENVELOPE_VERSION/source.version
plus a CHANGELOG entry — see invariant 1; additive fields keep the
version).
- Envelope shape:
veloq_core::Envelope<T>is the only success payload VeloQ writes on stdout, andveloq_core::EnvelopeErroris the only error payload. Both carryschema/source/command/trace?/trace_span?/data | error. Error details always carrymessageandchain; typed diagnostics may additionally populatecodeandhint. BumpENVELOPE_VERSIONonly on a breaking shape change; additive fields keep the same version. - Canonical list contract: every list-shaped response uses
data: { count, total_matched, rows: Vec<Row>, auxiliary? }. EachRowcarries apub key: Stringcomposed from the row's identifying axes — see the per-verb format below. Non-primary data (per-mode common blocks, bucket histograms, …) goes underauxiliary. New verbs MUST conform — don't add a parallel list field with a different name.wire_format_smoke::every_primary_rows_item_carries_keystructurally enforces thekeypresence across every Response type.
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.
- 6d ago First seen · 498 lines · 7,150 tokens per session scan A ed895b80c3e2
VeloQ AGENTS.md is an instructions file published in the GitHub repository lucifer1004/VeloQ (120 stars, last pushed 15d ago), licensed MIT. It adds 7,150 tokens to every session, about $0.0358 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 instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.