home / skills / plurigrid / asi / k

k skill

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

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

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

Overview

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.

How this skill works

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.

When to use it

  • Orchestrating Aptos token flows for Kubeflow MLOps pipelines
  • Querying balances and on-chain state programmatically
  • Routing staking or swap operations through a coordinated workflow
  • Integrating multi-world triadic coordination to ensure state conservation
  • Automating approval and pending decision processes for deployments

Best practices

  • Use mcp__world_k_aptos__aptos_view for read-only state checks before committing transactions
  • Validate intents in natural language via aptos_intent and confirm with aptos_pending/aptos_approve to avoid accidental transfers
  • Respect the triadic conservation law when running parallel worlds: verify partner roles sum to zero mod 3
  • Batch non-conflicting operations to reduce chain fees and simplify rollback logic
  • Log each MCP command invocation with timestamps and trit state for auditability

Example use cases

  • Check APT balance for the deployment wallet before model snapshot export using mcp__world_k_aptos__aptos_balance
  • Transfer funds to a validator or service account via mcp__world_k_aptos__aptos_transfer as part of a scheduled MLOps run
  • Execute a governance intent expressed in plain language using mcp__world_k_aptos__aptos_intent and finalize with aptos_approve
  • Swap tokens on a DEX prior to paying for inference compute using mcp__world_k_aptos__aptos_swap
  • Stake rewards to maintain validator commitments for persistent MLOps infrastructure with mcp__world_k_aptos__aptos_stake

FAQ

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.