// projects

Research, publications & open source

A working index for AI systems research, protocol ideas, agent architectures, vector search experiments, and open-source tools.

agent-security-skill
OWASP-aligned AI security review skill for coding agents.
AI Security
Portable security review skill for Claude Code, Codex, Cursor, Copilot, and Windsurf. Packages OWASP LLM 2025, GenAI, and agentic security guidance into instructions that coding agents can apply during code generation, edits, and PR review. Covers 33 categories across LLM, RAG, MCP, tool, memory, permission, approval-flow, and orchestration risks.
GitHub
Python · MIT · 33 checks · 5 agent surfaces
openresearch-mcp
Zero-auth multi-source research MCP server for AI agents.
MCP Research
Research MCP server that gives MCP-compatible agents access to web search, webpages, PDFs, GitHub repositories, Hacker News, Stack Overflow, OpenAlex, Semantic Scholar, arXiv, and YouTube transcripts without requiring API keys. Supports stdio for desktop clients and HTTP for agent stacks that connect to a local MCP endpoint.
GitHub PyPI
Python · MCP · zero API keys · stdio + HTTP
ATA Protocol
Session-layer attestation for who authorized communication.
Protocol
Authorization Type Attestation protocol for agentic communication systems, now published as an active IETF Internet-Draft. TLS secures the channel; ATA identifies the class of party that authorized the session. The draft targets H2H, H2AI, AI2H, and AI2AI communication states across TLS, QUIC, MLS, WebRTC, MCP, and A2A-style systems without replacing identity layers such as mTLS, OAuth, SPIFFE, or FIDO2.
GitHub IETF Draft HF Demo
IETF Internet-Draft · Python · Apache-2.0
bitplane-ann
Resolution Capacity objective for progressive ANN search.
Research Artifact
English repo and PDF research artifact for the June 2026 paper "Resolution Capacity: Beyond Reconstruction MSE for Progressive Approximate Nearest-Neighbor Search". Shows why reconstruction MSE is the wrong objective for progressive RAG retrieval, introduces Resolution Capacity, compares Hadamard and PCA rotations, includes Python reference experiments, Rust-backed 25k/1M validation, SAQ comparison notes, and R6 beam+rerank evidence.
GitHub DOI
Python · Apache-2.0 code · CC BY 4.0 paper · DOI
CPAR Framework
Blind iterative peer review by a cross-provider AI panel.
Multi-Agent Review
Cross-Provider Adversarial Review framework where independent AI reviewers from different providers review a document blindly across iterations until consensus convergence. The design composes model strengths through the document as shared medium, uses web-grounded validation each round, and reduces herding, single-model blind spots, and default complimentary bias.
GitHub HF Demo
Python · Gradio · Apache-2.0 · working system + benchmarks
hnsw-turboquant-glove
TurboQuant-style HNSW scaling curve on GloVe-200.
Vector Search
Benchmark and live demo for vector compression on real GloVe-200 embeddings. The app normalizes vectors, applies randomized Hadamard rotation, fits Lloyd-Max scalar codebooks for 1, 2, 4, 6, and 8 bits, rebuilds HNSW, and plots Recall@10 against compression. The practical result: 8-bit is the safe setting, 6-bit is aggressive but usable, and 4-bit needs reranking.
GitHub HF Demo
Python · Gradio · MIT · Hugging Face Space
RCI — Recursive Convergent Inference
Bottom-up MoE expansion until output convergence.
Inference Research
Recursive Convergent Inference proposes dynamic module expansion for neural inference: start from a minimal active expert subset, expand through an affinity graph, and stop when the model's next-token distribution converges. Evaluated on OLMoE-1B-7B across 150 reasoning tasks, with the notable finding that the model's computational demand diverges from human difficulty labels.
GitHub Colab
Jupyter · Apache-2.0 · Colab reproducible