{"id":50763388,"url":"https://github.com/ramesherrorhunter/kiro-k8s-agent","last_synced_at":"2026-06-11T12:30:18.433Z","repository":{"id":353916719,"uuid":"1221415846","full_name":"ramesherrorhunter/kiro-k8s-agent","owner":"ramesherrorhunter","description":"Kiro agent for Kubernetes cluster management and deployments","archived":false,"fork":false,"pushed_at":"2026-04-26T07:18:04.000Z","size":5,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-26T09:21:45.593Z","etag":null,"topics":["ai-agents","devops","k8s","k8s-deployment","kubernetes"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ramesherrorhunter.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-26T07:09:10.000Z","updated_at":"2026-04-26T07:57:13.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ramesherrorhunter/kiro-k8s-agent","commit_stats":null,"previous_names":["ramesherrorhunter/kiro-k8s-agent"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ramesherrorhunter/kiro-k8s-agent","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramesherrorhunter%2Fkiro-k8s-agent","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramesherrorhunter%2Fkiro-k8s-agent/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramesherrorhunter%2Fkiro-k8s-agent/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramesherrorhunter%2Fkiro-k8s-agent/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ramesherrorhunter","download_url":"https://codeload.github.com/ramesherrorhunter/kiro-k8s-agent/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ramesherrorhunter%2Fkiro-k8s-agent/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34199516,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agents","devops","k8s","k8s-deployment","kubernetes"],"created_at":"2026-06-11T12:30:16.947Z","updated_at":"2026-06-11T12:30:18.412Z","avatar_url":"https://github.com/ramesherrorhunter.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# k8s-agent\n\nAn intelligent Kiro CLI agent that auto-generates production-ready Kubernetes manifests by analyzing your codebase — no manual configuration needed.\n\n---\n\n## Purpose\n\nEliminate the manual effort of writing Kubernetes manifests. The agent inspects your project, detects its language, port, and environment variables, and produces a complete `k8s/` directory ready to deploy.\n\n---\n\n## Solutions Offered\n\n| Problem | Solution |\n|---|---|\n| Writing K8s manifests from scratch | Auto-generates based on project files |\n| Missing resource limits | Always sets CPU and memory requests/limits |\n| No health checks | Always adds liveness and readiness probes |\n| Hardcoded env vars | Uses ConfigMap, references Secrets for sensitive values |\n| Missing Ingress config | Auto-generates nginx Ingress with host placeholder |\n\n---\n\n## Benefits\n\n- **Zero config** — infers everything from your project files\n- **Production-ready** — resource limits, health probes, and replicas set by default\n- **Secure** — env vars in ConfigMap, sensitive values referenced as Secrets\n- **Multi-language support** — Node.js, Python, Go, Java, Rust, Ruby, and generic projects\n- **Consistent output** — follows the same best-practice sequence every time\n\n---\n\n## How It Works\n\nThe agent runs 2 skills in sequence:\n\n```\nanalyze_project → generate_k8s_manifests\n```\n\n| Skill | What it does |\n|---|---|\n| `analyze_project` | Detects language, framework, port, and env vars in a single pass |\n| `generate_k8s_manifests` | Writes Deployment, Service, Ingress, and ConfigMap |\n\n---\n\n## Installation\n\n**1. Clone the repo**\n```bash\ngit clone https://github.com/ramesherrorhunter/kiro-k8s-agent.git\n```\n\n**2. Copy the agent into your project**\n```bash\ncp -r kiro-k8s-agent/.kiro /path/to/your/project/\n```\n\nOr copy into the current directory:\n```bash\ncp -r kiro-k8s-agent/.kiro .\n```\n\nThat's it — the agent and all skills are now available in your project.\n\n---\n\n## SOP — Standard Operating Procedure\n\n### Prerequisites\n- Kiro CLI installed\n- Project directory accessible\n\n### Steps\n\n**1. Navigate to your project**\n```bash\ncd /path/to/your/project\n```\n\n**2. Start Kiro CLI**\n```bash\nkiro-cli\n```\n\n**3. Select the agent**\n\nType `/agent` and from the dropdown select `k8s-agent`\n\n**4. Review generated files**\n```\nk8s/\n├── deployment.yaml\n├── service.yaml\n├── ingress.yaml\n└── configmap.yaml\n```\n\n### Expected Outputs\n\n| File | Description |\n|---|---|\n| `deployment.yaml` | 2 replicas, resource limits, liveness + readiness probes |\n| `service.yaml` | ClusterIP, port 80 → detected app port |\n| `ingress.yaml` | nginx ingress with host placeholder |\n| `configmap.yaml` | Env vars from `.env.example` |\n\n### Defaults\n\n| Setting | Value |\n|---|---|\n| Replicas | 2 |\n| Namespace | default |\n| Ingress class | nginx |\n| CPU request / limit | 100m / 500m |\n| Memory request / limit | 128Mi / 512Mi |\n\n### Notes\n- Update the image name in `deployment.yaml` before deploying\n- Replace host placeholder in `ingress.yaml` with your actual domain\n- Re-run the agent after adding new env vars or changing the app port\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framesherrorhunter%2Fkiro-k8s-agent","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Framesherrorhunter%2Fkiro-k8s-agent","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Framesherrorhunter%2Fkiro-k8s-agent/lists"}