Production-grade infrastructure for AI-assisted research software
Project description
AgentBible
Why AgentBible Exists
When Copilot or Claude generates quantum computing code, how do you know it's physically correct? When you run an experiment, how do you reproduce it 6 months later?
AgentBible solves both problems:
- Physics validators catch invalid code at runtime (
@validate_unitary,@validate_density_matrix, etc.) - Automatic provenance captures everything needed for reproducibility (git SHA, random seeds, package versions, hardware info)
Result: Research code you can trust and reproduce.
Install Now
pip install agentbible
# With HDF5 provenance support
pip install agentbible[hdf5]
# Full development install
pip install agentbible[all]
The Problem AgentBible Solves
# WITHOUT AgentBible - silent bug, hours of debugging
def create_hadamard():
return np.array([[1, 1], [1, 0]]) / np.sqrt(2) # Bug: should be [1, -1]
# This is NOT unitary. You won't catch it until your quantum simulation
# produces nonsense results and you spend hours debugging.
H = create_hadamard() # No error - bug silently propagates
# WITH AgentBible - catches it immediately
from agentbible import validate_unitary
@validate_unitary
def create_hadamard():
return np.array([[1, 1], [1, 0]]) / np.sqrt(2) # Same bug
H = create_hadamard()
# UnitarityError: Matrix is not unitary
# Expected: U@U.H = I (conjugate transpose times matrix equals identity)
# Got: max|U@U - I| = 5.00e-01
# Function: create_hadamard
#
# Reference: Nielsen & Chuang, 'Quantum Computation and Quantum Information'
# Guidance: Your quantum gate is not reversible. Common causes:
# - Missing normalization factor (e.g., 1/sqrt(2) for Hadamard)
# - Incorrect matrix elements or signs
The bug is caught immediately, with an educational error message.
Quick Start
Create a New Project
bible init my-quantum-sim --template python-scientific
cd my-quantum-sim
source .venv/bin/activate
pip install -e ".[dev]"
pytest # 28 tests pass immediately
Use Physics Validators
from agentbible import validate_unitary, validate_density_matrix
import numpy as np
@validate_unitary
def create_hadamard():
"""Returns Hadamard gate - validated as unitary."""
return np.array([[1, 1], [1, -1]], dtype=complex) / np.sqrt(2)
@validate_density_matrix
def create_mixed_state():
"""Returns maximally mixed state - validated as density matrix."""
return np.eye(2, dtype=complex) / 2
# Validation happens automatically on return
H = create_hadamard() # OK - unitary
rho = create_mixed_state() # OK - trace=1, Hermitian, positive semi-definite
Validate Data Files
# Validate a numpy matrix
bible validate state.npy --check unitarity
# Validate HDF5 with all checks
bible validate results.h5 --check all
# Multiple specific checks
bible validate matrix.npy -c hermiticity -c trace -c positivity
Save Data with Provenance
from agentbible.provenance import save_with_metadata, load_with_metadata
import numpy as np
# Save with full reproducibility metadata
save_with_metadata(
"results.h5",
{"density_matrix": rho, "eigenvalues": np.linalg.eigvalsh(rho)},
description="Ground state calculation",
)
# Load with metadata
data, metadata = load_with_metadata("results.h5")
print(metadata["git_sha"]) # "a1b2c3d..."
print(metadata["timestamp"]) # "2026-01-01T12:00:00+00:00"
print(metadata["packages"]) # {"numpy": "1.26.0", ...}
print(metadata["pip_freeze"]) # Full pip freeze for exact reproduction
print(metadata["hardware"]) # CPU model, GPU info, memory
Physics-Aware Testing
from agentbible.testing import physics_test, deterministic_seed
import numpy as np
@physics_test(checks=["unitarity", "hermiticity"])
def test_pauli_x():
"""Automatically validates return value."""
return np.array([[0, 1], [1, 0]], dtype=complex)
def test_reproducible(deterministic_seed):
"""Seeds are set to 42 for reproducibility."""
random_value = np.random.rand()
assert random_value == 0.3745401188473625 # Always the same
Who This Is For
AgentBible is for:
- Researchers using AI agents (Claude, Copilot, Cursor) to write scientific code
- Quantum computing developers who need correctness guarantees
- ML/Physics/HPC developers who care about reproducibility
- PhD students who want rigorous software from day one
- Anyone who has lost hours debugging a subtle numerical bug
AgentBible is NOT for:
- Enterprise web applications
- Frontend/GUI projects
- Code that doesn't involve numerical computation
Features
Validators
| Decorator | Validates |
|---|---|
@validate_unitary |
U @ U.H = I |
@validate_hermitian |
A = A.H |
@validate_density_matrix |
Hermitian, trace=1, positive semi-definite |
@validate_probability |
Value in [0, 1] |
@validate_probabilities |
Array of probabilities |
@validate_normalized |
Sum or norm = 1 |
@validate_positive |
Value > 0 |
@validate_non_negative |
Value >= 0 |
@validate_range(min, max) |
Value in [min, max] |
@validate_finite |
No NaN or Inf |
All validators:
- Check for NaN/Inf before physics checks (catches numerical instability first)
- Support both
rtolandatoltolerances - Provide educational error messages with academic references
CLI Commands
bible init <name> # Create project from template
bible validate <file> # Validate physics constraints
bible context # Generate AI context
bible info # Show installation info
Provenance Metadata
save_with_metadata() automatically captures:
- Git SHA, branch, dirty status, and diff (if uncommitted changes)
- UTC timestamp (ISO 8601)
- Random seeds (numpy, python, torch)
- Hostname, platform, Python version
- Package versions (numpy, scipy, h5py, torch, etc.)
- Full
pip freezeoutput for exact environment reproduction - Hardware info (CPU model, core count, memory, GPU details)
Testing Fixtures
| Fixture | Purpose |
|---|---|
deterministic_seed |
Sets numpy/random to seed 42 |
tolerance |
Returns {"rtol": 1e-10, "atol": 1e-12} |
quantum_tolerance |
Returns {"rtol": 1e-6, "atol": 1e-8} |
Project Templates
Python Scientific (python-scientific)
Pre-configured with:
- ruff for linting (strict rules)
- mypy in strict mode
- pytest with 70% coverage minimum
- Physics validation helpers
.cursorrulesfor AI agents
bible init my-project --template python-scientific
C++ HPC/CUDA (cpp-hpc-cuda)
Pre-configured with:
- CMake with zero-warning policy
- GoogleTest for testing
- CUDA support (optional)
- Physical validation functions
bible init my-project --template cpp-hpc-cuda
The 5 Principles
- Correctness First - Physical accuracy is non-negotiable
- Specification Before Code - Tests define the contract
- Fail Fast with Clarity - Validate inputs, descriptive errors
- Simplicity by Design - Functions <= 50 lines, single responsibility
- Infrastructure Enables Speed - CI, tests, linting from day one
Status
v0.1.1 (Alpha) - Core validators working, API stable, ready for real use.
See the full ROADMAP.md for what's coming next.
Documentation
Full documentation: rylanmalarchick.github.io/research-code-principles
- Getting Started
- Validators Guide
- Provenance Guide
- API Reference
- Philosophy - Why good code matters
- Style Guide - Coding conventions
- CHANGELOG - Release history
Getting Help
- Questions? Open a GitHub Issue
- Found a bug? Report it here
- Want to contribute? See CONTRIBUTING.md
- Security issues? See SECURITY.md
- Email: rylan1012@gmail.com
Development
# Clone and setup
git clone https://github.com/rylanmalarchick/research-code-principles
cd research-code-principles
./bootstrap.sh
# Or manually
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev,hdf5]"
# Run tests
pytest tests/ -v
# Lint and type check
ruff check agentbible/
mypy agentbible/
License
MIT - Use and adapt freely.
Author
Rylan Malarchick - rylan1012@gmail.com
v0.1.1 - Documentation site, Dependabot, C++ template (January 2026)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agentbible-0.2.1.tar.gz.
File metadata
- Download URL: agentbible-0.2.1.tar.gz
- Upload date:
- Size: 85.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
003f0ace0add0f1d23990950bc8a067ea2e4dcdd4366aa019dbad7360b68a7d6
|
|
| MD5 |
d08b84ab8ae9abfe6595f2ee5a699fbe
|
|
| BLAKE2b-256 |
35d958fecb31220f3e564628eb8873939379509b4dd82dba6a40aea52249212b
|
Provenance
The following attestation bundles were made for agentbible-0.2.1.tar.gz:
Publisher:
ci.yml on rylanmalarchick/research-code-principles
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentbible-0.2.1.tar.gz -
Subject digest:
003f0ace0add0f1d23990950bc8a067ea2e4dcdd4366aa019dbad7360b68a7d6 - Sigstore transparency entry: 787648793
- Sigstore integration time:
-
Permalink:
rylanmalarchick/research-code-principles@ac3e63f195f71bfab47e10576cfd7e1c0ac09a1d -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/rylanmalarchick
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@ac3e63f195f71bfab47e10576cfd7e1c0ac09a1d -
Trigger Event:
push
-
Statement type:
File details
Details for the file agentbible-0.2.1-py3-none-any.whl.
File metadata
- Download URL: agentbible-0.2.1-py3-none-any.whl
- Upload date:
- Size: 70.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa70a6b6bbee0294966a9394c2bdb66a194aee20153cd03df4a7d1a0e732e89d
|
|
| MD5 |
87c908aea4a36ed3c96af02248af5387
|
|
| BLAKE2b-256 |
320f4ec82c10a52e09ed8ef98ee85f687744f43588f762834c011b107153e0d5
|
Provenance
The following attestation bundles were made for agentbible-0.2.1-py3-none-any.whl:
Publisher:
ci.yml on rylanmalarchick/research-code-principles
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentbible-0.2.1-py3-none-any.whl -
Subject digest:
aa70a6b6bbee0294966a9394c2bdb66a194aee20153cd03df4a7d1a0e732e89d - Sigstore transparency entry: 787648795
- Sigstore integration time:
-
Permalink:
rylanmalarchick/research-code-principles@ac3e63f195f71bfab47e10576cfd7e1c0ac09a1d -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/rylanmalarchick
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
ci.yml@ac3e63f195f71bfab47e10576cfd7e1c0ac09a1d -
Trigger Event:
push
-
Statement type: