home / skills / plurigrid / asi / v

v skill

/skills/v

This skill helps you interact with World V blockchain tools to monitor balances, transfer, stake, and view decisions efficiently.

npx playbooks add skill plurigrid/asi --skill v

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

Files (1)
SKILL.md
1.6 KB
---
name: v
description: 'World V Skill'
version: 1.0.0
---

# World V Skill

**Trit**: -1 (MINUS (validator/constrainer))
**Color Range**: Cold hues (180-300°)
**Index**: 21
**Wallet**: world_v_aptos
**MCP Server**: `mcp__world_v_aptos__*`

## GF(3) Role

This world operates as **MINUS (validator/constrainer)** in the triadic system.

Conservation law: `Σ trits ≡ 0 (mod 3)` across all parallel operations.

## Usage

Access blockchain operations via MCP tools:

```
mcp__world_v_aptos__aptos_balance      # Check APT balance
mcp__world_v_aptos__aptos_transfer     # Transfer APT (requires approval)
mcp__world_v_aptos__aptos_swap         # Swap tokens on DEX
mcp__world_v_aptos__aptos_stake        # Stake with validator
mcp__world_v_aptos__aptos_view         # Call view function (read-only)
mcp__world_v_aptos__aptos_intent       # Natural language intent
mcp__world_v_aptos__aptos_pending      # List pending decisions
mcp__world_v_aptos__aptos_approve      # Approve/reject decision
```

## World Description

Viro topology visualization

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

Overview

This skill exposes World V: a topological chemputer interface focused on Aptos blockchain operations with a triadic MINUS role. It combines validator/constrainer semantics with tools for balances, transfers, swaps, staking, and read-only views. The skill is optimized for workflows that require consistency under the conservation law Σ trits ≡ 0 (mod 3).

How this skill works

The skill maps high-level intents to MCP commands prefixed by mcp__world_v_aptos__, letting you query balances, execute transfers, interact with DEX swaps, stake with validators, and call view functions. It enforces the GF(3) MINUS role semantics when coordinating parallel operations, preserving the conservation rule across related actions. Use natural-language intent calls to generate actionable MCP operations and inspect pending decisions before approving or rejecting them.

When to use it

  • Query Aptos wallet balances and holdings for the world_v_aptos wallet.
  • Initiate token transfers or DEX swaps while maintaining world coordination constraints.
  • Stake tokens with the configured validator and monitor validator-related state.
  • Execute read-only view calls to inspect contract state without side effects.
  • Coordinate multi-world workflows that require triadic conservation (Σ trits ≡ 0 mod 3).

Best practices

  • Always call mcp__world_v_aptos__aptos_pending to review pending decisions before approvals.
  • Use intent (mcp__world_v_aptos__aptos_intent) for natural language to MCP mapping to reduce manual command errors.
  • Respect the GF(3) conservation rule when running parallel operations with other worlds.
  • Confirm approvals via mcp__world_v_aptos__aptos_approve only after validating necessary conditions and balances.
  • Prefer view calls (mcp__world_v_aptos__aptos_view) for diagnostics to avoid unnecessary transactions and fees.

Example use cases

  • Check the APT balance and then prepare a transfer flow that keeps triadic sums consistent across parallel worlds.
  • Swap tokens on a DEX as part of a multi-world liquidity rebalancing that enforces the MINUS validator role.
  • Stake rewards through the configured validator and monitor staking status via view endpoints.
  • Use natural-language intent to draft a sequence of operations and list pending decisions for human approval.
  • Integrate with orchestration skills to visualize Viro topology while executing blockchain operations.

FAQ

What does MINUS (validator/constrainer) mean in practice?

It indicates the world acts as a constraining validator in triadic coordination. Operations should be composed so the sum of trits across parallel worlds equals zero modulo three.

How do I safely approve pending decisions?

First review pending entries with mcp__world_v_aptos__aptos_pending and validate balances with aptos_balance. Then approve only when the operation preserves coordination constraints and meets any external checks.