10x-Team: Instructions file for Claude Code

AGENTS.md

10x-Team AGENTS.md is an instructions file for Claude Code, Codex, OpenCode from Jaan-Mustafa/10x-Team. It costs 905 tokens per session, scanned A, original, MIT.

Repository instructions for AI coding agents working on 10x-Team, a Claude Code plugin made of role-based skills and an orchestrator. They explain the project layout and how skill files should be written and checked.

In plain words
What is it for?
Use it when adding or changing skills, commands, agents, tests, documentation, or release metadata in the 10x-Team repository.
Why use it?
It gives contributors the project context and conventions they need, reducing mistakes when editing the plugin’s Markdown-based skills.

Instructions file for Claude CodeCodexOpenCode

Written for Claude Code and Codex and OpenCode: Claude Code plugin machinery, but also the file is AGENTS.md. Also seen: mentions Claude Code; mentions AGENTS.md; mentions Codex.

This is Jaan-Mustafa/10x-Team's own configuration. It tells Claude Code, Codex and OpenCode how to work on 10x-Team itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything 10x-Team configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/Jaan-Mustafa/10x-Team/main/AGENTS.md
Clone the repo
git clone --depth 1 https://github.com/Jaan-Mustafa/10x-Team

Made for: Claude Code, 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 10x-Team AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/jaan-mustafa/10x-team/agents-md.svg)](https://agentmods.dev/instructions/jaan-mustafa/10x-team/agents-md)
Your own site
<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>
Per session 905 This file is loaded in full into every session.
When invoked 905 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00905 $0.00905
Opus 5 $0.00452 $0.00452
Sonnet 5 $0.00181 $0.00181
Haiku 4.5 $0.00090 $0.00090

Measured 7d ago against content hash f029911fa7bc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

AGENTS.md · 74 lines

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:

  1. YAML frontmatter with name and description
  2. # Role Title + one-line summary
  3. <HARD-GATE> block stating what must happen before recommendations
  4. ## Anti-Pattern: "..." section
  5. ## Checklist
  6. ## Process Flow
  7. ## The Process
  8. ## Project State Protocol with Before You Start and Before You Finish subsections that read/write .10x/decisions/<role>.md
  9. ## Key Principles
  10. ## Anti-Patterns to Flag
  11. ## 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 description is 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.

Read the full file on GitHub · 74 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. 7d ago First seen · 74 lines · 905 tokens per session scan A f029911fa7bc

Subscribe to this mod's changes

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.

Related

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.

openai/codex · 5,182 tokens

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).

microsoft/vscode · 6,785 tokens

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.

vercel/next.js · 7,296 tokens

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.

langchain-ai/langchain · 4,469 tokens

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).

microsoft/vscode · 5,001 tokens

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.

github/spec-kit · 7,104 tokens