This commit is contained in:
2026-08-05 11:02:35 -03:00
parent 7d74b01bb5
commit 8e824417b5
4 changed files with 557 additions and 0 deletions
@@ -0,0 +1,16 @@
{ lib, config, pkgs, ... }:
{
options.custom = {
dev-orchestrator.enable = lib.mkEnableOption "enable dev-orchestrator OpenSpec + OpenCode devQA loop with git worktrees";
};
config = lib.mkIf config.custom.dev-orchestrator.enable {
home.packages = [
(pkgs.writeShellApplication {
name = "dev-orchestrator";
runtimeInputs = with pkgs; [ git ];
text = builtins.readFile ../../../tooling/dev-orchestrator;
})
];
};
}