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/coderabbitai/git-worktree-runner/editorgit clone --depth 1 https://github.com/coderabbitai/git-worktree-runnerWhat 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.00533 | $0.00533 |
| Opus 5 | $0.00267 | $0.00267 |
| Sonnet 5 | $0.00107 | $0.00107 |
| Haiku 4.5 | $0.00053 | $0.00053 |
Grade A, and why
git-worktree-runner editor.instructions.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 2d 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 — 64 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Editor Adapter Instructions
When to Use a File vs Registry
Most editors are defined as registry entries in lib/adapters.sh — no adapter file needed.
Only create an adapter file in adapters/editor/ for editors that need custom behavior beyond what the standard/terminal builders provide (see nano.sh for an example).
Adding a Standard Editor (Registry)
Add a line to _EDITOR_REGISTRY in lib/adapters.sh:
yourname|yourcmd|standard|EditorName not found. Install from https://...|flags
Format: name|cmd|type|err_msg|flags
type:standard(GUI app) orterminal(runs in terminal)flags: comma-separated —workspace(supports .code-workspace),background(terminal bg)
Adding a Custom Editor (File Override)
Create adapters/editor/<name>.sh implementing:
#!/usr/bin/env bash
# EditorName adapter
editor_can_open() {
command -v editor-cli >/dev/null 2>&1
}
editor_open() {
local path="$1"
if ! editor_can_open; then
log_error "EditorName not found. Install from https://..."
return 1
fi
editor-cli "$path"
}
File-based adapters take precedence over registry entries of the same name.
Also update:
- README.md (setup instructions)
- All three completion files:
completions/gtr.bash,completions/_git-gtr,completions/gtr.fish - Help text in
lib/commands/help.sh(cmd_helpfunction)
Contract & Guidelines
- Required functions:
editor_can_open(probe viacommand -v),editor_open <path>. - Quote all paths; support spaces. Avoid changing PWD globally—no subshell needed (editor opens path).
- Use
log_errorwith actionable install guidance if command missing. - Keep adapter lean: no project scans, no blocking prompts.
- Naming: file/registry name = tool name (
zed→zedflag). Avoid uppercase. - Update: README editor list, completions (bash/zsh/fish), help (
Available editors:), optional screenshots. - Fallback behavior: if editor absent, fail clearly; do NOT silently defer to file browser.
- Inspect function definition if needed:
declare -f editor_open.
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.
- 2d ago First seen · 64 lines · 533 tokens per session scan A 8c1ec1fd0662
git-worktree-runner editor.instructions.md is an instructions file published in the GitHub repository coderabbitai/git-worktree-runner (1,754 stars, last pushed 5d ago), licensed Apache-2.0. It adds 533 tokens to every session, about $0.0027 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
mulmoterminal CLAUDE.md
Instructions for receptron/mulmoterminal, covering claude.md — mulmoterminal, stack & package manager, run after changes, import a component at module scope, never inside a test and no emojis.
operator-oss CLAUDE.md
Instructions for iishyfishyy/operator-oss, covering claude.md, commands, architecture, the turn lifecycle (core flow) and key modules (by responsibility).
vibe-tree CLAUDE.md
Instructions for sahithvibudhi/vibe-tree, covering claude instructions, github actions failed build logs, electron app startup issues, launch with project and pull requests.
CommandMate CLAUDE.md
Instructions for Kewton/CommandMate, covering claude.md, ⚠️ 重要: モジュール詳細を claude.md に書かないこと, プロジェクト概要, 基本情報 and 技術スタック.
vscode-ext-tmux-worktree AGENTS.md
Instructions for kargnas/vscode-ext-tmux-worktree, covering ai agent guidelines, instruction, tested vs code, 1. codebase understanding and project structure.
CommandMate AGENTS.md
Instructions for Kewton/CommandMate, covering agents.md, scope, project context, working principles and coding rules.