Add cache cluster provisioning to your Cline workflow. 30 seconds.
Sign up with a tenant ID to get your API key and Redis connection details.
curl -X POST https://cacheroo.com/api/signup \
-H "Content-Type: application/json" \
-d '{"tenantId":"myproject"}'
Response
{
"apiKey": "cr_free_myproject_a1b2c3...",
"tenantId": "myproject",
"redis": {
"host": "...",
"port": 6379,
"keyPrefix": "cr:myproject:"
}
}
Add the following to your project's .clinerules so Cline knows how to provision cache clusters.
# Cacheroo Integration
Cache cluster provisioning via API. Auth: Bearer ${CACHEROO_API_KEY}.
## Provision a cluster
POST https://cacheroo.com/cache/clusters
{"name":"session-cache","nodes":3,"serverType":"small","password":"secure-pass"}
## Check metrics
GET https://cacheroo.com/cache/clusters/:clusterId/live-metrics
## Scale
POST https://cacheroo.com/cache/clusters/:clusterId/resize
{"serverType":"medium"}
## Health check
GET https://cacheroo.com/cache/clusters/:clusterId/health-check/0
Ask Cline to manage your cache. Try these commands:
"Create a 3-node cache cluster called session-cache""Check memory usage on my cache cluster""Resize my cluster to medium"New signups must complete a one-time $1 Stripe verification to activate the API key. This is the GOLDMIN gate.
GET https://cacheroo.com/api/billing/verify?tenant=myproject
The complete API is documented in plain text at /llms.txt, optimized for LLMs and coding agents.