home / skills / plurigrid / asi / k
This skill helps you manage Ergodic World K operations by interfacing with MCP tools for balances, transfers, swaps, and governance.
npx playbooks add skill plurigrid/asi --skill kReview the files below or copy the command above to add this skill to your agents.
---
name: k
description: 'World K Skill'
version: 1.0.0
---
# World K Skill
**Trit**: +0 (ERGODIC (coordinator/synthesizer))
**Color Range**: Neutral hues (60-180°)
**Index**: 10
**Wallet**: world_k_aptos
**MCP Server**: `mcp__world_k_aptos__*`
## GF(3) Role
This world operates as **ERGODIC (coordinator/synthesizer)** in the triadic system.
Conservation law: `Σ trits ≡ 0 (mod 3)` across all parallel operations.
## Usage
Access blockchain operations via MCP tools:
```
mcp__world_k_aptos__aptos_balance # Check APT balance
mcp__world_k_aptos__aptos_transfer # Transfer APT (requires approval)
mcp__world_k_aptos__aptos_swap # Swap tokens on DEX
mcp__world_k_aptos__aptos_stake # Stake with validator
mcp__world_k_aptos__aptos_view # Call view function (read-only)
mcp__world_k_aptos__aptos_intent # Natural language intent
mcp__world_k_aptos__aptos_pending # List pending decisions
mcp__world_k_aptos__aptos_approve # Approve/reject decision
```
## World Description
Kubeflow MLOps
## Triadic Coordination
When operating in parallel with other worlds:
| Your Role | Partner Roles | Combined |
|-----------|--------------|----------|
| +0 | Need -1, +1 | Σ = 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 K custom content -->
This skill provides coordinated Aptos blockchain operations tailored for a Kubeflow MLOps environment, acting as an ERGODIC coordinator/synthesizer in a triadic system. It exposes MCP commands to check balances, transfer tokens, stake, call view functions, and manage pending decisions. The skill enforces a GF(3) conservation rule for parallel operations to maintain system consistency. It is designed for programmatic orchestration within multi-world workflows.
The skill maps high-level intents to MCP tool calls (mcp__world_k_aptos__*) to perform on-chain actions such as balance queries, transfers, swaps, staking, and view calls. It tracks triadic role state (+0) and ensures Σ trits ≡ 0 (mod 3) when coordinating with partner worlds to preserve the conservation law. Natural language intents can be routed through the aptos_intent and pending/approve flows to support human-in-the-loop decisions.
What does the GF(3) conservation rule mean in practice?
It means when multiple worlds operate in parallel their trit roles must sum to 0 modulo 3. For World K (+0), ensure partner worlds provide roles that result in Σ trits ≡ 0 to maintain coordinated state.
Which MCP commands are read-only versus state-changing?
Use mcp__world_k_aptos__aptos_view for read-only calls. Commands like aptos_transfer, aptos_swap, aptos_stake, and aptos_approve are state-changing and require appropriate approvals and wallet permissions.