gql-query-builder AGENTS.md

gql-query-builder AGENTS.md is an instructions file for Codex, OpenCode from atulmy/gql-query-builder. It costs 812 tokens per session, scanned A, original, MIT.

A set of instructions for contributing to gql-query-builder, a TypeScript library that creates GraphQL requests from JavaScript objects. GraphQL is a way for applications to request specific data from an API.

In plain words
What is it for?
Use it when changing the library, building it, checking types and formatting, running tests, or validating the published package.
Why use it?
It tells coding agents which commands, files, package manager, and public API rules the project expects.

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/atulmy/gql-query-builder/agents-md
Clone the repo
git clone --depth 1 https://github.com/atulmy/gql-query-builder

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 gql-query-builder AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/atulmy/gql-query-builder/agents-md.svg)](https://agentmods.dev/instructions/atulmy/gql-query-builder/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/atulmy/gql-query-builder/agents-md"><img src="https://agentmods.dev/badge/instructions/atulmy/gql-query-builder/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 812 This file is loaded in full into every session.
When invoked 812 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.00812 $0.00812
Opus 5 $0.00406 $0.00406
Sonnet 5 $0.00162 $0.00162
Haiku 4.5 $0.00081 $0.00081

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

Security

Grade A, and why

gql-query-builder 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 5d 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 · 49 lines

How it starts

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

gql-query-builder — Agent Guide

Zero-runtime-dependency TypeScript library that generates GraphQL query/mutation/subscription strings (plus a variables object) from plain JavaScript objects. Published to npm as gql-query-builder.

Commands

Package manager is pnpm (see packageManager in package.json). Node >= 22.

Task Command
Install pnpm install
Build (ESM + CJS + d.ts to dist/) pnpm build
Typecheck (no emit) pnpm typecheck
Lint + format check (Biome) pnpm lint
Auto-fix lint/format pnpm format
Test (Vitest) pnpm test
Single test file pnpm exec vitest run src/__tests__/query.test.ts
Coverage pnpm coverage
Validate published package shape pnpm check-package (publint + arethetypeswrong)

Layout

  • src/index.ts — public entry: query(), mutation(), subscription(), adapters, plus all public types (named exports only).
  • src/types.ts — option/result types (QueryBuilderOptions, Fields, NestedField, VariableOptions, Operation, OperationResult) and the isNestedField guard. Deprecated I* aliases live here too.
  • src/utils.ts — shared pure helpers (field maps, variable resolution, GraphQL type inference).
  • src/adapters/types.ts — adapter contracts (QueryAdapter, MutationAdapter, SubscriptionAdapter) and their constructor types.
  • src/adapters/default-{query,mutation,subscription}-adapter.ts — default string-generation classes (use native #private fields).
  • src/adapters/app-sync-{query,mutation}-adapter.ts — AWS AppSync variants, bundled in the adapters export.
  • src/__tests__/ — Vitest suites (globals enabled, no imports of describe/it needed).
  • docs/api.md — compact API reference with canonical examples.

Public API contract

query/mutation/subscription(options, adapter?, config?) returns { query: string, variables: object }. options is { operation, fields?, variables? } or an array of those. See docs/api.md for the full options/variables shapes and examples.

Read the full file on GitHub · 49 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. 5d ago First seen · 49 lines · 812 tokens per session scan A 5fcc80a8bc59

Subscribe to this mod's changes

gql-query-builder AGENTS.md is an instructions file published in the GitHub repository atulmy/gql-query-builder (410 stars, last pushed 1mo ago), licensed MIT. It adds 812 tokens to every session, about $0.0041 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

webiny-js AGENTS.md

AGENTS.md instructions for webiny/webiny-js, covering exploration, persist learnings, code, building and testing.

webiny/webiny-js · 820 tokens

webiny-js CLAUDE.md

Claude Code instructions for webiny/webiny-js, covering context, claude project guidelines, reading code, development commands and install dependencies (suppress all output – it's noise).

webiny/webiny-js · 555 tokens

webiny-js copilot-instructions.md

Copilot instructions for webiny/webiny-js, a project described as: Open-source, self-hosted CMS platform on AWS serverless (Lambda, DynamoDB, S3). TypeScript framework with multi-tenancy, lifecycle hooks, GraphQL API, and AI-assisted development via MCP server. Built for developers at large organizations.

webiny/webiny-js · 57 tokens

vendure CLAUDE.md

Claude Code instructions for vendurehq/vendure, a project described as: Open-source headless commerce platform built with TypeScript, NestJS, React, and GraphQL.

vendurehq/vendure · 3 tokens

vendure AGENTS.md

AGENTS.md instructions for vendurehq/vendure, covering vendure, development workflow, testing, dashboard e2e tests and commits & branches.

vendurehq/vendure · 590 tokens

payload AGENTS.md

AGENTS.md instructions for payloadcms/payload, a project described as: Payload is the open-source, fullstack Next.js framework, giving you instant backend superpowers. Get a full TypeScript backend and admin panel instantly. Use Payload as a headless CMS or for building powerful applications.

payloadcms/payload · 12 tokens