feat(tooling): dev-orchestrator — OpenSpec + OpenCode dev→QA loop #5

Open
jpporta wants to merge 5 commits from feat/dev-orchestrator into main
2 changed files with 18 additions and 0 deletions
Showing only changes of commit 80556753e3 - Show all commits
+2
View File
@@ -31,6 +31,7 @@
../../modules/home-manager/pi ../../modules/home-manager/pi
../../modules/home-manager/tmux ../../modules/home-manager/tmux
../../modules/home-manager/openspec ../../modules/home-manager/openspec
../../modules/home-manager/dev-orchestrator
../../modules/home-manager/power-profiles ../../modules/home-manager/power-profiles
../../modules/home-manager/ntfy-notify ../../modules/home-manager/ntfy-notify
../../modules/home-manager/pinentry ../../modules/home-manager/pinentry
@@ -94,6 +95,7 @@
enable = true; enable = true;
}; };
openspec.enable = true; openspec.enable = true;
dev-orchestrator.enable = true;
power-profiles.enable = true; power-profiles.enable = true;
ntfy-notify.enable = true; ntfy-notify.enable = true;
bitwarden.enable = true; bitwarden.enable = true;
@@ -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;
})
];
};
}