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/devlint/gitwand/claude-mdgit clone --depth 1 https://github.com/devlint/GitWandWhat 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.01141 | $0.01141 |
| Opus 5 | $0.00571 | $0.00571 |
| Sonnet 5 | $0.00228 | $0.00228 |
| Haiku 4.5 | $0.00114 | $0.00114 |
Grade A, and why
GitWand CLAUDE.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 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.
Runs shell commandslowCapability
Expected in a hook, worth knowing in a rule or an instructions file.
**Règle critique :** ne jamais introduire de module Node.js dans `packages/core` (fs, path, child_process, etc.). How it starts
The opening of the file, as written. The whole thing — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.
@AGENTS.md
GitWand — Vue d'ensemble
GitWand est un client Git desktop natif avec un moteur de résolution automatique de conflits Git et des features AI intégrées.
Stack technique : Tauri 2, Vue 3, Rust, TypeScript, pnpm monorepo
Versions : apps/desktop, packages/core, packages/cli et packages/mcp sont
versionnés en lock-step par ./scripts/bump-version.sh — leur numéro de version courant
est donc toujours identique et se lit dans packages/core/package.json (source de
vérité unique ; ne pas recopier un chiffre ici, il dérive dès le bump suivant).
packages/vscode (gitwand-vscode) est versionné indépendamment — voir son propre
package.json.
Architecture monorepo
GitWand/
├── apps/
│ └── desktop/ # App Tauri 2 + Vue 3
├── packages/
│ ├── core/ # Moteur TS résolution conflits
│ ├── cli/ # CLI Node.js @gitwand/cli
│ ├── mcp/ # Serveur MCP @gitwand/mcp
│ └── vscode/ # Extension VS Code
├── website/ # Docs VitePress
├── scripts/
│ └── bump-version.sh # Script de versioning
├── .github/workflows/ # CI/CD
└── AGENTS.md # Règles AI transverses
Séparation des responsabilités
packages/core— moteur portable (browser/Node/Tauri), logique de résolution PURE. Aucune dépendance Node.js native : doit rester compatible browser.apps/desktop— UI Vue 3 + backend Rust Tauri. Consomme@gitwand/corevia workspace.packages/clietpackages/mcp— wrappers minces autour de@gitwand/core, pas de logique de résolution propre.packages/vscode— extension VS Code avec son propre lifecycle (activation events, contributes), utilise@gitwand/core.
Règle critique : ne jamais introduire de module Node.js dans packages/core (fs, path, child_process, etc.).
Setup développement
# Prérequis : Node 22.13+, pnpm 11+, Rust stable
pnpm install
# Dev frontend uniquement (sans Rust/Tauri)
cd apps/desktop && pnpm dev:web
# Dev app complète (avec Rust/Tauri, recompile le backend)
cd apps/desktop && pnpm dev
# Build tous les workspaces
pnpm build
# Tests tous les workspaces
pnpm test
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 · 96 lines · 1,141 tokens per session scan A 91b8efed5e72
GitWand CLAUDE.md is an instructions file published in the GitHub repository devlint/GitWand (167 stars, last pushed 4d ago), licensed MIT. It adds 1,141 tokens to every session, about $0.0057 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-30.
Other instructions, from other repositories
tiptap tiptap.instructions.md
Instructions for ueberdosis/tiptap, covering tiptap, what is tiptap, repository layout, npm scripts and linting & formatting.
web-to-app AGENTS.md
AGENTS.md instructions for shiaho777/web-to-app, covering agents.md, code style, project layout, how the main pieces connect and i18n.
daisyui packages.docs.instructions.md
Instructions for saadeghi/daisyui, a project described as: 🌼 🌼 🌼 🌼 🌼 The most popular, free and open-source Tailwind CSS component library.
eventyay js.instructions.md
JavaScript & Vue development standards (legacy JS without build step + modern bundled Vue 3 apps).
formkit CLAUDE.md
Instructions for formkit/formkit, covering formkit, architecture, packages, core (framework-agnostic) and vue integration.
vue-tui AGENTS.md
Instructions for vuejs-ai/vue-tui, covering common pitfalls & best practices, project context records (pcr), using vite+, the unified toolchain for the web and review checklist.