home / skills / plurigrid / asi / l

l skill

/skills/l

This skill helps you manage World L blockchain operations via MCP tools for balance, transfer, swap, stake, and view.

npx playbooks add skill plurigrid/asi --skill l

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

Files (1)
SKILL.md
1.5 KB
---
name: l
description: 'World L Skill'
version: 1.0.0
---

# World L Skill

**Trit**: +1 (PLUS (generator/executor))
**Color Range**: Warm hues (0-60°, 300-360°)
**Index**: 11
**Wallet**: world_l_aptos
**MCP Server**: `mcp__world_l_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_l_aptos__aptos_balance      # Check APT balance
mcp__world_l_aptos__aptos_transfer     # Transfer APT (requires approval)
mcp__world_l_aptos__aptos_swap         # Swap tokens on DEX
mcp__world_l_aptos__aptos_stake        # Stake with validator
mcp__world_l_aptos__aptos_view         # Call view function (read-only)
mcp__world_l_aptos__aptos_intent       # Natural language intent
mcp__world_l_aptos__aptos_pending      # List pending decisions
mcp__world_l_aptos__aptos_approve      # Approve/reject decision
```

## World Description

Pretty bugs and debugging

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

Overview

This skill provides a focused interface for interacting with an Aptos-based operational world named World L. It exposes a set of MCP (modular control plane) tools for common on-chain tasks like balance checks, transfers, swaps, staking, and read-only views. The skill is organized around a triadic role model and enforces a simple conservation rule for parallel operations.

How this skill works

The skill maps high-level intents to specific MCP command endpoints prefixed with mcp__world_l_aptos__. Each endpoint performs a discrete blockchain operation: queries, transactions, staking actions, and decision approvals. Parallel workflows that coordinate multiple worlds must respect the GF(3) trit conservation law (sum of trits ≡ 0 mod 3).

When to use it

  • Check Aptos wallet balances or inspect token holdings for the world_l_aptos wallet.
  • Execute token transfers, swaps, or staking operations through the provided MCP endpoints.
  • Call read-only contract views to fetch on-chain state without creating transactions.
  • Integrate World L into multi-world orchestration while maintaining triadic coordination rules.
  • Approve or reject pending decisions surfaced by the MCP pending list.

Best practices

  • Validate the target wallet and recipient addresses before issuing transfer or stake commands.
  • Use view endpoints for state inspection to avoid unnecessary transaction costs.
  • Respect the trit conservation rule when composing parallel operations with other worlds.
  • Require explicit approval for any intent that triggers a state-changing operation.
  • Log MCP command outputs and pending lists to maintain an audit trail of decisions.

Example use cases

  • Routine balance check: call mcp__world_l_aptos__aptos_balance to monitor APT holdings.
  • Payout workflow: prepare transfer with mcp__world_l_aptos__aptos_transfer after approval from mcp__world_l_aptos__aptos_approve.
  • Automated market operation: execute token swaps via mcp__world_l_aptos__aptos_swap as part of a DEX strategy.
  • Validator operations: stake or unstake funds using mcp__world_l_aptos__aptos_stake and track status via pending.
  • Read-only analysis: fetch contract data using mcp__world_l_aptos__aptos_view to inform decision-making.

FAQ

What is the trit role for World L?

World L operates as PLUS (generator/executor) with a trit value of +1.

How do I check pending decisions?

Use mcp__world_l_aptos__aptos_pending to list pending decisions and mcp__world_l_aptos__aptos_approve to approve or reject them.