Add AI tool packages: cao-cli, agentops, mediapipe
This commit is contained in:
25
pkgs/cao-cli.nix
Normal file
25
pkgs/cao-cli.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, tmux, uv, python3Packages }:
|
||||
buildPythonPackage rec {
|
||||
pname = "cli-agent-orchestrator";
|
||||
version = "1.0.3";
|
||||
src = fetchFromGitHub {
|
||||
owner = "awslabs";
|
||||
repo = "cli-agent-orchestrator";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-0000000000000000000000000000000000000000000000000000"; # NEEDS UPDATE
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
pydantic
|
||||
requests
|
||||
typer
|
||||
rich
|
||||
python-dotenv
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "CLI Agent Orchestrator - multi-agent collaboration via tmux";
|
||||
homepage = "https://github.com/awslabs/cli-agent-orchestrator";
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user