Skip to content

Instantly share code, notes, and snippets.

View gusholcomb's full-sized avatar

Gus Holcomb gusholcomb

  • GBOB's Home for Wayward Livestock
  • Bozeman MT
  • 22:40 (UTC -12:00)
View GitHub Profile

Roadmap: The Context Flywheel for Commercial Software Development

Problem: LLMs are good at code. Commercial codebases are big and messy. The gap between "understands code" and "understands the business" is where AI coding stalls. Closing that gap — automatically — is the opportunity.

The Core Thesis

AI coding tools today operate with amnesia. Every session starts from zero context. The developer provides what the agent needs to know, or the agent re-discovers it by reading files. Neither scales.

Commercial codebases carry decades of accumulated decisions: why this pattern, not that one. What this field means to customers. Which systems break if you rename that event. This knowledge lives in people's heads, scattered docs, tribal lore, and implicit conventions. It's the reason a senior engineer at the company ships 10x faster than a senior engineer on day one — not skill, but context.

@gusholcomb
gusholcomb / PLAN-summary.md
Created March 29, 2026 02:54
RFC: Upstream sync, full observability, and session intelligence — panopticon plan documents

Panopticon: Upstream Sync & Full Observability

What we have today

Panopticon runs locally on each developer's machine and collects data from three sources:

  • Hooks — real-time events from Claude Code, Codex, and Gemini (tool calls, prompts, session lifecycle)
  • OTLP — native OpenTelemetry from each CLI (token metrics, log events)
  • Scanner — parsed from CLI session files on disk (per-turn token usage, tool calls, errors, reasoning traces)
@gusholcomb
gusholcomb / setup-prod
Created February 23, 2026 22:43
Panopticon: Claude Code interaction logging setup
#!/usr/bin/env bash
# Panopticon: One-command setup for Claude Code interaction logging
#
# Install:
# curl -fsSL https://raw.githubusercontent.com/fml-inc/fml/main/panopticon/setup-prod | bash
set -euo pipefail
PANOPTICON_URL="https://trustworthy-chihuahua-382.convex.site/panopticon/ingest"
CONFIG_DIR="$HOME/.config/panopticon"