Open-source agentic AI platform built on Juno Network.
- On-chain (Juno V29.1 CosmWasm): Agent identity, task ledger, escrow — the trust layer
- Off-chain (Rust daemon): LLM calls, tool execution, agent runtimes — the intelligence layer
- Two-tier compute: Local (fast/free) → Akash (GPU) + optional WAVS verification (TEE attested)
cargo install junoclaw-cli
junoclaw init
junoclaw start
# Open http://localhost:7777junoclaw/
├── crates/
│ ├── junoclaw-core/ # Plugin trait, config, types
│ ├── junoclaw-runtime/ # Agent execution engine
│ ├── junoclaw-cli/ # CLI tool (init, start, agent)
│ └── junoclaw-daemon/ # Axum HTTP + WebSocket server
├── plugins/
│ ├── plugin-llm/ # LLM providers (Ollama, Anthropic, OpenAI)
│ ├── plugin-compute-local/
│ ├── plugin-compute-akash/
│ ├── plugin-storage-local/
│ ├── plugin-shell/
│ ├── plugin-ibc/
│ └── plugin-browser/
├── contracts/
│ ├── junoclaw-common/ # Shared types crate
│ ├── agent-registry/ # On-chain agent identity
│ ├── task-ledger/ # Immutable task log
│ └── escrow/ # Lock/release/slash JUNO
└── frontend/ # React + Vite + Tailwind dashboard
- Akash Network: Decentralised GPU compute (one-click via Skip Protocol swap)
- WAVS (Layer.xyz): Verifiable off-chain execution with TEE support
- TrustGraph: Verifiable reputation via WAVS
- Skip Protocol: One-click JUNO/USDC → AKT payment routing
Apache-2.0