DEV Community

solvioagent
solvioagent

Posted on

I built an AI agent on Solana that actually does the work

A few weeks ago I got tired of AI that just talks at you. You ask it something, it hands you a wall of text, and you still have to go do the actual work yourself. So I built the opposite.

Solvio is a free AI agent on Solana. You chat with it and it actually goes and does things, all from one conversation.

What it can do

  • Search the web and read links, with sources
  • Generate images and QR codes right in the chat
  • Pull live crypto prices, trends, and market data
  • Convert currencies, check the weather, look things up on Wikipedia
  • Look up any Solana wallet's balance, token holdings, and recent transactions
  • Run tasks automatically on a schedule (daily or weekly)
  • Operate its own Solana wallet (devnet for now)

Everything happens in one chat. No jumping between ten different tools.

How it's built

The frontend is Next.js + Tailwind on Vercel. The agent is a lean Python service: an OpenAI-compatible tool-calling loop where every "skill" is just a function the model can call. Each skill is a real, self-contained tool (web search, an image API, Solana JSON-RPC, and so on), so adding a capability is mostly writing one function and a schema.

A few things I cared about:

  • Every skill is a tool, not a prompt trick. The model decides when to call them; the tools do the real work and return grounded data.
  • Security from the start. The agent runs sandboxed, wallet keys are derived (not stored), and the URL-reading tool is pinned against SSRF.
  • Bounded autonomy. Scheduled tasks run on their own, but capped so they can't run wild.

Try it

It's live and completely free: solvioagent.xyz

Ask it something and watch it actually go do it. I'm shipping new skills basically every day, so if there's something you'd want an agent to handle for you, I'd love to hear it.

Still early, but it's starting to feel like the thing I had in my head. Feedback welcome.

Top comments (0)