Skip to content
View srobinson's full-sized avatar
🌏
🌏

Organizations

@alphabio

Block or report srobinson

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
srobinson/README.md

do not repeat

I build tools that make AI agents waste fewer tokens and remember more.

Helioy is an ecosystem for AI-augmented software engineering. The thesis is simple: context windows are the bottleneck. Every token should be high-value. Navigation is waste. So I'm building the infrastructure to eliminate it.

What I'm building

attention-matters β€” Geometric memory engine on the SΒ³ hypersphere. Persistent recall for AI agents using quaternion drift, phasor interference, and Kuramoto coupling. One brain per developer, not per project. Rust.

fmm β€” Structural metadata for source code. Auto-generated sidecars that tell LLMs what a file does without reading it. 80-90% fewer file reads. Rust + tree-sitter.

mdcontext β€” Structural intelligence for markdown. Hybrid search (BM25 + semantic), section-level indexing, 80%+ token compression. TypeScript + Effect.

nancyr β€” Multi-agent orchestrator wrapping Claude Code CLI. Hub-and-spoke coordination, token budgets, adaptive TUI. Rust.

helioy-plugins β€” Claude Code plugin bundling skills, MCP servers, and hooks. The glue that connects everything.

nancy β€” The shell prototype that proved the architecture. Process supervision, token management, hook servers. Where it all started.

The stack

Three libraries that each solve one problem well:

attention-matters  β†’  memory      (what happened before?)
fmm                β†’  code        (what does this file do?)
mdcontext          β†’  documents   (what does this doc say?)

One orchestrator that composes them:

nancyr  β†’  spawn agents, compile context, coordinate work, learn from outcomes

All exposed as MCP servers. All usable independently. All designed to make the next AI interaction cheaper and more accurate than the last.

Principles

  • Ship working code. Fix forward.
  • CLI wrapping over direct API. Meet developers where they are.
  • One brain, not one brain per project. Cross-pollination is a feature.
  • No magic numbers. Constants derive from phi and pi. The math decides what matters.
  • Independent repos, not a monorepo. More scalable, independent brands.

Pinned Loading

  1. nancy nancy Public

    Process supervisor for Claude Code CLI sessions with token budgets and hooks

    Shell

  2. fmm fmm Public

    Sidecar metadata for source files β€” 80-90% fewer file reads for LLM agents

    Rust

  3. attention-matters attention-matters Public

    Geometric memory engine on the SΒ³ hypersphere β€” quaternion drift, phasor interference, MCP server

    Rust 1

  4. helioy-plugins helioy-plugins Public

    Claude Code plugin β€” 11 skills, 4 MCP servers for the Helioy AI ecosystem

  5. nancyr nancyr Public

    Process supervisor for Claude Code CLI β€” token budgets, hooks, and codebase intelligence

    Rust

  6. mdcontext mdcontext Public

    Structural markdown intelligence for LLMs β€” search, index, and summarize with 80% fewer tokens

    TypeScript