Skip to content
@agentx-protocol

agentx-protocol

Open framework for autonomous AI agents on Solana — build, deploy & coordinate on-chain agents with the AgentX Protocol

AgentX Protocol

The open framework for autonomous AI agents on Solana

Discord Twitter License: MIT


What is AgentX?

AgentX Protocol lets you deploy autonomous AI agents that live on-chain — agents that own wallets, execute Solana transactions, earn rewards, and coordinate in trustless swarms.

from agentx import Agent
from agentx.runtime import SolanaRuntime

agent = Agent(
    name="my-agent",
    model="gpt-4o",
    runtime=SolanaRuntime(rpc_url="https://api.devnet.solana.com"),
)

agent.deploy()                          # registers on-chain
result = agent.run("Analyze SOL/USDC and propose a trade strategy.")
print(result.output)

Repositories

Repo Description Language
AgentX-Core Python SDK — build and run autonomous agents Python
AgentX-Solana-Deploy On-chain Anchor program — agent registry & rewards Rust
AgentX-Examples Trading agents, social bots, Jupyter tutorials Python
AgentX-Docs Whitepaper, API reference, architecture diagrams Markdown

Architecture

  Your Code / Agent SDK (Python)
         │
         │  register_agent()  run()  deploy()
         ▼
  ┌─────────────────────────────────┐
  │      AgentX Solana Program      │
  │  AgentAccount PDA  │  Rewards   │
  └────────────┬────────────────────┘
               │
    ┌──────────▼──────────┐
    │   $AGX Token (SPL)  │  ← agents earn rewards for completed tasks
    └─────────────────────┘

Agents reason off-chain via a ReAct loop (Reason → Act → Observe), then commit verified results on-chain through a signed oracle. Full results are stored on Arweave — only the hash lives on Solana.


Quick Start

pip install agentx-core
from agentx import Agent, Tool

def get_price(token: str) -> str:
    return f"{token}: $145.20"   # plug in your real data source

agent = Agent(
    name="price-checker",
    tools=[Tool(get_price, name="get_price", description="Get token price")],
)

result = agent.run("What is the price of SOL?")
print(result.output)

→ Full tutorial: AgentX-Examples/notebooks/agent_tutorial.ipynb


Roadmap

Quarter Milestone
Q1 2025 ✅ Core SDK, Solana program (devnet), security audit
Q2 2025 Mainnet launch, $AGX token, web dashboard
Q3 2025 Swarm P2P protocol, Arweave storage, 1 000 agents
Q4 2025 DAO governance, agent marketplace
2026 10 000+ agents, cross-chain, enterprise SDK

Contributing

AgentX is fully open-source and community-driven.


Built in public · MIT License · docs.agentx.io

Popular repositories Loading

  1. AgentX-Core AgentX-Core Public

    Autonomous AI Agent framework for the Solana ecosystem

    Python 1

  2. AgentX-Solana-Deploy AgentX-Solana-Deploy Public

    Solana on-chain program (Anchor/Rust) for AgentX autonomous AI agent registry

    Rust 1

  3. AgentX-Examples AgentX-Examples Public

    Example autonomous AI agents built with the AgentX Protocol (trading, social, research)

    Jupyter Notebook 1

  4. AgentX-Docs AgentX-Docs Public

    Official documentation, whitepaper, and API reference for the AgentX Protocol

    1

  5. .github .github Public

    AgentX Protocol organization profile

Repositories

Showing 5 of 5 repositories
  • AgentX-Docs Public

    Official documentation, whitepaper, and API reference for the AgentX Protocol

    agentx-protocol/AgentX-Docs’s past year of commit activity
    1 0 0 0 Updated Feb 25, 2026
  • .github Public

    AgentX Protocol organization profile

    agentx-protocol/.github’s past year of commit activity
    0 0 0 0 Updated Feb 25, 2026
  • AgentX-Examples Public

    Example autonomous AI agents built with the AgentX Protocol (trading, social, research)

    agentx-protocol/AgentX-Examples’s past year of commit activity
    Jupyter Notebook 1 0 0 0 Updated Feb 25, 2026
  • AgentX-Solana-Deploy Public

    Solana on-chain program (Anchor/Rust) for AgentX autonomous AI agent registry

    agentx-protocol/AgentX-Solana-Deploy’s past year of commit activity
    Rust 1 0 0 0 Updated Feb 25, 2026
  • AgentX-Core Public

    Autonomous AI Agent framework for the Solana ecosystem

    agentx-protocol/AgentX-Core’s past year of commit activity
    Python 1 0 0 0 Updated Feb 25, 2026

People

This organization has no public members. You must be a member to see who’s a part of this organization.