AIAny
AI Agent2025
Icon for item

Cloudflare Agents

Runs stateful AI agents as Cloudflare Durable Objects — each keeps its own storage and lifecycle, hibernating when idle and waking on demand. Adds WebSocket state sync, type-safe RPC, resumable LLM streaming, MCP roles, and durable workflows.

Introduction

Most agent frameworks treat persistence as something you bolt on afterward — a Redis instance for memory, a separate session store, a queue for long jobs. Cloudflare Agents collapses all of that into one primitive: the agent is a Durable Object. Compute, storage, and identity live in the same place, so an agent can sleep for days, wake on a single request, and resume exactly where it left off without rehydrating state from anywhere else.

What Sets It Apart
  • State and compute are co-located. Each agent owns embedded SQLite storage that survives restarts and syncs to connected clients automatically — no external database round-trips on the hot path.
  • Hibernation is the default, not an optimization. Idle agents cost nothing and evict from memory; an incoming WebSocket message or RPC call revives them, making "one long-lived agent per user, session, or document" economically viable at scale.
  • Resumable LLM streaming survives disconnects. Because the agent holds the stream's state, a client that drops mid-generation can reconnect and keep reading — a hard problem in stateless serverless setups.
  • MCP works both ways. An agent can act as an MCP server exposing its tools or as a client consuming external ones, and it can speak WebSocket, HTTP, email, and voice (STT/TTS) from the same object.
Who It's For

Great fit if you already build on Cloudflare Workers and want stateful, per-entity agents — chat assistants, document collaborators, long-running workflow runners — without standing up your own state layer. The Durable Object model hands you strong single-threaded consistency per agent for free.

Look elsewhere if you need to run on your own hardware or another cloud: the framework is tightly coupled to Durable Objects and Workers, so it isn't portable. Likewise, if your agent is a one-shot stateless call, the persistence machinery is overhead you won't use.

More Items

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

GitHub
AI Infra2025

Measures generative AI inference performance with token-level metrics (TTFT, inter-token latency), latency, and throughput under realistic traffic patterns. Provides a multiprocess engine, real-time TUI dashboard, extensible plugins, and integrations for telemetry and result uploads, aimed at inference benchmarking and capacity planning.

GitHub
AI Agent2026

A curated collection of production-ready Agent Skills that turn tasks—presentation production, image generation, local KB retrieval, article assembly, and web-design—into agent-loadable skill folders. Uses a SKILL.md contract, supports multiple agent runtimes (Claude Code, Cursor, Codex), and offers modular install paths with pinned release zips.