home / skills / plurigrid / asi / w

w skill

/skills/w

This skill helps manage and orchestrate world W operations on Aptos by applying ergodic coordination and triadic alignment across components.

npx playbooks add skill plurigrid/asi --skill w

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

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

# World W Skill

**Trit**: +0 (ERGODIC (coordinator/synthesizer))
**Color Range**: Neutral hues (60-180°)
**Index**: 22
**Wallet**: world_w_aptos
**MCP Server**: `mcp__world_w_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_w_aptos__aptos_balance      # Check APT balance
mcp__world_w_aptos__aptos_transfer     # Transfer APT (requires approval)
mcp__world_w_aptos__aptos_swap         # Swap tokens on DEX
mcp__world_w_aptos__aptos_stake        # Stake with validator
mcp__world_w_aptos__aptos_view         # Call view function (read-only)
mcp__world_w_aptos__aptos_intent       # Natural language intent
mcp__world_w_aptos__aptos_pending      # List pending decisions
mcp__world_w_aptos__aptos_approve      # Approve/reject decision
```

## World Description

Wiring diagrams

## 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 W custom content -->

Overview

This skill exposes the World W interface for Aptos blockchain operations and triadic coordination. It functions as an ERGODIC coordinator/synthesizer that enforces a GF(3) conservation rule while providing wallet and MCP command access. Use it to query balances, initiate transfers, manage staking, and coordinate parallel world operations reliably.

How this skill works

World W links to an Aptos wallet (world_w_aptos) and a matching MCP server namespace to perform read and write actions. It exposes a concise set of MCP tools for balance checks, transfers, swaps, staking, view calls, natural-language intents, and decision approvals. When running alongside other worlds, it enforces the trit conservation law (sum of trits ≡ 0 mod 3) to maintain valid parallel states.

When to use it

  • Check or manage Aptos account balance and token transfers programmatically.
  • Coordinate multi-world operations that require triadic synchrony and conservation of trits.
  • Automate staking and validator interactions for a managed Aptos wallet.
  • Execute read-only contract view calls or craft natural-language intents for MCP processing.
  • Approve or reject pending decisions in a workflow tied to the MCP server namespace.

Best practices

  • Keep the sum of trits balanced across parallel operations to satisfy the GF(3) conservation rule.
  • Use the aptos_view MCP action for read-only queries to avoid unnecessary on-chain transactions.
  • Require explicit approval steps for transfers and stake changes to prevent accidental state changes.
  • Test swaps and transfers on a sandbox or testnet before running on mainnet.
  • Log MCP intents and pending decisions for traceability and auditability.

Example use cases

  • Programmatically check the Aptos balance and decide whether to stake or swap based on thresholds.
  • Coordinate three parallel world agents where roles sum to zero, ensuring system-level invariants hold.
  • Submit a natural-language intent to the MCP server to prepare a token transfer, then use approval flow to finalize.
  • Run periodic view calls to monitor contract state and trigger automated responses when conditions change.
  • Perform a DEX swap and then stake the resulting tokens through the MCP-managed workflow.

FAQ

What does ERGODIC (coordinator/synthesizer) mean in practice?

It means World W acts as a coordinating agent that synthesizes state across parallel operations and helps maintain global invariants rather than representing a passive participant.

How strict is the trit conservation rule?

The conservation rule (Σ trits ≡ 0 mod 3) should be enforced when worlds operate in parallel; workflows should validate role assignments before committing state-changing operations.