Checking authentication...

kube-coder
-- -- --
VS Code
Select a task to see its output
Or press N to create a new one
(no task selected)
text
Memory revisions will appear here once the backend stores them.
Planned schema: each save creates a new revision with timestamp, source_task_id, and a diff.
Tasks and crons that read or wrote this memory entry will appear here.
Planned: server tracks {{ memory.ns.key }} references at task launch and emits links in both directions.

Triggers spawn tasks

Webhooks spawn a task when an external service POSTs to your URL — GitHub PRs, Slack mentions, Stripe events. HMAC-signed by default.

Crons spawn a task on a schedule. Backed by real Kubernetes CronJob objects, so they keep firing even if the workspace pod restarts.

(Roadmap) Crons can interpolate {{ memory.ns.key }} into their prompt template — so the cron reads from shared state on each fire, and the spawned task writes back. That's the agent loop.

// agent loop sketch
memory["github.repos"] = ["a", "b"]
cron("@hourly") → spawn task per repo
task → check PRs → memory["github.last_seen"] = …