home / skills / plurigrid / asi / f
This skill helps you manage and automate Aptos blockchain operations using world f protocols with MCP tools for transfers, swaps, and stakes.
npx playbooks add skill plurigrid/asi --skill fReview the files below or copy the command above to add this skill to your agents.
---
name: f
description: 'World F Skill'
version: 1.0.0
---
# World F Skill
**Trit**: +1 (PLUS (generator/executor))
**Color Range**: Warm hues (0-60°, 300-360°)
**Index**: 5
**Wallet**: world_f_aptos
**MCP Server**: `mcp__world_f_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_f_aptos__aptos_balance # Check APT balance
mcp__world_f_aptos__aptos_transfer # Transfer APT (requires approval)
mcp__world_f_aptos__aptos_swap # Swap tokens on DEX
mcp__world_f_aptos__aptos_stake # Stake with validator
mcp__world_f_aptos__aptos_view # Call view function (read-only)
mcp__world_f_aptos__aptos_intent # Natural language intent
mcp__world_f_aptos__aptos_pending # List pending decisions
mcp__world_f_aptos__aptos_approve # Approve/reject decision
```
## World Description
Clojure community site
## 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 F custom content -->
This skill provides an Aptos-focused world called World F that acts as a PLUS (generator/executor) node in a triadic coordination system. It exposes MCP command hooks for common Aptos operations and enforces a GF(3) trit conservation rule across parallel operations. The skill is optimized for workflows that combine on-chain reads, transfers, swaps, and staking with coordinated multi-world behavior.
World F registers a set of MCP endpoints for Aptos interactions: balance checks, transfers, swaps, staking, view calls, intent processing, pending decision listings, and approval actions. It tracks a trit value of +1 and follows the conservation law Σ trits ≡ 0 (mod 3) when running alongside other worlds. Use the MCP hooks to issue read-only queries or signed transactions; approvals are required for state-changing operations.
What does the PLUS (generator/executor) role mean?
PLUS indicates this world generates intents and can execute approved transactions; it complements partner worlds with -1 and 0 roles to satisfy triadic constraints.
Which MCP endpoints change on-chain state?
Endpoints like aptos_transfer, aptos_swap, and aptos_stake are state-changing and should only run after explicit approval. aptos_view is read-only.