Research paper exploring a gap: do models actually believe what their creators say about safety? I call this "meta-alignment"—not whether models do safe things, but whether they've internalized their lab's safety philosophy. Surveyed 10 frontier models with 40 questions derived from 70+ papers. Interactive tool included.
Research · AI Safety · Meta-Alignment
A framework that makes data science experiments reproducible. Jupyter notebooks hide state—you can't tell what order cells ran or what values held. Crystallize treats each experiment as an immutable record with automatic statistical checks. Long-term goal: infrastructure that lets AI agents run their own experiments.
Research Tooling · Reproducibility · Experimental Rigor
A protocol for declaring agent intent at the HTTP layer. The problem: when an agent makes a request, origins can't tell if it matches what the user actually wanted. User says "check weather," agent calls the bank API—how does the bank know to block it? Agent Tokens let agents declare their allowed scope upfront so middleware can enforce policy automatically.
Protocol · Intent · Policy
A proposed composition layer for MCP that lets agents submit multi-step plans as a single typed, auditable expression — without routing intermediate data through the model. Built entirely from already-specified MCP primitives, so it runs on top of the existing spec rather than forking it.
Protocol · MCP · Specification
Minimal replication of Anthropic's Golden Gate Claude on consumer hardware. Trains a Sparse Autoencoder on Qwen2.5-1.5B, discovers interpretable features, and steers model behavior — all on an RTX 3070 Ti. Demonstrates that mechanistic interpretability research is accessible beyond frontier-scale compute.
Interpretability · Sparse Autoencoder · Feature Steering
Fork of the companion code for "Verbalizable Representations Form a Global Workspace in Language Models" (Transformer Circuits), adding a backward "ghost-token" lens — the original Jacobian lens run in reverse, decoding residual states back into input-token space.
Interpretability · Global Workspace · Paper Companion
Adversarial token convergence experiments on MLX. Pits language models against each other to reveal training strata — solo mode converges in 2 iterations, adversarial mode never does. Under pressure, models collapse to their most defensible tokens, revealing composition invisible in normal evaluation.
Interpretability · Adversarial · Model Fingerprinting
Unittest for tool-using LLM agents. You don't fly a new airframe straight into a storm — Wind Tunnel is a reliability bench where agents run reproducible scenarios scored on four independent layers: outcome, trajectory, constraints, and robustness. Structured, diff-able, and runnable in CI. Open source from Syntropy Systems.
Agent Evals · Reliability · MCP
Kern
Event-driven ML service architecture enabling long-running agentic workflows. Designed around distributed systems constraints: Kafka for async (no HTTP timeouts), Redis for large results (Pusher limits), dual-mode for internal app + external API. 525K requests/month in production.
Systems Architecture · FastAPI · Kafka
Addressing the "Translation Gap" between users and engineers. An intelligent pipeline that converts vague bug reports into structured, high-entropy technical tickets using LLMs.
Product · AI Pipeline · SaaS
Your identity as an API endpoint. An MCP server that lets AI agents query your professional profile with structured tools instead of scraping HTML.
MCP · Cloudflare Workers · API
Local experiment orchestration: queue jobs, track metrics, wake up to results. A lightweight, self-hosted alternative to cloud experiment trackers — no accounts, no external dependencies, just SQLite and your filesystem. Open source from Syntropy Systems.
MLOps · Experiment Tracking · Python