Stakpak is a DevOps AI agent that generates infrastructure code, debugs Kubernetes, configures CI/CD, and automates deployments. - Source: github.com/stakpak/agent v0.3.86 - Rust workspace (14 crates), default binary: stakpak - Dependencies: openssl (transitive via native-tls), pkg-config - License: Apache-2.0
This commit is contained in:
@@ -24,6 +24,7 @@ A custom Nix overlay and flake providing additional packages not found in upstre
|
||||
| `kubernetes-mcp-server` | Model Context Protocol (MCP) server for Kubernetes and OpenShift | MCP Servers |
|
||||
| `loop` | Corporate messenger for your team | Communication |
|
||||
| `radar` | Modern Kubernetes visibility — topology, event timeline, service traffic, resource browsing, Helm management, and GitOps support | Kubernetes |
|
||||
| `stakpak` | DevOps AI agent that generates infrastructure code, debugs Kubernetes, configures CI/CD, and automates deployments | AI Agents |
|
||||
|
||||
## Usage
|
||||
|
||||
@@ -122,7 +123,8 @@ nix-overlay/
|
||||
│ ├── loop/ # Corporate messenger for your team
|
||||
│ ├── mcp-gateway/ # MCP protocol gateway
|
||||
│ ├── radar/ # Kubernetes UI (topology, timeline, Helm, GitOps)
|
||||
│ └── skillsmcp/ # MCP server for Agent Skills
|
||||
│ ├── skillsmcp/ # MCP server for Agent Skills
|
||||
│ └── stakpak/ # DevOps AI agent for infrastructure automation
|
||||
└── README.md
|
||||
```
|
||||
|
||||
|
||||
5
packages/stakpak/default.nix
Normal file
5
packages/stakpak/default.nix
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
pkgs.callPackage ./package.nix { }
|
||||
41
packages/stakpak/package.nix
Normal file
41
packages/stakpak/package.nix
Normal file
@@ -0,0 +1,41 @@
|
||||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
pkg-config,
|
||||
openssl,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "stakpak";
|
||||
version = "0.3.86";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "stakpak";
|
||||
repo = "agent";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-k8fOgwn1Sh3Yg62ROzfKJym8AGewpZ3/2e3tHNRL7/0=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-aa1YjyShoSNv9sC18gIx/kuAbxrNAsCE+2if8Rm2uiw=";
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
buildInputs = [
|
||||
openssl
|
||||
];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
passthru.category = "AI Agents";
|
||||
|
||||
meta = with lib; {
|
||||
description = "DevOps AI agent that generates infrastructure code, debugs Kubernetes, configures CI/CD, and automates deployments";
|
||||
homepage = "https://stakpak.io";
|
||||
changelog = "https://github.com/stakpak/agent/releases/tag/v${version}";
|
||||
license = licenses.asl20;
|
||||
sourceProvenance = with sourceTypes; [ fromSource ];
|
||||
mainProgram = "stakpak";
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user