beeweave AGENTS.md

Project instructions for BeeWeave, an agent-oriented knowledge workbench with a command-line tool, skills, setup templates, tests, and browser extensions.

In plain words
What is it for?
They guide changes to BeeWeave's Python CLI, setup process, skills, extensions, tests, documentation, and proposed specifications.
Why use it?
They tell coding agents where project files belong, how user-generated directories work, and which development rules to follow.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/ptonlix/beeweave/agents-md
Clone the repo
git clone --depth 1 https://github.com/ptonlix/beeweave

Made for: Codex, OpenCode.

Per session 1,233 This file is loaded in full into every session.
When invoked 1,233 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce 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

Measured 2d ago against content hash 418259d3c6a2, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

AGENTS.md · 132 lines

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.py as a lifecycle-only entrypoint. Parser infrastructure belongs in beeweave/commanding.py; command arguments, interaction, and presentation belong in the explicitly registered beeweave/commands/ modules.
  • Resolve home, cwd, package data, config paths, and environment through the immutable AppContext at command execution time. Do not add import-time path globals or turn the context into a service locator.
  • Keep argparse.Namespace in 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 SetupService and its plan/execution components. Upgrade replay must construct SetupOptions and use the same service instead of emulating CLI arguments.
  • For terminal interaction in the BeeWeave CLI, route shared presentation through beeweave/ui.py instead 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.py helpers, and keep plain fallbacks readable.
  • Use the shared UI helpers consistently:
    • ui.print_setup_banner for the setup banner.
    • ui.select_prompt for interactive profile-style selections.
    • ui.checkbox_prompt for multi-select flows such as agent and optional global skill selection.
    • ui.text_prompt for validated text input, including new profile names and high-risk confirmation text.
    • ui.confirm_prompt for yes/no confirmations.
    • ui.print_summary_panel for 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_COLOR and 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 setup uses the shared banner, profile select, new-profile text input, agent/global-skill checkboxes, and setup summary panel.
    • bwe info uses the shared summary panel.
    • bwe uninstall uses shared confirmation and completion summary panel.
    • bwe profile set-default uses 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, or list; preserve their JSON/plain-text output for scripts and pipes.
  • Register new commands explicitly in beeweave/commands/__init__.py so help order remains deterministic. Do not add module scanning, decorators, or entry-point discovery for built-in commands.
  • Use apply_patch for manual file edits.
  • Do not recreate runtime vault/ or workbench/ directories in the repo root.
  • Preserve user work and unrelated dirty files.
  • Keep generated user-project instructions in bootstrap/AGENTS.md, not here.

Read the full file on GitHub · 132 lines

Changes

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.

  1. 2d ago First seen · 132 lines · 1,233 tokens per session scan A 418259d3c6a2

Subscribe to this mod's changes

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.

Related

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).

microsoft/vscode · 6,785 tokens

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.

github/spec-kit · 7,104 tokens

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.

openai/codex · 5,182 tokens

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.

langchain-ai/langchain · 4,345 tokens

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).

microsoft/vscode · 5,001 tokens

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.

vercel/next.js · 7,296 tokens