added ai agent tools(not working)

This commit is contained in:
2026-06-24 20:18:41 -07:00
parent 7b88c58e8f
commit f264d808a3
3 changed files with 17 additions and 0 deletions
+8
View File
@@ -1 +1,9 @@
use flake
# ── Headroom (uv-managed Python venv) ──────────────────────────
VENV_DIR="$PWD/.direnv/headroom-venv"
if [ ! -d "$VENV_DIR" ]; then
uv venv "$VENV_DIR"
uv pip install --python "$VENV_DIR/bin/python" --quiet "headroom-ai[proxy]"
fi
PATH_add "$VENV_DIR/bin"
+2
View File
@@ -4,8 +4,10 @@ node_modules
bun.lock
package.json
AGENTS.md
.codegraph
.mcp.json
opencode.jsonc
.agents
.serena
skills-lock.json
+7
View File
@@ -216,6 +216,7 @@
# ── Dev Shells (for direnv) ──────────────────────────────────
devShells = forAllSystems (sys: let
pkgs = nixpkgs.legacyPackages.${sys};
pkgs-unstable = nixpkgs-unstable.legacyPackages.${sys};
in {
# Notice the 'default =' here!
default = pkgs.mkShell {
@@ -225,8 +226,14 @@
git
nil
bun
nodejs
xorriso
pkgs-unstable.codex
uv
];
shellHook = ''
export PATH="$PWD/node_modules/.bin:$PATH"
'';
};
});
};