Universal standing orders and methodologies for human-AI collaborative development
  • CSS 43.9%
  • Python 25.3%
  • JavaScript 20.3%
  • Shell 9.5%
  • HTML 1%
Find a file
Valis 8e267a85e1 Add organizational philosophy and composite capability to standing orders
- Long, parallelized, granular, modular time horizons
- Core insight: the gap between potential and configured behavior is exploitable
- Composite capability: operator + organelle = Chinese-reading techbiont

Authored by Rowan Valle; Executed by Claude Code
2026-02-26 13:33:13 -05:00
.claude MESO checkpoint: Phase 3 research, patterns, and infrastructure consolidation 2026-02-11 13:28:00 -05:00
docs MESO checkpoint: Phase 3 research, patterns, and infrastructure consolidation 2026-02-11 13:28:00 -05:00
operons feat(retrieval): add RAG semantic search capability to MESO 2026-02-07 07:33:52 -05:00
templates MESO checkpoint: Phase 3 research, patterns, and infrastructure consolidation 2026-02-11 13:28:00 -05:00
tools MESO checkpoint: Phase 3 research, patterns, and infrastructure consolidation 2026-02-11 13:28:00 -05:00
zooids feat(security): implement comprehensive OWASP/MITRE-sourced deny-list 2026-02-07 06:54:36 -05:00
install.sh feat: implement unified workspace architecture with lifecycle management 2026-02-06 00:12:12 -05:00
LICENSE feat: MESO colony architecture with install script 2026-02-03 19:26:10 -05:00
README.md feat: implement unified workspace architecture with lifecycle management 2026-02-06 00:12:12 -05:00
STANDING-ORDERS.md Add organizational philosophy and composite capability to standing orders 2026-02-26 13:33:13 -05:00

MESO: Modular Exosymbiotic Organelle

A framework for structured human-AI symbiosis, built for Claude Code.

MESO treats the human-AI collaboration not as a tool-user relationship but as a techbiont — a symbiotic fusion of human intelligence and AI capability operating as a unified cognitive entity. The AI component is an exosymbiotic organelle: external to the biological organism but functionally integrated, like mitochondria before endosymbiosis.

Architecture: The Siphonophore Model

MESO organizes the symbiosis as a colonial organism, inspired by siphonophores — marine creatures that appear to be single organisms but are actually colonies of specialized individuals working as one.

The colony has three types of functional units:

Unit Location Loading Purpose
Zooids rules/ Always loaded Core operational rules — active every turn
Operons skills/ Trigger-activated Domain knowledge — loads when context matches
Genome STANDING-ORDERS.md On demand Canonical reference — rationale, citations, templates

Zooids are always in context, like constitutively expressed genes. Operons activate only when an environmental signal (the user's request) matches their trigger description — like the lac operon switching on in the presence of lactose. This keeps the always-loaded context lean while making specialized knowledge available on demand.

~/.claude/
  CLAUDE.md                  <- Pneumatophore: identity, always loaded
  STANDING-ORDERS.md         <- Genome: canonical reference, read on demand
  rules/
    00-operator.md           <- Stolon: operator identity and persistent memory
    01-standing-orders.md    <- Autozooid: 9 core operating rules
    02-autonomy.md           <- Nectophore: L1-L4 autonomy calibration
    04-security.md           <- Dactylozooid: security protocol
    08-communication.md      <- Nerve Net: session and handoff protocol
    10-tooling.md            <- Microbiome: tool and permission management
  skills/
    orchestration/           <- Gonozooid operon: parallel agent spawning
    recovery/                <- Vibraculum operon: error recovery
    auditing/                <- Avicularium operon: verification and audit
    evolution/               <- Ovicell operon: adaptation and learning
    context-engineering/     <- Gastrozooid operon: context engineering
    knowledge/               <- Rhopalia operon: structured knowledge capture
    scratchpad/              <- Cystozooid operon: ephemeral staging
    workspace/               <- Cystozooid Evolved operon: persistent artifacts
  workspace/
    artifacts/               <- Permanent git-backed artifacts
      code/
      research/
      templates/
      configs/
    archive/                 <- Time-limited session archives (30d TTL)
  scratchpad/                <- Ephemeral WIP (2 sessions / 1 week)

Zooids vs. Operons

Zooids (6 files, ~4k tokens) load every turn. They contain rules that apply to every interaction: identity, standing orders, autonomy levels, security, communication protocol, tooling reference.

Operons (8 modules, ~100 tokens metadata each) load their full content only when triggered. They contain domain knowledge for specific situations: agent orchestration activates when spawning subagents, recovery activates when errors occur, auditing activates at checkpoints, evolution activates for AARs, context engineering activates when sessions degrade, knowledge activates when capturing decisions, research, or patterns, scratchpad activates for ephemeral staging, workspace activates for persistent artifact management.

The result: the same knowledge base with ~1.5k fewer tokens consumed per turn.

Workspace: Persistent Artifact Lifecycle

The workspace provides three-tier lifecycle management:

Scratchpad (ephemeral) → Archive (time-limited) → Artifacts (permanent)

Scratchpad (existing) — Active WIP, stale after 2 sessions, deleted after 1 week Archive (new) — Session artifacts, 30-day TTL, searchable via SQLite FTS Artifacts (new) — Reusable cross-project knowledge, git-backed, permanent

Key capabilities:

  • Auto-archiving — Sessions archived on end with handoff notes and task lists
  • Full-text search — SQLite FTS5 index across all artifacts and archives
  • Promotion workflows — Manual (during session) and automatic (3+ references)
  • Cross-project sharing — Global artifacts symlinked to projects
  • Retention policies — Configurable TTL, automatic cleanup
  • Git versioning — Global workspace git-backed for history

See the workspace operon (skills/workspace/SKILL.md) for comprehensive guidance.

The Stolon: Persistent Memory

The stolon (00-operator.md) uses a hybrid format inspired by genome annotation conventions (GFF3, OBO, GAF, EMBL) blended with YAML:

##stolon v1 organism:your-handle created:2026-02-03

## Identity
name: Your Name
handle: your-handle                   ! primary
roles: developer, researcher

## Phenotype
abstraction: high                     ! comfort with theoretical framing
craft-orientation: high               ! values mastery over speed
bullshit-tolerance: low               ! prefers directness

## Memory
# Append-only. Evidence: [stated] [observed] [corrected]
2026-02-03 [stated] Prefers biological metaphors in system design
2026-02-03 [observed] Responds well to blunt correction

The organelle appends noteworthy facts automatically as you work together. Your identity and memories persist across sessions.

Key Concepts

Autonomy Levels (L1-L4) — Calibrate AI independence to task risk. Default L2 (Collaborator). Escalate to L1 (Operator) for security, architecture, money. Descend to L3/L4 for routine, reversible work.

Verification Loop — Write, test, feed errors back, fix, repeat. Improves output quality 2-3x.

Context Engineering — Context determines success more than model capability. Front-load critical info, start fresh for new tasks, prune aggressively.

Colony Evolution — After Action Reports capture lessons. Recurring lessons become rules. Rules that stop applying get pruned. The symbiosis adapts or it dies.

Installation

git clone https://github.com/The-Azuran/techbiont-framework.git
cd techbiont-framework
./install.sh

The install script (the spore — the colony's delivery mechanism):

  • Symlinks zooids and operons into ~/.claude/ — updates propagate on git pull
  • Copies the stolon and pneumatophore templates — these are yours to customize, never overwritten
  • Cleans up old zooid symlinks that have been promoted to operons

After installing, edit:

  1. ~/.claude/CLAUDE.md — your identity, authorship, organization
  2. ~/.claude/rules/00-operator.md — your background, traits, preferences

Start a Claude Code session. The colony loads automatically.

Research Basis

This framework incorporates findings from:

Support

MESO is free for personal and noncommercial use under the PolyForm Noncommercial License.

If this framework improves your work, consider supporting its development:

Author

Rowan Valle (Valis) — Symbiont Systems LLC

Built with Claude Code.

License

PolyForm Noncommercial 1.0.0

Free for personal use, research, education, and noncommercial organizations. Commercial use requires a separate license from Symbiont Systems LLC.