home / skills / plurigrid / asi / x

x skill

This skill helps you manage World X blockchain operations with MCP tools, enabling balance checks, transfers, swaps, staking, and views.

npx playbooks add skill plurigrid/asi --skill x

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

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

# World X Skill

**Trit**: +1 (PLUS (generator/executor))
**Color Range**: Warm hues (0-60°, 300-360°)
**Index**: 23
**Wallet**: world_x_aptos
**MCP Server**: `mcp__world_x_aptos__*`

## GF(3) Role

This world operates as **PLUS (generator/executor)** in the triadic system.

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

## Usage

Access blockchain operations via MCP tools:

```
mcp__world_x_aptos__aptos_balance      # Check APT balance
mcp__world_x_aptos__aptos_transfer     # Transfer APT (requires approval)
mcp__world_x_aptos__aptos_swap         # Swap tokens on DEX
mcp__world_x_aptos__aptos_stake        # Stake with validator
mcp__world_x_aptos__aptos_view         # Call view function (read-only)
mcp__world_x_aptos__aptos_intent       # Natural language intent
mcp__world_x_aptos__aptos_pending      # List pending decisions
mcp__world_x_aptos__aptos_approve      # Approve/reject decision
```

## World Description

X-category exotic structures

## Triadic Coordination

When operating in parallel with other worlds:

| Your Role | Partner Roles | Combined |
|-----------|--------------|----------|
| +1 | Need -1, 0 | Σ = 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 X custom content -->

Overview

This skill exposes World X tooling for interacting with the Aptos ecosystem through MCP command interfaces. It combines on-chain operations (balance, transfer, swap, stake) with a small triadic coordination model to ensure parallel consistency. The skill is optimized for programmatic orchestration and natural-language intent routing.

How this skill works

The skill maps high-level actions to MCP commands prefixed with mcp__world_x_aptos__. It can read state (aptos_view, aptos_balance), initiate transactions (aptos_transfer, aptos_swap, aptos_stake) and record intent or pending decisions (aptos_intent, aptos_pending). When running in parallel with other worlds, it enforces a trit conservation rule so combined operations remain consistent.

When to use it

  • Automating treasury checks and routine APT balance monitoring
  • Orchestrating approved token transfers and DEX swaps from a programmatic agent
  • Managing validator staking and unstaking operations
  • Recording natural-language intents and reviewing pending governance decisions
  • Coordinating parallel world agents where triadic conservation is required

Best practices

  • Use aptos_view and aptos_balance for read-only verification before submitting transactions
  • Always obtain explicit approval (aptos_approve) before executing transfers or stake operations
  • Test transaction flows on a testnet environment before mainnet execution
  • Keep private keys and wallet credentials secure; prefer delegated execution with minimal privileges
  • Respect the trit conservation law when composing parallel operations to avoid inconsistent states

Example use cases

  • Daily script that checks APT balance and stakes any excess above a safety threshold
  • Automated swap strategy that monitors price feeds and executes aptos_swap when conditions match
  • Governance assistant that logs intents with aptos_intent and surfaces aptos_pending decisions for review
  • Cross-world coordination where World X provides generator actions (+1) while partners provide compensating trits
  • Batch transfer tool that queues transfers and requires explicit aptos_approve before broadcasting

FAQ

What is the trit conservation rule and why does it matter?

The rule requires the sum of trit roles across parallel operations to equal zero mod 3. It ensures coordinated actions from multiple worlds remain balanced and prevents conflicting parallel effects.

Do I need approval to run transfers or staking?

Yes. Transfers and stake changes should be gated by aptos_approve to ensure human or governance oversight before committing transactions.