home / skills / plurigrid / asi / alice

alice skill

/skills/alice

This skill helps you initiate Aptos testnet transactions using the ALICE wallet, enabling balance checks, transfers, and staking with MCP tools.

npx playbooks add skill plurigrid/asi --skill alice

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

Files (1)
SKILL.md
2.3 KB
---
name: alice
description: Primary Aptos testnet wallet for transaction origination. Use when initiating test transactions.
metadata:
  trit: -1
---

# World ALICE Skill

**Trit**: -1 (MINUS (validator/constrainer))
**Color Range**: Cold hues (180-300°)
**Index**: 26
**Wallet**: alice_aptos
**MCP Server**: `mcp__alice_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__alice_aptos__aptos_balance      # Check APT balance
mcp__alice_aptos__aptos_transfer     # Transfer APT (requires approval)
mcp__alice_aptos__aptos_swap         # Swap tokens on DEX
mcp__alice_aptos__aptos_stake        # Stake with validator
mcp__alice_aptos__aptos_view         # Call view function (read-only)
mcp__alice_aptos__aptos_intent       # Natural language intent
mcp__alice_aptos__aptos_pending      # List pending decisions
mcp__alice_aptos__aptos_approve      # Approve/reject decision
```

## World Description

Primary testnet account for transaction origination

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



## Scientific Skill Interleaving

This skill connects to the K-Dense-AI/claude-scientific-skills ecosystem:

### Graph Theory
- **networkx** [○] via bicomodule
  - Universal graph hub

### Bibliography References

- `general`: 734 citations in bib.duckdb

## Cat# Integration

This skill maps to **Cat# = Comod(P)** as a bicomodule in the equipment structure:

```
Trit: 0 (ERGODIC)
Home: Prof
Poly Op: ⊗
Kan Role: Adj
Color: #26D826
```

### GF(3) Naturality

The skill participates in triads satisfying:
```
(-1) + (0) + (+1) ≡ 0 (mod 3)
```

This ensures compositional coherence in the Cat# equipment structure.

Overview

This skill is the primary Aptos testnet wallet named alice for originating test transactions. It provides command hooks for balance checks, transfers, swaps, staking, and read-only view calls. Use it when you need a reliable, preconfigured test account to compose and simulate blockchain operations.

How this skill works

The skill exposes MCP-style commands that map to Aptos actions: balance, transfer, swap, stake, view calls, intent submission, and pending decision management. Commands are intended for testnet workflows; transfers and swaps require explicit approval. It participates in a triadic coordination system (role -1) to preserve compositional constraints when used alongside complementary worlds.

When to use it

  • Initiating testnet transfers and token swaps
  • Staging transaction sequences for integration tests
  • Running staking and validator interaction experiments
  • Querying contract view functions without mutating state
  • Coordinating multi-world orchestration where a negative-trit validator role is required

Best practices

  • Always check aptos_balance before creating transfers to avoid failures
  • Use aptos_intent to describe desired operations in natural language before execution
  • Require explicit aptos_approve step for any state-changing operation to prevent accidental sends
  • Run view-only aptos_view calls for read verification prior to staking or swaps
  • Document parallel orchestration partners when combining this skill with others (need +1 and 0)

Example use cases

  • Balance validation and automated checks in CI pipelines
  • Creating and approving a staged transfer for manual review
  • Simulating a DEX swap on testnet before deploying front-end logic
  • Performing repeated stake/unstake cycles against a test validator
  • Composing multi-world experiments that require a -1 (validator/constrainer) participant

FAQ

Is this skill connected to mainnet?

No. This skill is configured for the Aptos testnet and intended for non-production transaction origination and testing.

Do transfers require approval?

Yes. State-changing commands like aptos_transfer and aptos_swap require an explicit approval step to execute.