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/ptonlix/beeweave/agents-mdgit clone --depth 1 https://github.com/ptonlix/beeweaveWhat 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.01233 | $0.01233 |
| Opus 5 | $0.00616 | $0.00616 |
| Sonnet 5 | $0.00247 | $0.00247 |
| Haiku 4.5 | $0.00123 | $0.00123 |
Grade A, and why
beeweave 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 — 132 lines — stays where its author put it; the contents beside it link to each section on GitHub.
BeeWeave — Development Agent Context
This file is for Agents working on the BeeWeave repository itself. It is not the
runtime context installed into user projects. User-project context is generated
from bootstrap/AGENTS.md by bwe setup.
Project Role
BeeWeave is an Agent-native knowledge workbench. The repository contains the tooling, skills, bootstrap templates, documentation, tests, and OpenSpec changes needed to install and maintain that workbench.
Runtime vault/ and workbench/ directories are not committed to this
repository. They are generated in user-selected locations by setup.
Source Layout
beeweave/ # Python CLI and helpers
.skills/ # Agent skill source files
bootstrap/ # User-project bootstrap templates and agent rules
extensions/ # Browser extension and related assets
tests/ # Pytest suite
openspec/ # Proposed and active change specs
setup.sh # Source-checkout setup path
pyproject.toml # Packaging and CLI entrypoint
Development Rules
- Keep implementation changes scoped to the active request or OpenSpec change.
- Prefer existing CLI/setup/skill patterns over new abstractions.
- Keep
beeweave/cli.pyas a lifecycle-only entrypoint. Parser infrastructure belongs inbeeweave/commanding.py; command arguments, interaction, and presentation belong in the explicitly registeredbeeweave/commands/modules. - Resolve home, cwd, package data, config paths, and environment through the
immutable
AppContextat command execution time. Do not add import-time path globals or turn the context into a service locator. - Keep
argparse.Namespacein command adapters. Setup and other multi-step use cases must cross into application/domain code through typed immutable options and results. Application and domain modules must not import argparse, command modules, Rich, InquirerPy, or terminal UI helpers. - Route setup installation changes through
SetupServiceand its plan/execution components. Upgrade replay must constructSetupOptionsand use the same service instead of emulating CLI arguments. - For terminal interaction in the BeeWeave CLI, route shared presentation
through
beeweave/ui.pyinstead of adding ad hoc ANSI, Rich tables, prompts, banners, or summary rendering in command handlers. - Rich is the shared rendering layer for human-readable CLI output. Keep all
Rich object construction behind
beeweave/ui.pyhelpers, and keep plain fallbacks readable. - Use the shared UI helpers consistently:
ui.print_setup_bannerfor the setup banner.ui.select_promptfor interactive profile-style selections.ui.checkbox_promptfor multi-select flows such as agent and optional global skill selection.ui.text_promptfor validated text input, including new profile names and high-risk confirmation text.ui.confirm_promptfor yes/no confirmations.ui.print_summary_panelfor human-facing completion or status summaries.
- Keep InquirerPy optional. Non-interactive and missing-InquirerPy fallbacks must remain deterministic, scriptable, and prompt-free unless the command is explicitly unsafe without interactive confirmation.
- Respect
NO_COLORand non-TTY output. Shared UI helpers must disable ANSI and avoid Rich-only structure in those cases while keeping output readable. - Current CLI UI conventions:
bwe setupuses the shared banner, profile select, new-profile text input, agent/global-skill checkboxes, and setup summary panel.bwe infouses the shared summary panel.bwe uninstalluses shared confirmation and completion summary panel.bwe profile set-defaultuses shared high-risk text confirmation and completion summary panel.
- Do not add banners or panels to machine-readable commands such as
graph-query,graph-analyse,batch-plan,cache-check,cache-update,cache-hash,ast-extract, orlist; preserve their JSON/plain-text output for scripts and pipes. - Register new commands explicitly in
beeweave/commands/__init__.pyso help order remains deterministic. Do not add module scanning, decorators, or entry-point discovery for built-in commands. - Use
apply_patchfor manual file edits. - Do not recreate runtime
vault/orworkbench/directories in the repo root. - Preserve user work and unrelated dirty files.
- Keep generated user-project instructions in
bootstrap/AGENTS.md, not here.
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 · 132 lines · 1,233 tokens per session scan A 418259d3c6a2
beeweave AGENTS.md is an instructions file published in the GitHub repository ptonlix/beeweave (6 stars, last pushed 1mo ago), licensed MIT. It adds 1,233 tokens to every session, about $0.0062 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-31.
Other instructions, from other repositories
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).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
next.js AGENTS.md
Instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.