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 agentmods add instructions/n1byn1kt/apitap/copilot-instructionsgit clone --depth 1 https://github.com/n1byn1kt/apitapWrote 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/n1byn1kt/apitap/copilot-instructions)<a href="https://agentmods.dev/instructions/n1byn1kt/apitap/copilot-instructions"><img src="https://agentmods.dev/badge/instructions/n1byn1kt/apitap/copilot-instructions.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 | $0.00663 | $0.00663 |
| Opus 5 | $0.00331 | $0.00331 |
| Sonnet 5 | $0.00133 | $0.00133 |
| Haiku 4.5 | $0.00066 | $0.00066 |
Grade A, and why
apitap copilot-instructions.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.
How it starts
The opening of the file, as written. The whole thing — 32 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Copilot Instructions for ApiTap
Build and test commands
- Install deps:
npm install - Full test suite:
npm test(Node test runner vianode --import tsx --test 'test/**/*.test.ts') - Single test file (example):
node --import tsx --test test/capture/filter.test.ts - Type check:
npm run typecheck - Lint: no dedicated lint script is configured in
package.json - Build:
npm run build - Run CLI from source:
npx tsx src/cli.ts <command> [args] - Install Chromium for browser-required flows (
capture/browse):npx playwright install chromium
High-level architecture
ApiTap has two primary execution paths that share skill-file artifacts:
- Capture path (browser required): Playwright/CDP capture in
src/capture/monitor.tsandsrc/capture/session.tscollects traffic,src/capture/filter.tsremoves noise, thensrc/skill/generator.tsdeduplicates bymethod + parameterizedPathand writes skill files throughsrc/skill/store.tsto~/.apitap/skills/<domain>.json. - Replay path (browser-free):
src/replay/engine.tsloads a skill file, substitutes params, injects credentials fromsrc/auth/manager.ts, applies SSRF/header protections fromsrc/skill/ssrf.ts, then executes requests with stdlibfetch().
Supporting layers:
src/discovery/runs framework detection, OpenAPI probing, and endpoint probes in parallel.src/orchestration/browse.tsis the high-level pipeline (cache -> disk -> discover -> replay).src/read/providespeek/readtext-mode extraction with site-specific decoders and generic fallback.src/mcp.tsexposes MCP tools over the same core pipeline; external API responses are marked untrusted.
Key repository conventions
- ESM + NodeNext rules are strict: use
.jsin TS imports (e.g.import { x } from './y.js'). - CLI-first surface area: keep behavior exposed via
src/cli.tscommands, and ensure machine-readable--jsonoutput remains consistent. - Website-fetch workflow priority: when data is needed from a site, prefer
apitap show <domain>→apitap replay <domain> <endpoint-id>; if no skill file exists, tryapitap read <url>before browser-basedcapture/browse. - Skill files are central artifacts: endpoint metadata belongs in skill JSON, but auth secrets must never be stored there; auth stays in encrypted storage.
- Security checks are part of normal flow: preserve SSRF validation, header filtering, DNS/redirect checks during import and replay paths.
- Test layout mirrors source layout: add/update tests under
test/matchingsrc/paths; use Node's built-innode:teststyle. - Dependency discipline: replay path should prefer stdlib
fetch; keep Playwright usage scoped to capture/auth browser flows.
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.
- 4d ago First seen · 32 lines · 663 tokens per session scan A 7b94fdd7467d
apitap copilot-instructions.md is an instructions file published in the GitHub repository n1byn1kt/apitap (124 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 663 tokens to every session, about $0.0033 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
browser-mcp CLAUDE.md
Claude Code instructions for The-Syntax-Slayer/browser-mcp, covering browser-mcp — claude code guide, entry points, standards and key files.
browserkit AGENTS.md
AGENTS.md instructions for browserkit-dev/browserkit, covering agents.md — workspace memory, project: browserkit, browser lifecycle, browser control and design process preferences.
browserkit CLAUDE.md
Claude Code instructions for browserkit-dev/browserkit, covering browserkit, repo layout, build & test, architecture and external adapter repos (all under browserkit-dev/).
browser-mcp AGENTS.md
AGENTS.md instructions for The-Syntax-Slayer/browser-mcp, covering browser-mcp — agent guide, entry points, standards and key files.
moli AGENTS.md
AGENTS.md instructions for lexmount/moli: Before committing changes that modify Rust source code or Rust build metadata (such as Cargo.toml, Cargo.lock, or rust-toolchain), run all of the following from the repository root and ensure they pass.
fli CLAUDE.md
Instructions for punitarani/fli, covering claude.md, project overview, development commands, core development tasks and install dependencies.