Skip to content

Commit fb7f0cc

Browse files
committed
refactor(ai): rename misc.nix to workflows.nix
- Rename file to better reflect purpose (workflow tools) - Add ralph CLI tool for Ralph Wiggum orchestration - Add beads and bv-bin packages for memory management
1 parent f5ea6c3 commit fb7f0cc

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,22 @@
44
...
55
}: {
66
home.packages = lib.attrsets.attrValues {
7+
## Spec-driven Development
78
# inherit(pkgs.ai)
89
# ## Spec-driven tools
910
# #spec-kit
1011
# ;
1112
openspec = pkgs.writeShellScriptBin "openspec" ''
1213
exec ${pkgs.uv}/bin/uv tool run @fission-ai/openspec@latest "$@"
1314
'';
15+
16+
## Ralph Wiggum
17+
ralph = pkgs.writeShellScriptBin "ralph" ''
18+
exec ${pkgs.uv}/bin/uv tool --from ralph-orchestrator run ralph "$@"
19+
'';
20+
21+
## Memory System
22+
inherit (pkgs) beads;
23+
inherit (pkgs.custom) bv-bin;
1424
};
1525
}

0 commit comments

Comments
 (0)