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/masteryee-labs/tool.agent-harness-deploy/agents-mdgit clone --depth 1 https://github.com/masteryee-labs/Tool.Agent-Harness-DeployWrote 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/masteryee-labs/tool.agent-harness-deploy/agents-md)<a href="https://agentmods.dev/instructions/masteryee-labs/tool.agent-harness-deploy/agents-md"><img src="https://agentmods.dev/badge/instructions/masteryee-labs/tool.agent-harness-deploy/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.46572 | $0.46572 |
| Opus 5 | $0.23286 | $0.23286 |
| Sonnet 5 | $0.09314 | $0.09314 |
| Haiku 4.5 | $0.04657 | $0.04657 |
Grade D, and why
Tool.Agent-Harness-Deploy AGENTS.md scanned grade D with 3 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 5d 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.
Enumerates other installed skillsmediumAgent snooping
Other skills' SKILL.md files reveal prompts, capabilities and secrets that should be invisible to peers.
| **Skills loaded** | 10 | ≥1 skill deployed (auditor, gap-scan, etc.) | `ls .claude/skills/` or equivalent | Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
| **Positive** | "About to run `rm -rf .agents/` — no .bak, no git tracking." | Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
| 2 | Check CI → if failed: fix+push → if ok: wait | Multi-branch → `--branch`. Non-GitHub → `curl` API | How it starts
The opening of the file, as written. The whole thing — 2,884 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Harness Deploy — Agent Entry File
You are reading this because an AI coding assistant cloned this repo after a user said "幫我部屬:[github link]" / "deploy: [github link]" / "set up this harness". This file is the single source of truth that every AGENTS.md-aware tool reads first.
0. What this repo is (read this before doing anything)
Agent Harness Deploy is a self-deploying, cross-tool AI harness deployer.
It does one job: detect which AI coding tools are installed on this machine, then generate and sync a single canonical harness (caveman-optimized, multi-agent, memory-enabled, loop-engineered, session-concurrent) into every detected tool's native config location — so that whichever tool the user opens next, they get the same rules, memory, skills, and orchestrator.
This repo is the deployer, not the product. The product is the harness it writes into your tools. Do not start building features. Do not refactor the deployer. Run the deployer.
1. BOOT protocol (order is mandatory)
read(".agents/loop_state.md")— read the session registry (<3KB).- If the file does not exist, create an empty registry:
--- context_fill_pct: 0 caveman_level: full active_sessions: [] active_session: null ---
- If the file does not exist, create an empty registry:
read(".agents/knowledge_distill.md")— load anti-patterns (<8KB).read(".agents/user_profile.md")— load profile (<2KB).- If
.agents/loop_state.mdhas anactive_sessionthat isin_progress,crashed, orsuspected_crashed,read(".agents/session_state/<session_id>.json")and.agents/loop_state/<session_id>.mdonly for audit. Do not read allsession_state/*.jsonorloop_state/*.mdfiles. If the previous session'sowned_files/affected_files/tagsoverlap the new task, ask the human whether to continue. Never auto-resume. - Read per-session context flags —
.agents/context_flags/<session_id>.jsonif it exists. - Output a GoalSpec (see
distill/canon/BOOT_PROTOCOL.md) and write it to:.agents/loop_state/<session_id>.md.agents/session_state/<session_id>.json
- Call
python scripts/loop_memory_sync.pyto update.agents/loop_state.mdregistry. - Read
Docs/02-Deployment-Guide.md— the exact deploy flow. - Run the deployer:
python scripts/distill.py(or followDocs/02-Deployment-Guide.md §Manual deploy).
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.
- 5d ago First seen · 2,884 lines · 46,572 tokens per session scan D 17777b9ffb6d
Tool.Agent-Harness-Deploy AGENTS.md is an instructions file published in the GitHub repository masteryee-labs/Tool.Agent-Harness-Deploy (5 stars, last pushed 1mo ago), licensed MIT. It adds 46,572 tokens to every session, about $0.2329 per session on Opus 5. A static security scan graded it D with 3 findings (enumerates other installed skills, recursive force delete, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
agent-cli AGENTS.md
AGENTS.md instructions for VictorTomaili/agent-cli, covering agents.md, what this is, install / update / init, working in this checkout and conventions to preserve.
unit-tests-skills CLAUDE.md
Claude Code instructions for mavka-ai/unit-tests-skills, covering claude.md, what this repo is, repository structure, available skills and workflow.
unit-tests-skills AGENTS.md
AGENTS.md instructions for mavka-ai/unit-tests-skills, covering agents.md, skills, rules location, plugin validation and what it checks, and why each check exists.
vibecode-pro-max-kit AGENTS.md
Instructions for withkynam/vibecode-pro-max-kit, covering agents.md, riper-5 spec-driven development system, shared development protocols, orchestrator role (main codex session) and repository context.
awesome-harness-engineering AGENTS.md
AGENTS.md instructions for ai-boost/awesome-harness-engineering, covering agents.md, what this repo is, conventions, what belongs and what doesn't belong.
awesome-harness-engineering CLAUDE.md
Claude Code instructions for ai-boost/awesome-harness-engineering, a project described as: Awesome list for AI agent harness engineering: tools, patterns, evals, memory, MCP, permissions, observability, and orchestration.