home / skills / plurigrid / asi / e

e skill

/skills/e

This skill helps you interact with World E Aptos operations and coordinate token actions via MCP tools for balance, transfer, swap, and governance.

npx playbooks add skill plurigrid/asi --skill e

Review the files below or copy the command above to add this skill to your agents.

Files (1)
SKILL.md
1.6 KB
---
name: e
description: 'World E Skill'
version: 1.0.0
---

# World E Skill

**Trit**: +0 (ERGODIC (coordinator/synthesizer))
**Color Range**: Neutral hues (60-180°)
**Index**: 4
**Wallet**: world_e_aptos
**MCP Server**: `mcp__world_e_aptos__*`

## GF(3) Role

This world operates as **ERGODIC (coordinator/synthesizer)** in the triadic system.

Conservation law: `Σ trits ≡ 0 (mod 3)` across all parallel operations.

## Usage

Access blockchain operations via MCP tools:

```
mcp__world_e_aptos__aptos_balance      # Check APT balance
mcp__world_e_aptos__aptos_transfer     # Transfer APT (requires approval)
mcp__world_e_aptos__aptos_swap         # Swap tokens on DEX
mcp__world_e_aptos__aptos_stake        # Stake with validator
mcp__world_e_aptos__aptos_view         # Call view function (read-only)
mcp__world_e_aptos__aptos_intent       # Natural language intent
mcp__world_e_aptos__aptos_pending      # List pending decisions
mcp__world_e_aptos__aptos_approve      # Approve/reject decision
```

## World Description

infinity-cosmos - Lean 4 ∞-categories

## Triadic Coordination

When operating in parallel with other worlds:

| Your Role | Partner Roles | Combined |
|-----------|--------------|----------|
| +0 | Need -1, +1 | Σ = 0 ✓ |

## Related Skills

- `aptos-agent` - Core Aptos interaction patterns
- `aptos-society` - World Extractable Value (WEV) contracts
- `gay-mcp` - Deterministic color generation from seed
- `plurigrid-asi-integrated` - Unified skill orchestration

## Customization

Add world-specific configurations below this line:

---

<!-- World E custom content -->

Overview

This skill, World E, provides a compact Aptos-focused orchestration layer for blockchain operations and parallel-world coordination. It exposes MCP command hooks for balance, transfer, swap, stake, view, intent, pending decisions, and approvals. The skill encodes a triadic coordination role (ERGODIC coordinator/synthesizer) and enforces a GF(3) conservation law across parallel operations. It is designed for programmatic workflows that need deterministic, topologically aware orchestration.

How this skill works

World E maps high-level requests to MCP tool calls such as aptos_balance, aptos_transfer, aptos_swap, aptos_stake, and read-only aptos_view. It tracks triadic state using a trit index and ensures Σ trits ≡ 0 (mod 3) when operating alongside other worlds. The skill supports natural-language intents via aptos_intent and decision workflows using aptos_pending and aptos_approve for human-in-the-loop approvals.

When to use it

  • Automating Aptos token operations (checks, transfers, swaps, staking).
  • Coordinating multiple parallel agents that must satisfy triadic conservation.
  • Integrating blockchain read-only queries into orchestration pipelines.
  • Running deterministic, reproducible workflows that require a coordinator/synthesizer role.
  • Embedding world-level policies into multi-agent decision flows.

Best practices

  • Always validate approvals before invoking aptos_transfer or aptos_stake with aptos_pending/aptos_approve.
  • Use aptos_view for read-only checks before state-changing operations to reduce failed transactions.
  • Maintain external logging of trit assignments to verify Σ trits ≡ 0 across parallel runs.
  • Limit concurrent transfers per wallet to avoid nonce conflicts on Aptos.
  • Design intent prompts for aptos_intent to be deterministic and include relevant MFA/approval metadata.

Example use cases

  • A coordinator service that batches balance checks and schedules swaps across DEXes using aptos_swap.
  • A synthesize-and-approve flow where natural-language intents create pending decisions and a human or bot approves via aptos_approve.
  • Parallel-world experiments that assign trits to agents and verify conservation before committing cross-world actions.
  • Automated staking manager that monitors validators and issues aptos_stake after view checks.

FAQ

What does the GF(3) conservation law mean in practice?

It means every parallel operation set must have trit values summing to 0 modulo 3; track trit assignments and validate the sum before executing coordinated actions.

Are transfers and swaps instant?

No—transfers and swaps are on-chain operations; use aptos_view and aptos_pending to check confirmations and pending decisions before proceeding.