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/quentincody/interlinked-cli/agents-mdgit clone --depth 1 https://github.com/QuentinCody/interlinked-cliWhat 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.01323 | $0.01323 |
| Opus 5 | $0.00661 | $0.00661 |
| Sonnet 5 | $0.00265 | $0.00265 |
| Haiku 4.5 | $0.00132 | $0.00132 |
Grade A, and why
interlinked-cli 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 2d 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 — 68 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Repository Guidelines
Project Structure & Module Organization
This package is the TypeScript source for Interlinked CLI.
- Interlinked MCP Server refers to the remote Cloudflare Worker system that the CLI optionally talks to.
- Interlinked CLI refers to this package.
src/index.ts: CLI entry point and command registration.src/commands/*.ts: command handlers (enable,status,doctor,workspace, etc.).src/lib/*.ts: shared logic (auth, config, hooks, API client, formatting).src/templates/: generated/template assets used by setup flows.src/**/*.test.tsandsrc/commands/__tests__/: Vitest unit/regression tests.docs/architecture.md: architecture notes.dist/: build output (generated).
Build, Test, and Development Commands
npm run dev: run the CLI directly withtsxfor local development.npm run build: bundlesrc/index.tstodist/with type declarations (tsup).npm run typecheck: run TypeScript checks withtsgo(tsgo --noEmit).npm run typecheck:stable: run the stable TypeScript compiler (tsc --noEmit).npm run test: run tests once (vitest run).npm run test:watch: run tests in watch mode.npm run docs: regenerate generated CLI/harness reference docs.
Example:
npm run dev -- status --short
Agent Notes
QuentinCody/interlinked-cliis the source of truth for the CLI.- Keep the exact product terms distinct: Interlinked CLI is this package; Interlinked MCP Server is the remote Worker/Durable Objects system used by server-backed commands.
- Harness phase split: PreToolUse handles deterministic pre-execution blocks and warnings (destructive commands, file reservations, secrets-in-content, grep acceleration). PostToolUse handles checks that need files on disk or project context (type/lint/security/structure), and should report only new findings through diff-aware filtering.
- Zero-FP contract:
pre_blockerror checks must be fully deterministic. Heuristic smell/taste/coverage checks belong as warnings or inverify --all-checks. When changing advisory policy, updateDEFAULT_ADVISORY_SKIPSand its regression tests together. - Adding an agent-quality check usually touches
src/harness/generic-checks.ts, the check registry entries,src/harness/check-metadata.ts,src/harness/check-registry/entry files,src/commands/verify*, and parity/advisory tests. Land those coupled changes together. - Hook scripts generated by the CLI must stay self-contained. PostToolUse is intentionally scoped to mutating tools, and
PostToolUseFailureis intentionally not registered to avoid duplicate hook-count/output issues; seedocs/investigation-posttooluse-hook-count.mdbefore changing hook matchers. - Rule/check metadata changes require
npm run docs; do not hand-edit stale generated counts. - Major changes in this repository MUST include a skill-impact review. This includes user-visible CLI commands/options/output, harness behavior or policy, configuration schemas/defaults, supported-client behavior, baseline semantics, and architecture or operator workflows. Update every affected
skills/*/SKILL.mdin the same change; code or design-doc updates alone are not complete when agent guidance changed. If no skill is affected, state why in the final handoff. - Keep the skill router and focused skills aligned: update
skills/interlinked/SKILL.mdwhen a capability's routing changes, and update the relevant focused skill with the current command/config contract and operational gotchas. Treat.agents/skills/as an installed/generated copy, not the source of truth. Validate every touched skill folder with the skill validator before handoff. - Supported coding clients (
interlinked enable --clients <list>):claude,copilot,gemini,codex. Per-client install logic lives insrc/lib/hook-installers.ts;src/lib/hooks.tsis the orchestrator that wires them throughCLIENT_INSTALL_REGISTRY. The generated.mjsscript disambiguates Codex (Claude-shaped payloads) from Claude via theINTERLINKED_CLIENTenv var set by the installed hook command. - Codex CLI hook gating:
installCodexHookswrites.codex/hooks.jsonAND ensures[features] codex_hooks = truein.codex/config.toml. Without that flag Codex silently ignores the hooks.json file. Uninstall leaves config.toml untouched to avoid clobbering user-managed Codex configuration.
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.
- 2d ago First seen · 68 lines · 1,323 tokens per session scan A bef7f250e438
interlinked-cli AGENTS.md is an instructions file published in the GitHub repository QuentinCody/interlinked-cli (13 stars, last pushed 14d ago), licensed MIT. It adds 1,323 tokens to every session, about $0.0066 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-31.
Other instructions, from other repositories
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.
buildNext
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).
next.js AGENTS.md
Instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
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).
spec-kit 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.
langchain 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.