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/veithly/vibeshell/agents-mdgit clone --depth 1 https://github.com/veithly/vibeshellWhat 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.01840 | $0.01840 |
| Opus 5 | $0.00920 | $0.00920 |
| Sonnet 5 | $0.00368 | $0.00368 |
| Haiku 4.5 | $0.00184 | $0.00184 |
Grade A, and why
vibeshell 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 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 — 164 lines — stays where its author put it; the contents beside it link to each section on GitHub.
VibeShell — Agent Guide
Overview
VibeShell is a modern SSH/SFTP desktop terminal built with Tauri 2 (Rust backend) and React 18 (TypeScript frontend). It supports multi-session SSH, SFTP file management, SSH tunneling, local shell, session recording, jump hosts, and AI tool integration.
Architecture
┌─────────────────────────────────────────────────────────┐
│ Frontend (React 18 + Vite 6 + TypeScript) │
│ ├── Zustand stores (10 stores) │
│ ├── xterm.js terminal emulator │
│ └── Tailwind CSS (Tokyo Night theme) │
├─────────────────────────────────────────────────────────┤
│ IPC: Tauri invoke (frontend↔backend) │
│ IPC: Named pipe / Unix socket (CLI↔backend) │
├─────────────────────────────────────────────────────────┤
│ Backend (Rust / Tauri 2) │
│ ├── SSH: russh 0.44 (async, non-Clone Handle/Channel) │
│ ├── SFTP: russh-sftp │
│ ├── DB: rusqlite (SQLite, bundled) │
│ ├── Async: tokio runtime │
│ └── Local Shell: portable-pty │
└─────────────────────────────────────────────────────────┘
Critical Knowledge
russh 0.44 Constraints
client::Handle<H>andChannel<S>are NOT Clone- Handle sharing: wrap in
Arc<tokio::sync::Mutex<Option<Handle>>> - Channel I/O: use
channel.into_stream()→tokio::io::split()for bidirectional data
Frontend → Backend Communication
- All Tauri calls go through
src/lib/tauri.ts→safeInvoke<T>(command, args) - Returns
InvokeResult<T>={ success: true; data: T }|{ success: false; error: TauriError } - For latency-sensitive input: use
sendInputBatched()with RAF batching - For fire-and-forget: use
fireAndForgetInvoke()
Session Lifecycle
SessionManager.create_with_credentials()
→ SshClient.connect_password/connect_key()
→ SshClient.open_shell()
→ Session { input: mpsc::Sender, output: broadcast::Sender }
→ Frontend attaches via Tauri event listener
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 · 164 lines · 1,840 tokens per session scan A 713f217503e3
vibeshell AGENTS.md is an instructions file published in the GitHub repository veithly/vibeshell (76 stars, last pushed 5d ago), licensed MIT. It adds 1,840 tokens to every session, about $0.0092 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
Ataru AGENTS.md
Instructions for lovstudio/Ataru, covering agents.md, design system, quick rules, color palette and common patterns.
Ataru CLAUDE.md
Instructions for lovstudio/Ataru, covering claude.md, design system, quick rules, color palette and common patterns.
ship-studio AGENTS.md
Instructions for ship-studio/ship-studio, covering agent instructions for ship studio, non-negotiables and layout in one breath.
claude-code-history-viewer CLAUDE.md
Instructions for jhlee0409/claude-code-history-viewer, covering claude.md, principal, project overview, development commands and recommended (using just).
oxideterm AGENTS.md
AGENTS.md instructions for AnalyseDeCircuit/oxideterm, covering oxideterm agent guidelines, 基本原则, 实现要求, 修改前检查 and 测试与验证.
speclens CLAUDE.md
Instructions for dansreis/speclens, covering claude.md, what it is, stack decisions, gates and file map.