Borrowing it
Nothing to install: this file belongs to tigerless-labs/auto-gtm. 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/tigerless-labs/auto-gtm/main/CLAUDE.mdgit clone --depth 1 https://github.com/tigerless-labs/auto-gtmWrote 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/tigerless-labs/auto-gtm/claude-md)<a href="https://agentmods.dev/instructions/tigerless-labs/auto-gtm/claude-md"><img src="https://agentmods.dev/badge/instructions/tigerless-labs/auto-gtm/claude-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.01766 | $0.01766 |
| Opus 5 | $0.00883 | $0.00883 |
| Sonnet 5 | $0.00353 | $0.00353 |
| Haiku 4.5 | $0.00177 | $0.00177 |
Grade A, and why
auto-gtm CLAUDE.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 8d 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 — 49 lines — stays where its author put it; the contents beside it link to each section on GitHub.
auto-gtm
auto-gtm is a Claude Code / Codex plugin: a family of GTM automation tools, one skill per scenario × platform — topic scouting (your PRs + today's hotspots), X post and reply drafts, Reddit subreddit-finding and reply/post drafts. The wedge vs neighboring tools: GTM material is grounded in what you actually shipped and what's being discussed today, drafted in a voice you chose — not generated from thin air.
Layout
skills/<name>/SKILL.md— shipped skills, the product surface. One GTM tool = one skill directory; helpers live beside it underscripts/,references/,templates/..claude-plugin/+.codex-plugin/— plugin manifests for the two hosts; keep both in sync on every skill add/rename/version bump.docs/design/— architecture and the why, per tool. Start at the index, then the tool you're touching. (Create as the design solidifies; keep the index current.)docs/design-harness/— the evidence board (sources → ideas → output) behind positioning and design calls; operate it via the design-harness skill, never by hand-editing its state.docs/plans/— per-change implementation plans (working artifacts, exempt from the design-doc style rules).docs/TODO.md— tracked follow-ups not yet on the roadmap. Keep current in real time (see rule below).README.md— install/quickstart runbook; update it in the same change whenever install, update, or usage flow changes.
Task lifecycle — the fixed order for every non-trivial change
Plan → sync → docs → tests → skill/code → verify → commit → docs/index sweep → green CI. Trivial one-line changes skip the plan; nothing skips the order. A change that arrives out of order is incomplete.
- Plan. Non-trivial changes start with a plan in
docs/plans/. The plan's first unit updates the relevantdocs/design/doc; every unit places acceptance criteria before implementation. - Branch, isolate, sync. Bind each change to exactly one explicit task on its own branch, developed in its own worktree — created with Claude Code's own worktree tooling (the built-in worktree feature), which places it under
.claude/worktrees/<branch>(.claude/is git-ignored); never hand-create one with rawgit worktree add, and never develop onmain. Before developing,git fetchand rebase onto the latestmain. Land via feature branch + PR; no direct pushes tomain. - Docs first. Read, then update, the relevant
docs/design/doc(s) before touching any skill or script — pin down behavior boundaries, interface contracts (skill trigger, inputs, outputs), and acceptance criteria. Never touch the skill first. - Tests next. Where a tool has executable parts (
scripts/), write the failing test first in the matchingtests/file, use fixtures rather than live platform APIs, and assert relationships/invariants — never hardcoded values that break when an upstream feed changes. For prompt-only skills, the test is a written acceptance checklist in the plan: input transcript → expected draft properties. - Skill/code. Write the SKILL.md / scripts that satisfy the criteria.
- Verify end-to-end. Install the plugin locally and run the skill against a real session/feed; confirm the full flow (trigger → distill → draft → stop) — not just unit tests. A skill shipped without an end-to-end run is incomplete.
- Commit. Run relevant tests before each commit; commit at every green point and
git pushafter every completed task — progress must never exist only on this machine. - Sweep docs & indexes. Confirm whether the change needs updates to
docs/design/indexes,README.md, and both plugin manifests — update them in the same change. Version bumps are patch-only (0.2.0 → 0.2.1) unless explicitly requested otherwise. - Drive CI green. After opening the PR, watch CI; on any failure, locate, fix, and push immediately — repeat until every required check passes.
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.
- 8d ago First seen · 49 lines · 1,766 tokens per session scan A 4adfef12cd27
auto-gtm CLAUDE.md is an instructions file published in the GitHub repository tigerless-labs/auto-gtm (322 stars, last pushed 6d ago), licensed MIT. It adds 1,766 tokens to every session, about $0.0088 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
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).
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.
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.
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
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.