bernstein copilot-instructions.md

Project-specific coding instructions for Bernstein, a deterministic Python orchestrator that coordinates command-line coding agents using separate Git worktrees.

In plain words
What is it for?
Use them to understand the project layout, constraints, testing and quality checks, and Git requirements.
Why use it?
They explain the architecture and rules developers must follow before changing or committing code.

Instructions file for GitHub Copilot

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/sipyourdrink-ltd/bernstein/copilot-instructions
Clone the repo
git clone --depth 1 https://github.com/sipyourdrink-ltd/bernstein

Made for: GitHub Copilot.

Per session 740 This file is loaded in full into every session.
When invoked 740 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.00740 $0.00740
Opus 5 $0.00370 $0.00370
Sonnet 5 $0.00148 $0.00148
Haiku 4.5 $0.00074 $0.00074

Measured yesterday against content hash 9c9ee5123513, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

bernstein copilot-instructions.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 yesterday.

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.

.github/copilot-instructions.md · 70 lines

How it starts

The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Copilot Instructions

Bernstein is a deterministic orchestrator for CLI coding agents (Python 3.12+), one git worktree per task. There is no model in the coordination loop - the orchestrator is deterministic Python, NOT an LLM - so the same plan replays to a byte-identical task graph.

Architecture

src/bernstein/
  core/                    # 21 sub-packages (orchestration, agents, tasks, quality, ...)
    __init__.py            # MetaPathFinder redirects old imports to sub-packages
    defaults.py            # All configurable constants (150+)
    server.py              # FastAPI task server (HTTP :8052)
    orchestration/         # Run loop, ticks, drain, scheduling
    agents/                # Lifecycle, spawning, identity, signals
    tasks/                 # Lifecycle, store, claim, retry, models
    quality/               # Gates, testing, review, architecture
    security/              # Auth, RBAC, permissions, compliance
    observability/         # Metrics, tracing, logging, alerting
    protocols/             # MCP, A2A, ACP, gRPC, cluster
    routing/               # Model routing, policies, bandit
    cost/                  # Tracking, budgets, forecasting
    tokens/                # Monitoring, context, compaction
    config/                # Seed parsing, settings, feature gates
    git/                   # Operations, worktrees, merge
    persistence/           # Store backends, WAL, checkpoints
    planning/              # Plans, recipes, planner
    communication/         # Bulletin, notifications, signals
    knowledge/             # Knowledge base, RAG, memory
    plugins_core/          # Plugin management, skills
  adapters/                # CLI agent adapters (claude, codex, gemini, etc.)
  cli/                     # CLI commands (commands/, display/, utils/, plan/)
  tui/                     # Textual TUI widgets

Key constraints

  • The orchestrator/scheduler is deterministic Python. NEVER add LLM calls for coordination.
  • Agents are short-lived: spawn per task, execute, exit. No long-running sessions.
  • All runtime state lives in .sdd/ as files (JSONL, YAML). No databases.
  • Use frozen dataclasses/TypedDict for all data - never raw dicts.
  • Type hints on ALL public functions. Pyright strict mode must pass.
  • Async for IO-bound, sync for CPU-bound.
  • New constants go in core/defaults.py, not inline.
  • New modules go in the appropriate sub-package, not in core/ root.

Read the full file on GitHub · 70 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. yesterday First seen · 70 lines · 740 tokens per session scan A 9c9ee5123513

Subscribe to this mod's changes

bernstein copilot-instructions.md is an instructions file published in the GitHub repository sipyourdrink-ltd/bernstein (1,038 stars, last pushed today), licensed Apache-2.0. It adds 740 tokens to every session, about $0.0037 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.