Asi universal-captp-derivation

Universal CapTP Derivation Skill

install
source · Clone the upstream repo
git clone https://github.com/plurigrid/asi
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/plurigrid/asi "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/universal-captp-derivation" ~/.claude/skills/plurigrid-asi-universal-captp-derivation-305ffa && rm -rf "$T"
manifest: skills/universal-captp-derivation/SKILL.md
source content

Universal CapTP Derivation Skill

Traces capability derivation chains through 3×3 expert poset with GF(3) conservation.

Core Principle

A capability IS the (seed, index) tuple. Expertise IS the trit alignment.

3×3 Expert Poset Structure

LayerValidator (-1)Coordinator (0)Generator (+1)Domain
1Jules HedgesJohn BaezFabrizio Genovesecategorical-games
2David EgolfMike Shulmansarahzrfsheaf-theory
3BetweennessMantissaModalNoahneural-categorical

Derivation Chains

capability(-1) → vat(0) → invoke(+1)     [spawn-lifecycle]
membrane(-1)   → netlayer(0) → lambda(+1) [invoke-path]
handoff(-1)    → syrup(0) → sturdy_ref(+1) [transfer-path]
revoke(-1)     → promise(0) → goblin(+1)   [revoke-path]

Superposition States

Each capability exists in superposition across expert domains:

  • generator-dominant: Red channel highest (trit=+1)
  • coordinator-dominant: Green channel highest (trit=0)
  • validator-dominant: Blue channel highest (trit=-1)
  • superposed: Balanced RGB

GF(3) Conservation

Term Σ + Expert Σ ≡ 0 (mod 3)

Current state: COHERENT (residue = 0)

Commands

# Trace derivation chains
python3 -c "import duckdb; c=duckdb.connect('culture_evolution.duckdb'); print(c.execute('SELECT * FROM derivation_chains').df())"

# View expert triads
python3 -c "import duckdb; c=duckdb.connect('culture_evolution.duckdb'); print(c.execute('SELECT * FROM expert_triads').df())"

# Query NOW superposition
python3 -c "import duckdb; c=duckdb.connect('culture_evolution.duckdb'); print(c.execute('SELECT * FROM now_superposition').df())"

# Universal skill derivation
python3 -c "import duckdb; c=duckdb.connect('culture_evolution.duckdb'); print(c.execute('SELECT * FROM universal_skill_derivation LIMIT 20').df())"

Integration Points

DatabaseTable/ViewPurpose
culture_evolution.duckdbderivation_chainsCapTP flow traces
culture_evolution.duckdbexpert_triads3×3 expert poset
culture_evolution.duckdbcapability_posetLattice structure
culture_evolution.duckdbnow_superpositionCurrent state
culture_evolution.duckdbuniversal_skill_derivationFull matrix
gh_interactome.duckdbcaptp_third_party_contributionsContributor mapping

Key Files

Trit Assignments

TritRoleColor ChannelExperts
-1ValidatorBlueHedges, Egolf, Betweenness
0CoordinatorGreenBaez, Shulman, Mantissa
+1GeneratorRedGenovese, sarahzrf, ModalNoah