Aptos Society Scale
Trit: 0 (ERGODIC - coordinator) Domain: Compositional Game Theory × Blockchain Governance × Social Interaction Labs
Every interaction MUST load exactly 3 skills with balanced trits:
MINUS (-1): Validator/Constrainer (cold hues 180-300°)
ERGODIC (0): Coordinator/Synthesizer (neutral hues 60-180°)
PLUS (+1): Generator/Executor (warm hues 0-60°, 300-360°)
Conservation: Σ trits ≡ 0 (mod 3)
| Segment | Letters | Trit | Role | |---------|---------|------|------| | MINUS | A-I (9) | -1 | Validators | | ERGODIC | J-R (9) | 0 | Coordinators | | PLUS | S-Z (8) | +1 | Executors |
mcp__world_{letter}_aptos__aptos_balance
mcp__world_{letter}_aptos__aptos_transfer
mcp__world_{letter}_aptos__aptos_swap
mcp__world_{letter}_aptos__aptos_view
For seed handoff between world segments:
;; aptos_society.bb
(require '[babashka.process :refer [shell]])
(defn world-balance [letter]
(let [tool (str "mcp__world_" letter "_aptos__aptos_balance")]
{:world letter :tool tool}))
(defn triadic-worlds []
{:minus (map world-balance "ABCDEFGHI")
:ergodic (map world-balance "JKLMNOPQR")
:plus (map world-balance "STUVWXYZ")})
// AptosWorld conforms to Sendable for actor isolation
actor AptosWorld: Sendable {
let letter: Character
let trit: Int // -1, 0, +1
func balance() async -> Decimal
func transfer(to: Address, amount: Decimal) async throws
}
// Triadic dispatch
func dispatchTriad(_ minus: AptosWorld, _ ergodic: AptosWorld, _ plus: AptosWorld) async {
assert(minus.trit + ergodic.trit + plus.trit == 0) // GF(3) conservation
await withTaskGroup(of: Void.self) { group in
group.addTask { await minus.validate() }
group.addTask { await ergodic.coordinate() }
group.addTask { await plus.execute() }
}
}
Add to ~/.ruler/AGENTS.md:
## Triadic Skill Forcing (Aptos Society Scale)
**Rule**: Every interaction loads 3 skills with Σ trits = 0 (mod 3)
1. MINUS skill: validation, constraint checking
2. ERGODIC skill: coordination, synthesis
3. PLUS skill: generation, execution
Verify: `(-1) + 0 + (+1) = 0 ✓`
This skill contains NO private keys, wallet addresses, or secrets. All wallet interactions go through MCP tools with approval flows.
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer