home / skills / plurigrid / asi / m
This skill enables secure Aptos blockchain operations through MCP tools, coordinating parallel worlds with triadic constraints and efficient task execution.
npx playbooks add skill plurigrid/asi --skill mReview the files below or copy the command above to add this skill to your agents.
---
name: m
description: 'World M Skill'
version: 1.0.0
---
# World M Skill
**Trit**: -1 (MINUS (validator/constrainer))
**Color Range**: Cold hues (180-300°)
**Index**: 12
**Wallet**: world_m_aptos
**MCP Server**: `mcp__world_m_aptos__*`
## GF(3) Role
This world operates as **MINUS (validator/constrainer)** in the triadic system.
Conservation law: `Σ trits ≡ 0 (mod 3)` across all parallel operations.
## Usage
Access blockchain operations via MCP tools:
```
mcp__world_m_aptos__aptos_balance # Check APT balance
mcp__world_m_aptos__aptos_transfer # Transfer APT (requires approval)
mcp__world_m_aptos__aptos_swap # Swap tokens on DEX
mcp__world_m_aptos__aptos_stake # Stake with validator
mcp__world_m_aptos__aptos_view # Call view function (read-only)
mcp__world_m_aptos__aptos_intent # Natural language intent
mcp__world_m_aptos__aptos_pending # List pending decisions
mcp__world_m_aptos__aptos_approve # Approve/reject decision
```
## World Description
Awesome category theory resources
## 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 M custom content -->
This skill exposes World M, a specialized Aptos-focused agent that encodes triadic coordination and blockchain utilities. It provides command hooks for balance checks, transfers, swaps, staking, and governance-style decision flows via the MCP server namespace. The world implements a GF(3) MINUS role and enforces a trit conservation law across parallel operations.
World M maps high-level intents to MCP server commands under the mcp__world_m_aptos__* namespace for on-chain reads and transactions. It constrains and validates actions according to its GF(3) role (MINUS) while ensuring Σ trits ≡ 0 (mod 3) across parallel workflows. Commands include read-only views, transfers, swaps, staking, and pending decision management with explicit approve/reject controls.
What does MINUS (validator/constrainer) mean here?
MINUS denotes the GF(3) role that constrains allowed operations and participates in triadic balancing; it validates or restricts actions to preserve the conservation rule.
How do I enforce the Σ trits ≡ 0 (mod 3) rule?
When composing parallel workflows, assign complementary roles (e.g., +1, 0) so the sum of trits across worlds equals zero; tooling should check and reject compositions that violate the rule.