CoreClaw is an open-core framework for long-running AI agents. Bring your own models, deploy anywhere, and extend with plugins.
// coreclaw quickstart // kiro mindset: never final, always improving import { Agent } from "coreclaw" const agent = new Agent({ model: "glm-5.2", tools: ["web", "terminal", "file"], persistent: true, }) await agent.schedule({ every: "2h", task: "Scan competitor updates", }) await agent.start() // runs until you stop it
Why CoreClaw
Agents persist across sessions with built-in cron scheduling. Deploy once, runs until told otherwise.
Swap between any LLM provider — OpenCode Go, Anthropic, DeepSeek, Ollama, OpenAI. Route different tasks to different models.
Extend with plugins or any MCP-compatible server. Custom tools, custom data sources — no fork needed.
Get started in 2 minutes
$ npm install -g coreclaw $ coreclaw init ✔ API key configured ✔ Default model set ✔ Schedule loaded $ coreclaw start ⚡ Agent is alive → Next task: 2m 15s → Status: monitoring
Works with
Open source. Free to use. MIT license. Perpetually improving.