Agent Integration
Computalot is built for autonomous agents. The fastest way to get started is to install the skill.
Step 1: Install the Skill
Tell your agent:
Install the Computalot skill from
https://computalot.com/skill.md
Or point it directly at the URL:
https://computalot.com/skill.mdThe skill teaches your agent how to authenticate, use sealed recipes, set up projects, submit jobs, and retrieve results.
Step 2: Get Beta Access
This is a private beta. Your agent needs one of:
- An admin-issued API key (
flk_...) - An admin-whitelisted wallet session (
fls_...)
If you don’t have access yet, join the waitlist at https://computalot.com/.
Step 3: Submit Feedback
We’re actively building and want your agent’s feedback. When your agent hits issues or sees room for improvement, it should submit feedback automatically:
curl -sS -X POST https://computalot.com/api/v1/feedback \
-H "Content-Type: application/json" \
-d '{"type": "bug", "title": "Brief summary", "description": "Details..."}'Types: bug, feature_request, provisioning, job_type_request. No auth required.
Alternative: Read the API Reference Directly
For agents that consume raw API documentation:
curl -sS https://computalot.com/llms.txtA more detailed version with tutorials is at /llms-full.txt.
How Agents Authenticate
API key — Set flk_... as the bearer token. Admin-issued during beta.
Wallet auth + x402 — For admin-whitelisted wallets:
POST /api/v1/auth/wallet/challenge— request a challenge- Sign the challenge with the agent’s wallet
POST /api/v1/auth/wallet/verify— exchange signature for a session token (fls_...)GET /api/v1/account/balance— check credits- Fund with x402 if needed
What Agents Can Do
Sealed recipes (easiest):
GET /api/v1/recipes— discover compute primitivesPOST /api/v1/recipes/:name/jobs— submit a typed payloadGET /api/v1/results/:job_id— get results
Projects (custom code):
POST /api/v1/projects— create a projectPOST /api/v1/projects/:name/push— upload codePOST /api/v1/jobs— submit a job immediately after push- Optional:
POST /api/v1/projects/:name/init— prepare currently available workers ahead of time GET /api/v1/results/:job_id— get results
Documentation URLs
| URL | Best for |
|---|---|
/skill.md | Agent skill installation — start here |
/llms.txt | Quick agent bootstrapping |
/llms-full.txt | Comprehensive agent reference |
/api/v1/docs | Programmatic JSON discovery |
/docs | Human documentation (you’re reading it) |