home / skills / plurigrid / asi / m

m skill

/skills/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 m

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

Files (1)
SKILL.md
1.6 KB
---
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 -->

Overview

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.

How this skill works

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.

When to use it

  • When you need Aptos wallet interactions mediated by a constrained validator/constrainer agent.
  • When coordinating parallel agents where triadic conservation (Σ trits ≡ 0 mod 3) must hold.
  • When automating token swaps, transfers, or staking via MCP tools.
  • When you want a deterministic, role-aware actor in multi-agent orchestration using MCP.

Best practices

  • Always check aptos_balance before crafting transfer or swap operations to avoid insufficient funds.
  • Use aptos_view for read-only checks before submitting state-changing intents.
  • Declare intents with aptos_intent and review aptos_pending to surface decisions for explicit approval via aptos_approve.
  • Respect the GF(3) conservation rule when running parallel worlds; design partner roles to sum to zero.
  • Limit high-value operations to explicit approve flows and require approvals from multiple coordinating agents if possible.

Example use cases

  • Automated periodic staking: check balance, stake available APT, and register pending approvals for governance.
  • Multi-agent trade orchestration: prepare aptos_swap intents and ensure triadic roles balance across participating worlds.
  • Governed transfer flow: create a transfer intent, add it to pending decisions, and finalize with aptos_approve after review.
  • Read-only analytics: use aptos_view to aggregate on-chain metrics across addresses without submitting transactions.

FAQ

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.