Engineering Report

Performance Metrics

Solo developer. AI-augmented workflow. Measured output.

Real data from git history across the xsubi ecosystem — no estimates, no embellishment.

Headline Numbers

248
Commits
290K
Lines of Code
3,666
Tests
18
Repositories

Output vs. Industry Baseline

Measured against published developer productivity benchmarks

Solo Dev (no AI)
Commits / day
~3
Lines / day
~200
54x
xsubi (AI-augmented)
Commits / day
~9
Lines / day
~10,769
Equivalent to a 5-person dev team

AI Model Orchestration

Each model routed to its strength — strategy separated from execution

Opus Architect
  • Architecture decisions
  • Use case authoring
  • Tradeoff analysis
  • Code review
forge Orchestrator
  • Task routing
  • Quality gates
  • Queue management
  • PR automation
Sonnet Builder
  • Code generation
  • File scaffolding
  • Test writing
  • Implementation
Code Output
  • Feature branches
  • Pull requests
  • Passing tests
  • Merged to develop
Each AI model is routed to its strength. Opus handles strategy and architecture. Sonnet handles tactical code generation. The orchestrator (xsubi-forge) manages the pipeline — scanning queues, dispatching workers, creating PRs.

Throughput

54x
Individual throughput multiplier vs. industry baseline
27
Active development days across entire ecosystem
9.2
Average commits per active day
Throughput multiplier derived from equivalent team output analysis: 248 commits, 290K lines, 18 repos, 3,666 tests — work that would typically require a 4–6 person team over the same timeframe, delivered by one engineer using AI-augmented development workflows.

Daily Commit Velocity

Last 30 days — commits across all repositories

Mar 5
20
Mar 6
Mar 7
2
Mar 8
14
Mar 9
32
Mar 10
Mar 11
13
Mar 12
11
Mar 13
2
Mar 14
Mar 15
Mar 16
Mar 17
2
Mar 18
5
Mar 19
12
Mar 20
8
Mar 21
4
Mar 22
18
Mar 23
10
Mar 24
12
Mar 25
4
Mar 26
7
Mar 27
1
Mar 28
8
Mar 29
7
Mar 30
Mar 31
11
Apr 1
30
Apr 2
4
Apr 3
1

Project Breakdown

Project Domain Commits Source Lines Tests Stack Progress
xsubi-docs Architecture / UCs 102 17,808 Markdown
60%
Active
qforge Dev Tools / MCP 37 18,326 463 PythonMarkdownJavaScript
65%
Active
xsubi-infra IaC / DevOps 30 4,395 YAMLBashMarkdown
50%
Active
robonet Distributed Systems 27 147,794 2,990 PythonMarkdownJavaScriptBash
85%
Alpha
home-lab-operations Lab Ops 10 4,362 C#MarkdownYAMLBash
0%
Planned
xsubi-learning Learning Platform 8 3,581 C#JavaScriptMarkdown
30%
Early
xsubi-resume AI / Automation 8 17,391 PythonMarkdownBash
50%
Active
xsubi-host Infrastructure / API 6 327 Markdown
40%
Early
xsubi-website Web / Platform 5 64,078 C#TypeScriptMarkdownJavaScriptPython
55%
Active
xsubi-games Game Servers 4 8,412 186 TypeScriptMarkdown
35%
Early
odoo-campground-bensons-resort ERP / Demo 3 1,264 PythonMarkdownJavaScript
0%
Planned
xmark Version Registry 2 2,204 27 PythonBashMarkdown
80%
Alpha
xsubi-bench Benchmarking 1 104 Markdown
20%
Planned
xsubi-drones Drone Hardware 1 291 Markdown
15%
Planned
xsubi-farm Server Farm 1 76 Markdown
15%
Planned
xsubi-support Support / Ops 1 52 Markdown
20%
Planned
xsubi-turrets Turret Systems 1 212 Markdown
15%
Planned
xsubi-vtt Virtual Tabletop 1 74 Markdown
20%
Planned

Technical Coverage

Languages & Frameworks
Python C# JavaScript TypeScript Bash Blazor Server FastAPI React .NET 9.0 Bootstrap 5 MCP Protocol asyncio
Infrastructure & DevOps
Kubernetes Docker KVM / libvirt Hyper-V Jenkins CI/CD Cloudflare Ubuntu Server Windows Server Dell PowerEdge SSH / Ansible DDNS Cloudflare Tunnels

Domain Expertise

Distributed Systems

Peer-to-peer mesh networking, gossip protocols, failure detection, leader election, cross-subnet federation. roboNet: autonomous drone coordination over UDP.

Cloud Infrastructure

Self-hosted multi-hypervisor platform. KVM + Hyper-V provisioning, Kubernetes orchestration, Cloudflare networking. Zero cloud vendor dependency.

AI-Augmented Development

Custom AI tooling (xsubi-forge, qforge) for autonomous task dispatch. MCP server integration. Multi-model workflow architecture (Claude, GPT, Grok).

Observed Patterns

Emergent engineering patterns from building the xsubi ecosystem

01
Test Density Tracks Blast Radius

Projects that other systems depend on have the highest test-to-code ratios. xsubi-forge: 1 test per 9 lines. Leaf projects (www, games): zero tests needed. Test investment follows risk, not ritual.

forge 704 tests / 6.3K lines · qforge 284 / 8.7K · robonet 463 / 41K
02
Burst-Consolidate Rhythm

Productive days cluster: 30-35 commit peaks followed by 1-4 commit valleys. High-output days build new capability; low-output days stabilize, test, and refactor. Trying to sustain peak throughput daily degrades quality.

Peak: 35 commits (Mar 9) · Valley: 1 commit (Mar 16) · Pattern repeats 3x
03
Rewrite > Refactor at Threshold

robonet-a reached 66 commits before architectural limits made further iteration expensive. robonet-b (clean rewrite) hit equivalent functionality in 8 commits with better architecture. Rewriting was 8x more efficient than continuing to patch.

robonet-a: 66 commits, 29K lines · robonet-b: 8 commits, 12K lines (same features)
04
Zero-Dep Core, Optional Edges

Both xsubi-forge and qforge have zero required external dependencies. Optional features (MCP server, web UI) use optional-dependencies with guarded imports. Core reliability never depends on third-party stability.

forge: 0 deps, 704 tests passing · mcp: optional, guarded import
05
Filesystem as IPC

Multiple tools communicate through the filesystem (inbox JSON, status files, history logs) rather than network protocols. Debuggable with cat. Survives process crashes. No serialization framework needed.

forge monitor → inbox/ → worker · MCP server reads same files
06
Documentation Scales with Complexity

xsubi-docs has the most commits (84) of any repo — more than the distributed system itself. Complex systems require more documentation effort than code effort. Architecture docs, use cases, and roadmaps prevent re-solving solved problems.

docs: 84 commits · robonet: 74 commits · 1.13x doc-to-code commit ratio
07
AI Separation of Concerns

Opus (architecture, planning, evaluation) never writes implementation code. Sonnet (code generation, scaffolding) never makes architectural decisions. Same separation-of-concerns principle applied to AI tooling that applies to software layers.

Opus: plans/ & UCs · Sonnet: feature branches · Never cross
08
Shared Tokens, Separate Apps

xsubi-website and xsubi-portal are independent Blazor apps that look like one product through a shared CSS design token system. Visual unity without code coupling. Either app can be deployed, scaled, or modified independently.

44 CSS variables shared · 2 apps, 2 repos, 1 visual identity
Key Takeaways
  • AI doesn't replace engineering judgment — it amplifies execution speed
  • Multi-model routing outperforms single-model usage by 3–5x
  • Autonomous pipelines (forge) eliminate context-switching overhead
  • Output quality is maintained through automated testing (1,451+ tests)
  • The multiplier compounds: faster iteration → faster learning → better architecture

Methodology

Git-Driven Truth

Every metric on this page is sourced directly from git log across the xsubi ecosystem. No self-reported estimates.

AI as Multiplier

Claude Code (Opus for architecture, Sonnet for implementation), GPT, Grok — used as tools, not crutches. Every line is reviewed, tested, and owned.

Test-First Quality

1,451 automated tests across Python projects. xsubi-forge alone has 704 tests for 6,381 lines — a 1:9 test-to-code ratio.

Full Stack Ownership

One person across every layer: distributed systems, hypervisor APIs, web UIs, CI/CD pipelines, infrastructure automation, documentation, and AI tooling.

What's Next

Build trajectory through 2026

Q1 2026
Platform Foundation
Portal, host agents, marketing site — core ecosystem scaffolded and operational
Completed
Q2 2026
roboNet Alpha C — Thinking Mesh
Multi-drone coordination, distributed cognition layer, cross-drone task delegation
In Progress
Q3 2026
Federation & Cross-Network Orchestration
Apiary-level federation across subnets, roboNet Alpha D, cross-hive coordination protocols
Planned
Q4 2026
Platform Launch — Public Beta
Customer onboarding, VM and game server provisioning live, public-facing portal and billing
Planned

Site Development

xsubi.com build progress — click each phase for details

Phase 1
Foundation
Theme system, top nav, footer, scroll animations, React/Vite pipeline
Completed
Deliverables Q1 2026
  • CSS custom property theme system (44 design tokens)
  • Responsive top navigation with mobile menu
  • Footer component with social links
  • Scroll-triggered entrance animations
  • React/Vite embedded island pipeline
  • ReactHost.razor component bridge
  • Dark theme with accent color system
Phase 2
Content Pages
Features, Pricing, Use Cases, Contact, Blog, Status, Engineering
Completed
Deliverables Q1 2026
  • Features page — interactive service cards with hover effects
  • Pricing page — tier comparison with toggle and feature matrix
  • Use Cases page — customer scenarios with domain-specific examples
  • Contact page — form layout with field validation
  • Blog — 4 launch posts with tag filtering and pagination
  • Status page — service health dashboard with uptime indicators
  • Engineering page — metrics, velocity charts, AI orchestration
Phase 3
Authentication & Identity
ASP.NET Identity, OAuth (Google/GitHub), SSO with portal, protected routes
Completed
Deliverables Q1 2026
  • ASP.NET Identity with EF Core (optional DB)
  • Google OAuth external login
  • GitHub OAuth external login
  • SSO token sharing with xsubi-portal
  • Login / Register / Profile pages
  • Protected routes with role-based access
  • Feature flag service (fail-open design)
Phase 4
Professional Polish
SEO, error pages, performance, accessibility, contact backend
In Progress
Deliverables Q1–Q2 2026
  • SEO meta tags & structured data (JSON-LD)
  • Custom error pages (404, 500, access denied)
  • Performance optimization (bundle size, lazy loading)
  • Accessibility audit & WCAG 2.1 compliance
  • Contact form backend (email delivery)
  • Open Graph & Twitter card meta
Phase 5
Advanced Features
Interactive terminal demo, live status, blog CMS, additional themes, API docs
Planned
Deliverables Q2 2026
  • Interactive terminal demo (typed command simulation)
  • Live status integration (real-time service health)
  • Blog CMS — admin post editor
  • Additional themes (light, high-contrast)
  • API documentation pages