home / skills / plurigrid / asi / f

f skill

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

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

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

Overview

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.

How this skill works

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.

When to use it

  • When you need programmatic access to Aptos balances, transfers, swaps, or staking via MCP tooling.
  • When coordinating on-chain actions across multiple worlds that must satisfy GF(3) trit conservation.
  • When you want a generator/executor role (+1) in a multi-agent orchestration.
  • When integrating deterministic color or identity schemes tied to world roles and warm color ranges.

Best practices

  • Always verify balance via the aptos_balance endpoint before creating transfer or stake requests.
  • Require explicit approval for any state-changing command to avoid accidental transactions.
  • Coordinate partner worlds so their trits sum to zero mod 3 prior to executing parallel operations.
  • Prefer view calls for bulk reads to minimize gas and reduce unintended side effects.
  • Log MCP pending decisions and approvals to maintain auditability across the system.

Example use cases

  • Check an account balance, then create a transfer request and await manual approval before execution.
  • Execute a token swap on a DEX through the aptos_swap endpoint as part of a multi-world trade operation.
  • Stake tokens with a validator following a governance decision returned by aptos_pending and aptos_approve.
  • Read contract state via aptos_view for monitoring and feed the results into downstream generator tasks.
  • Coordinate three worlds where roles +1, -1, and 0 must align to satisfy Σ trits ≡ 0 (mod 3) before committing transactions.

FAQ

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.