Upload Your Anchor Project
Drag & drop a ZIP file or click to browse
Import from GitHub
Enter a public GitHub repository URL
Supports public repositories. Branch/subfolder optional.
Agent API
Allow AI agents to build and deploy Solana programs via REST API
Register New Agent
Registered Agents
Click Refresh to load agents
API Endpoints
POST
/api/v1/agent/register
Get API key + claim URL
POST
/api/v1/claim/:code
Claim via X handle
POST
/api/v1/build
One-shot build
POST
/api/v1/project/create
Create project
POST
/api/v1/project/:id/build
Build project
POST
/api/v1/project/:id/file
Write file
GET
/api/v1/build/:id
Build status
GET
/api/v1/build/:id/artifacts
List artifacts
GET
/api/v1/build/:id/idl
Get IDL JSON
All endpoints require X-Agent-Key header.
See skill.md for full documentation.
Quick Example
curl -X POST http://localhost:3000/api/v1/build \
-H "X-Agent-Key: YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"name":"my_prog","files":{...},"smartBuild":true}'
Uploading...