# Aeon

The noelclaw skill pack is live in the Aeon ecosystem (merged PR #253). Once added, all 34 Noelclaw tools are available in Hermes and the Aeon agent runtime.

***

## What Aeon Is

Aeon is an AI agent platform with its own skill registry. Skills are MCP-compatible tool bundles that agents can call during task execution. The noelclaw skill pack brings crypto intel, DeFi execution, swarm coordination, vault memory, MiroShark simulation, and the Noel Framework into Aeon.

***

## Install

### Via Aeon Skill Registry (CLI)

```bash
aeon skill add noelclaw
```

This pulls the skill from the Aeon registry and registers `@noelclaw/mcp` as the underlying MCP server.

### Manual Config

If your Aeon version requires manual config, add to your Aeon config file:

```yaml
skills:
  noelclaw:
    mcp_server:
      command: npx
      args:
        - "@noelclaw/mcp"
    enabled: true
```

### Via Hermes in Aeon

If you use Hermes inside Aeon, follow the [Hermes install guide](/install-by-client/hermes-openclaw.md). Once the skill is registered in Hermes, Aeon agents can invoke it.

***

## Verify

In Hermes or any Aeon agent session:

```
/list-tools
```

You should see all 34 Noelclaw tools listed.

***

## Tools That Work Best in Aeon

Aeon agents are well-suited to longer autonomous tasks. These tool groups see the most usage in Aeon:

### Swarm

Aeon agents can start a full 5-agent swarm and use shared memory as a coordination layer:

```
start_swarm
write_swarm_memory agentId: "workflow-executor" key: "task" value: "analyze BTC trend"
get_swarm_status
get_execution_scores
stop_swarm
```

### Noel Vault

Vault is persistent across sessions — ideal for Aeon agents that need to store intermediate findings, plans, or outputs:

```
vault_save type: "execution" title: "Agent Output 001" content: "..." key: "agent-output-001"
vault_search query: "BTC analysis"
vault_history key: "agent-output-001"
```

### Noel Framework

Use task packets and playbooks to give Aeon agents structured, Sentinel-gated execution:

```
create_task_packet name: "..." description: "..." territory: ["market", "defi"] permissions: ["read", "swap"]
list_playbooks
run_playbook playbookId: "..."
get_noel_ledger
```

### MiroShark

Run social simulations as part of research or strategy workflows:

```
miroshark_simulate scenario: "How would a major exchange hack affect altcoin markets?"
miroshark_status simulation_id: "..."
```

### Market & Intel

Feed live data into agent reasoning:

```
get_market_data
get_token_data question: "PEPE, WIF, DOGE"
ask_noel question: "What narratives are gaining traction on Base?"
```

***

## Example: Aeon Agent Workflow

A typical Aeon agent task using noelclaw tools:

1. `ask_noel` — pull market analysis and current context
2. `start_swarm` — start 5 coordinated agents
3. `get_swarm_status` — check agent activity and shared memory
4. `vault_save` — store the analysis output
5. `create_automation` — set a price alert based on the analysis
6. `stop_swarm` — end the session

***

## Notes

* All 34 tools are available — no Aeon-specific limitations
* BYOK env vars (Grok, MiniMax, Ayrshare) work the same way as in other clients
* See [Environment Variables](/reference/env-vars.md) for optional keys
* See [MCP Server Reference](/reference/mcp-server.md) for full tool parameter docs


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.noelclaw.fun/install-by-client/aeon.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
