Borrowing it
Nothing to install: this file belongs to Jaan-Mustafa/10x-Team. 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/Jaan-Mustafa/10x-Team/main/AGENTS.mdgit clone --depth 1 https://github.com/Jaan-Mustafa/10x-TeamWrote 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/jaan-mustafa/10x-team/agents-md)<a href="https://agentmods.dev/instructions/jaan-mustafa/10x-team/agents-md"><img src="https://agentmods.dev/badge/instructions/jaan-mustafa/10x-team/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.00905 | $0.00905 |
| Opus 5 | $0.00452 | $0.00452 |
| Sonnet 5 | $0.00181 | $0.00181 |
| Haiku 4.5 | $0.00090 | $0.00090 |
Grade A, and why
10x-Team 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 7d 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 — 74 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Guidance for AI coding agents (Claude Code, Cursor, Copilot, Codex, etc.) contributing to 10x-Team, a Claude Code plugin that ships 12 role-based skills (CTO, Architect, SRE, Security, etc.) plus an orchestrator.
What this repo is
A plugin, not an application. There is no runtime, no server, no build step. The "code" is Markdown: each skill is a SKILL.md file with frontmatter plus a prescribed section layout that the Claude Code harness loads on demand.
Treat SKILL.md files as the product. Prose quality, structure, and adherence to the skill template matter more than cleverness.
Repository layout
skills/<role>/SKILL.md # the 12 role skills + the /10x-team orchestrator
commands/ # slash-command definitions (e.g. init-project.md)
agents/ # agent definitions
tests/validate-skills.test.js # structural validator — run before committing skill changes
docs/adr/ # architecture decision records
personalDocs/ # author notes; do not modify unless asked
.claude-plugin/ # plugin + marketplace manifest (only touch when releasing)
State written at runtime by the skills themselves lives under .10x/ in the consuming project, not in this repo. Do not create .10x/ here.
Required SKILL.md structure
Every skill file must contain, in order:
- YAML frontmatter with
nameanddescription # Role Title+ one-line summary<HARD-GATE>block stating what must happen before recommendations## Anti-Pattern: "..."section## Checklist## Process Flow## The Process## Project State Protocolwith Before You Start and Before You Finish subsections that read/write.10x/decisions/<role>.md## Key Principles## Anti-Patterns to Flag## Tone
The validator in tests/validate-skills.test.js enforces this. Run it after any skill edit:
node tests/validate-skills.test.js
Conventions for agents
- Edit existing files over creating new ones. New skills need explicit user approval — this plugin's value comes from a curated set of roles, not quantity.
- Preserve the file-based handoff model. Every role reads its upstream decisions from
.10x/decisions/before acting and writes its own decisions after. Do not introduce in-memory state, globals, or cross-skill imports. - No code beyond what's here. This repo is Markdown + one Node validator. Don't add package managers, build tooling, TypeScript configs, or frameworks without being asked.
- Match the existing voice of each role. The CTO skill speaks strategically; the SDE skill speaks tactically. Read the surrounding file before editing.
- Frontmatter
descriptionis load-bearing — it's how the harness decides when to trigger the skill. Keep it specific and trigger-oriented ("Use this when..."). - Don't weaken hard gates. They exist so roles refuse to answer without required context. If a gate feels wrong, raise it in discussion rather than silently removing it.
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.
- 7d ago First seen · 74 lines · 905 tokens per session scan A f029911fa7bc
10x-Team AGENTS.md is an instructions file published in the GitHub repository Jaan-Mustafa/10x-Team (11 stars, last pushed 2mo ago), licensed MIT. It adds 905 tokens to every session, about $0.0045 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.