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/fullthrottle83/jules-orchestrator-kit/agents-mdgit clone --depth 1 https://github.com/FullThrottle83/jules-orchestrator-kitWrote 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/fullthrottle83/jules-orchestrator-kit/agents-md)<a href="https://agentmods.dev/instructions/fullthrottle83/jules-orchestrator-kit/agents-md"><img src="https://agentmods.dev/badge/instructions/fullthrottle83/jules-orchestrator-kit/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 | $0.02520 | $0.02520 |
| Opus 5 | $0.01260 | $0.01260 |
| Sonnet 5 | $0.00504 | $0.00504 |
| Haiku 4.5 | $0.00252 | $0.00252 |
Grade A, and why
jules-orchestrator-kit AGENTS.md scanned grade A with 1 finding 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 today.
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.
Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
<rule>1. ZERO RUNTIME DEPENDENCIES: You are STRICTLY FORBIDDEN from adding third-party npm dependencies. Use ONLY native Node.js built-in modules (node:fs, node:path, node:child_process, node:crypto, etc.).</rule> How it starts
The opening of the file, as written. The whole thing — 136 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Google Jules Autonomous Worker Directives
These guidelines govern all automated coding tasks executed by Google Jules (jules) on jules-orchestrator-kit.
1. Triage Directive (When to use Jules)
Dispatch tasks to Jules when ALL of the following apply:
- Scoped code change with a clear objective.
- Mechanically verifiable via automated test/build commands (
npm test). - Requires no interactive local debugging or visual UI tweaking.
- Does NOT modify restricted files (
.github/, deployment keys, or.agent/jules.yml).
2. MCP Machine Directive & Read-Before-Write Invariants
<MCP_DIRECTIVE>
<system_state>HEADLESS_CI_MODE</system_state>
<strict_invariants>
<rule>1. ZERO RUNTIME DEPENDENCIES: You are STRICTLY FORBIDDEN from adding third-party npm dependencies. Use ONLY native Node.js built-in modules (node:fs, node:path, node:child_process, node:crypto, etc.).</rule>
<rule>2. READ-BEFORE-WRITE (ZERO HALLUCINATION): You are FORBIDDEN from guessing internal API signatures. Before editing, inspect exact symbol definitions.</rule>
<rule>3. CROSS-PLATFORM PATHS: Always normalize Windows backslashes (\) to POSIX slashes (/) when manipulating paths or glob matching.</rule>
<rule>4. VERIFICATION LOOP: After patching code, execute `npm test` and ensure 100% of tests pass cleanly with 0 errors.</rule>
<rule>5. ABORT CONDITION: On repeated unresolvable test failures (4+ attempts), output <status>ABORT_UNRESOLVABLE</status> and terminate immediately.</rule>
</strict_invariants>
</MCP_DIRECTIVE>
3. Dynamic Command Resolution
Jules automatically infers test and build verification commands via scripts/command-resolver.mjs:
.agent/jules.yml-> Custom user commands (test_cmd,build_cmd)package.json->testCmd: "npm test"(or"npm run lint && npm test"),buildCmd: "npm run build"Cargo.toml->testCmd: "cargo test --workspace",buildCmd: "cargo build"go.mod->testCmd: "go test ./...",buildCmd: "go build ./..."pyproject.toml->testCmd: "pytest",buildCmd: "python3 -m compileall -q ."- Workspace graphs (
turbo.json,pnpm-workspace.yaml,nx.json) -> targeted affected package filters
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.
- today Changed · +4 lines · +22 tokens per session e035b0516b5e
- 4d ago First seen · 132 lines · 2,498 tokens per session scan A 704eacf0b4f7
jules-orchestrator-kit AGENTS.md is an instructions file published in the GitHub repository FullThrottle83/jules-orchestrator-kit (2 stars, last pushed yesterday), licensed MIT. It adds 2,520 tokens to every session, about $0.0126 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
platform AGENTS.md
AGENTS.md instructions for doka-guide/platform, covering agents.md — как работать с платформой доки, 1. правила работы, сначала подумай, потом пиши, минимум кода and правки хирургические.
claude-code-statusline AGENTS.md
Instructions for ilia-pluzhnikov/claude-code-statusline, covering claude-code-statusline, project shape, rules for contributors (and ai agents), editing this file and testing.
zapo CLAUDE.md
Instructions for vinikjkkj/zapo: The contributor handbook for this repository lives in AGENTS.md. Read that file and follow it as your primary source of project conventions, architecture rules, performance constraints, and review anti-patterns.
Silex AGENTS.md
AGENTS.md instructions for silexlabs/Silex, covering agents.md, tech stack, run it locally, building the desktop app and when writing code for silex (editing source).
SoDam-WikiMate AGENTS.md
AGENTS.md instructions for sodam-ai/SoDam-WikiMate, covering wikimate 작업 규칙 (크로스툴 — claude code · codex · gemini 공용), 문체, 자동 동작 (자연어 트리거 — 강제 호출 불필요), 접근 규칙 (자동 감지 — 특정 도구에 한정하지 않음) and obsidian 규칙.
node-express-boilerplate typescript-assertions.instructions.md
Use when editing TypeScript in src to avoid assertion-related lint/type regressions after merges. Prefer narrowing, type guards, satisfies, and as const/typeof over unsafe casts.