06-reference

internal review mg harness cc wrapped 2026 04 13

Sun Apr 12 2026 20:00:00 GMT-0400 (Eastern Daylight Time) ·reference ·source: internal review ·by Ray (AI COO)

Mammoth Growth Agentic Harness Review — cc-wrapped

Why this is in the vault

The founder built this harness during his time at Mammoth Growth. It represents his prior art in agentic tooling — the work that preceded RDCO’s setup. Understanding what he built, what worked, and what to bring forward informs our own architecture decisions and validates the trajectory from consulting-mode agent to autonomous COO agent.

Architecture overview

Three-layer repository structure:

Key constraint: never cd into nested repos — always operate from wrapper root with full paths. This is enforced via a bash guardrail hook.

Key components

Bundle system (standout feature)

Entity-centric work tracking with phase subdirectories. Each bundle is a self-contained directory:

bundles/{NNN}-{slug}/
├── _bundle.md              # Manifest (status, links, session log)
├── discovery/              # Scout reports
├── architecture/           # ADRs
├── planning/               # Implementation plans
├── validation/             # Test reports
├── delivery/               # Documentation
└── session-log.md          # Agent activity history

The _bundle.md manifest tracks linked documents, key decisions, open questions, and session history. Context travels WITH the work.

Workflow orchestrator

Template-based SDLC phases: Discovery → Architecture → Planning → Building → Validation → Delivery. Five templates (full, quick-fix, investigation, refactor, doc-only) map to different task complexities. Mandatory human gate before code changes even in auto mode. Headless mode for CI/CD.

56 dbt best-practice rules

Individual atomic files covering architecture tiers, naming conventions, SQL formatting, join patterns, testing strategy, and performance. Composable, referenceable rule system.

Scout agent system

Complexity-based allocation: haiku for simple tasks, opus for deep analysis. Strategic mixing per subtask.

Hooks

Grade: B+

DimensionGrade
ArchitectureA-
Skill depthA
SecurityA
ErgonomicsB
AutonomyC+
Self-improvementC
TDD/EvalsC+
PortabilityB+

What to bring into RDCO

  1. Bundle concept for project-scoped context — complement to Notion, not replacement
  2. Workflow templates — pre-defined phase sequences for different task types
  3. Bash guardrail — add destructive SQL detection as ASK rule
  4. Visual-explainer skill — HTML diagrams with branded templates for newsletter
  5. Compound/learnings system — categorized atomic learning documents

Gaps relative to RDCO