cantelopBeta

Serverless infrastructure for your Pi agents.

Any use case.

Any harness.

Slack agent that monitors production
Build me a Slack agent on Cantelop that monitors production. Cantelop is a hosted runtime where each agent session runs in its own microVM with a workspace that outlives it.

Use the Cantelop SDK: https://github.com/stepandel/cantelop-sdk
Docs for reference: /docs

Before you write any code, ask me:
- Which channel does it live in, and should it respond only when mentioned or follow threads too?
- Where do alerts come from — Alertmanager, PagerDuty, Grafana, something else — and what does a payload look like?
- What can it read about production: health URLs, a logs or metrics endpoint, deploy history?
- Should it only report, or may it act — restart, roll back, page someone?
- Whose Workspace is it (if there's more than one user or environment to the agent): a user, a customer account, a team, a codebase? Cantelop creates workspaces that could be shared between sessions, so pick the identity that owns the files.
- Which agent SDK should the runtime use: openai, claude, pi, or something else?

Then scaffold with `cantelop init -app ops-bot -provider <my answer>`, keep the API (src/api.ts) and the Session runtime (src/session.ts) separate as the template does, run it with `cantelop dev`, and tell me which env vars and secrets to set and where to point the webhook after `cantelop deploy`.