ZSeven-W

Agent K8s — DevOps skill for Claude Code

DevOps community

AI Agent scheduling system like Kubernetes.

How to install Agent K8s

This entry records only its repository, not the path inside it, so there is no exact command to give. Open ZSeven-W/agent-k8s and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Agent K8s does

AI Agent scheduling system like Kubernetes. Intelligent AI-driven scheduling with capability matching, resource optimization, and multi-backend support.

Alternatives in DevOps

  • Cccc — Coordinate your coding agents like a group chat — read receipts, delivery tracking, and remote ops from your p 1.1k ★
  • Cheetahclaws — CheetahClaws: A Fast and Easy-to-Use Agent Harness Infrastructure for Long-Horizon, Multi-Model, and Tool-Usin 768 ★
  • Video Podcast Maker — AI-powered video podcast creation skill for coding agents 529 ★

README

AgentK8s 🤖

AI Agent Scheduling System — Like Kubernetes, but for AI Agents

AgentK8s is a Kubernetes-style scheduling system specifically designed for AI agents (Claude Code, Codex, Gemini CLI, etc.). It provides intelligent, AI-driven scheduling with capability matching, resource optimization, and multi-backend support.

![Go](https://img.shields.io/badge/Go-1.26-blue) ![License](https://img.shields.io/badge/License-MIT-orange)

✨ Features

  • 🤖 AI Agent Native — First-class support for AI agents as workloads
  • 🧠 Intelligent Scheduling — Capability matching, context window awareness, cost optimization
  • 🔄 Multi-Backend — Supports Kubernetes, Docker, VMs, Cloud
  • 📡 gRPC Communication — Efficient binary protocol
  • 🔐 RBAC & Auth — JWT-based authentication with role-based access
  • 💾 State Persistence — etcd-backed storage
  • 📊 CLI — kubectl-style command-line interface

Architecture

┌─────────────────────────────────────────────────────────────┐
│                      Control Plane                          │
│  ┌────────────┐  ┌────────────┐  ┌────────────────────┐ │
│  │ API Server │  │ Scheduler  │  │ Controller Manager │ │
│  │  (REST)   │  │(AI-driven)│  │  (reconciliation) │ │
│  └────────────┘  └────────────┘  └────────────────────┘ │
└─────────────────────────────────────────────────────────────┘
                              │
                              ▼
┌─────────────────────────────────────────────────────────────┐
│                    Worker Nodes                              │
│  ┌────────────┐  ┌────────────┐  ┌────────────┐        │
│  │  Agent A   │  │  Agent B   │  │  Agent C   │        │
│  │ (Claude)   │  │  (Codex)  │  │ (Gemini)   │        │
│  └────────────┘  └────────────┘  └────────────┘        │
└─────────────────────────────────────────────────────────────┘

Quick Start

Prerequisites

  • Go 1.26+
  • etcd (for state storage)

Build

go build -o agentk8s ./cmd/server
go b