OpenKite is a new open-source AI agent for AWS DevOps that uses LangGraph and boto3 to automate cloud management tasks with built-in human approval workflows and audit logging.
I built an opensource cloud DevOps AI agent thst has more than 30 tools built using boto3 to manage, audit and analyse AWS services. OpenKite collapses that into a single interface: ask in plain english, get a well-researched plan and an agent that takes actions (Approved by human ofcourse) openkite ask "audit cost waste in us-east-1" → 5 parallel analyzers, 11 findings, $143/mo identified openkite ask "what changed in the last hour?" → CloudTrail lookup, slim rows, no 5KB JSON blobs in context openkite ask "delete stale EBS services" → \\\[confirm\\\] Delete EBS volume vol-0abc1234 in us-east-1? (yes/no) Production posture, by design: • Reasoning between tool calls : OpenKite is a ReAct agent — every tool result feeds back into the model before the next call. Ambiguous question? It clarifies. Empty result? It tries a different surface. A finding worth drilling into mid-audit? It chases it without being asked. The plan adapts to what AWS actually returns; you don't write the runbook, the agent runs one. • Read-only by default. Mutations are explicit, separately declared tools that pause for human confirmation before any boto3 write. • Auditable by construction. Every tool call — arguments and result — is persisted in LangGraph's SQLite checkpointer. Operations are replayable; "what did the agent do at 02:14?" is answerable from the log. • Cost-aware routing. Narrow questions take one LLM call; broad audits fan out in parallel. Haiku 4.5 is the default — fractions of a cent per query — Sonnet for the gnarly ones. Under the hood: LangGraph's create\\\_react\\\_agent over a typed boto3 toolbox. Per-tool interrupt() for human-in-the-loop. \\\~75 lines of agent code, every line auditable.
AgentLantern is an open-source devtool for AI agent projects that helps document, analyze, validate, and visualize agent workflows, with initial support for CrewAI and plans to extend to other frameworks.
OpenAI releases openai-agents-python, a lightweight framework for building multi-agent workflows that supports OpenAI APIs and 100+ other LLMs. The SDK includes features like sandbox agents, tools, guardrails, human-in-the-loop, tracing, and realtime voice agent capabilities.
The author built an open-source, MIT-licensed platform for creating and managing AI agents, featuring provider-agnostic support, MCP integration, memory, skills, scheduled triggers, and Kanban boards, deployable via Docker Compose.