For the complete documentation index, see llms.txt. This page is also available as Markdown.

Aeon

The noelclaw skill pack is live in the Aeon ecosystem (merged PR #253). Once added, all 121 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 on Base, autonomous agents, vault memory, MiroShark simulation, and the Noel Framework into Aeon.


Install

Via Aeon Skill Registry (CLI)

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:

skills:
  noelclaw:
    mcp_server:
      command: npx
      args:
        - "-y"
        - "-p"
        - "@noelclaw/mcp@3.43.1"
        - "noelclaw-mcp"
    enabled: true

Via Hermes in Aeon

If you use Hermes inside Aeon, follow the Hermes install guide. Once the skill is registered in Hermes, Aeon agents can invoke it.


Verify

In Hermes or any Aeon agent session:

You should see all 121 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:

Deep Research

Aeon agents can run multi-stage research that plans, searches, scrapes, and synthesizes - saving results to vault automatically:

Noel Vault

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

Noel Framework

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

MiroShark

Run social simulations as part of research or strategy workflows:

Market & Intel

Feed live data into agent reasoning:


Example: Aeon Agent Workflow

A typical Aeon agent task using noelclaw tools:

  1. ask_noel - pull market analysis and current context

  2. deep_research - run multi-stage research, auto-saves to vault

  3. agent_spawn - create a persistent agent to track the topic

  4. vault_save - store the analysis output

  5. create_automation - set a recurring task based on the analysis

  6. agent_schedule - schedule the agent to run daily


Notes

  • All 121 tools are available - no Aeon-specific limitations

  • BYOK env vars (Grok, MiniMax) work the same way as in other clients

  • See Environment Variables for optional keys

  • See MCP Server Reference for full tool parameter docs

Last updated

Was this helpful?