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/vibepod/vibepod-cli/agents-mdgit clone --depth 1 https://github.com/VibePod/vibepod-cliWhat 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.00472 | $0.00472 |
| Opus 5 | $0.00236 | $0.00236 |
| Sonnet 5 | $0.00094 | $0.00094 |
| Haiku 4.5 | $0.00047 | $0.00047 |
Grade A, and why
vibepod-cli 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 3d 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.
What it actually says
Project agent memory
This file is the project's committed home for project-intrinsic agent knowledge: build, test, release, architecture, and sharp-edge notes that should travel with the code.
- Add durable project-specific notes here as they are discovered through real work.
Adding a supported agent
To add a new agent, mirror the qwen (or freebuff) entry end-to-end:
SUPPORTED_AGENTS/AGENT_SHORTCUTS/AGENT_ALIASES/IMAGE_OVERRIDE_ENV_KEYS
and get_default_images() in src/vibepod/constants.py, the AGENT_SPECS
entry in src/vibepod/core/agents.py (mount contract must match the
vibepod-agents image entrypoint), the per-agent defaults in
src/vibepod/core/config.py, skills paths in
src/vibepod/commands/run.py::_agent_skill_paths, and the docs + tests
(docs/agents/index.md, README.md, docs/quickstart.md, docs/index.md,
docs/configuration.md, tests/test_{agents,cli,constants,run,task_cmd}.py).
The local-image fallback (VP_IMAGE_<AGENT> override + pull-failure fallback
in run.py/task.py) is how an unreleased image is exercised locally.
Tests
Runner is pytest (python -m pytest); CI also validates default images with
scripts/check_default_images.py. The suite is hermetic only when the host
~/.config/vibepod/config.yaml is not read: run with a throwaway
VP_CONFIG_DIR=/tmp/... when the host has a global config (its leaked
agents.*.env breaks test_config.py). ruff check + ruff format --check
and mypy are pre-commit gated.
Maintaining this file
Keep this file for knowledge useful to almost every future agent session in this project. Do not repeat what the codebase already shows; point to the authoritative file or command instead. Prefer rewriting or pruning existing entries over appending new ones. When updating this file, preserve this bar for all agents and keep entries concise.
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.
- 3d ago First seen · 36 lines · 472 tokens per session scan A dfbb639dec5b
vibepod-cli AGENTS.md is an instructions file published in the GitHub repository VibePod/vibepod-cli (140 stars, last pushed 6d ago), licensed MIT. It adds 472 tokens to every session, about $0.0024 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
oh-my-opencode-slim AGENTS.md
AGENTS.md instructions for alvinunreal/oh-my-opencode-slim, covering agent coding guidelines, project overview, commands, code style and general rules.
fast-resume AGENTS.md
Instructions for angristan/fast-resume, covering repository instructions, project, behavior, adding or changing an adapter and validation.
Agent-Context CLAUDE.md
Instructions for lx-wnk/Agent-Context, covering claude.md, project overview, commands, format all files and check formatting (ci-style).
claude-react-kit CLAUDE.md
Instructions for wahmoh/claude-react-kit, covering claude.md, commands, replace these with your project's actual commands, architecture — mandatory and component rules.
adeptability AGENTS.md
Instructions for itaywol/adeptability, a project described as: Cross-harness AI skill portability CLI. Author an agent skill once, sync it into Claude Code, Cursor, Copilot, Codex, OpenCode & 45+ AI coding agents. Safety scanner, content-hash drift detection. A package manager / dotfiles for AI coding agent skills.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).