OpenKite - Opensource AWS DevOps AI Agent

Reddit r/AI_Agents Tools

Summary

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.
Original Article

Similar Articles

aws/agent-toolkit-for-aws

GitHub Trending (daily)

Agent Toolkit for AWS helps AI coding agents build, deploy, and manage applications on AWS, with plugins for Claude Code, Codex, Cursor, and Kiro.

Open-source devtool for AI agent projects

Reddit r/AI_Agents

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/openai-agents-python

GitHub Trending (daily)

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.

vercel-labs/open-agents

GitHub Trending (daily)

A new open-source template released by Vercel Labs designed to simplify the process of building cloud-based AI agents.