Developer shares agent state storage architecture for Databricks-hosted agents
A developer on Reddit shared their architecture for storing agent state in a Databricks-hosted agent, following advice from the community. They split state into three buckets: run-local scratchpad (Redis), durable user/workspace state (Postgres), and append-only audit history with permission snapshots. The post highlights practical patterns for building stateful agents on Databricks.
Entities
Related
Developer shares best practices from building 6 agent harnesses in 6 months
A developer recounts building six agent harnesses over six months and distills best practices from companies like Ramp, Stripe, OpenAI, and Anthropic. Key takeaways include using small agent prompts, deterministic gates, isolated environments, and managing state.
Building an Agent Harness and Eval Pipeline with Durable Actors
A developer outlines the need for a robust agent harness and evaluation pipeline to make AI agents production-ready, using durable actors to prevent crashes mid-task. The post describes a coding assistant that debugs production incidents via multiple tool calls over minutes, highlighting reliability challenges.
User discovers hosted agents cannot access local filesystem
A user spent a week troubleshooting why a hosted AI agent couldn't access files on their local machine. They realized the agent runs in an ephemeral container on a remote server, so local files are never mounted—only uploaded copies are available.
Sanbox: Isolated sandboxes for AI agents with MicroVM isolation
Sanbox is a platform that provides isolated, resumable sandboxes for running AI agents. It uses MicroVM isolation, a persistent filesystem, and a live trail of run events. The platform supports reusable templates, a CLI that works with Codex, Claude Code, Cursor, CI, or terminal, and can be self-hosted for security/compliance.
Community discusses lack of process for retiring AI agents
A Reddit post highlights the growing problem of AI agent lifecycle management: spinning up agents is easy, but there is no established process for shutting them down. Agents accumulate in production, degrading or costing money, with no clear owner or criteria for retirement.