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 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 bun.lock
package.json package.json
AGENTS.md
.codegraph .codegraph
.mcp.json .mcp.json
opencode.jsonc opencode.jsonc
.agents .agents
.serena
skills-lock.json skills-lock.json
+7
View File
@@ -216,6 +216,7 @@
# ── Dev Shells (for direnv) ────────────────────────────────── # ── Dev Shells (for direnv) ──────────────────────────────────
devShells = forAllSystems (sys: let devShells = forAllSystems (sys: let
pkgs = nixpkgs.legacyPackages.${sys}; pkgs = nixpkgs.legacyPackages.${sys};
pkgs-unstable = nixpkgs-unstable.legacyPackages.${sys};
in { in {
# Notice the 'default =' here! # Notice the 'default =' here!
default = pkgs.mkShell { default = pkgs.mkShell {
@@ -225,8 +226,14 @@
git git
nil nil
bun bun
nodejs
xorriso xorriso
pkgs-unstable.codex
uv
]; ];
shellHook = ''
export PATH="$PWD/node_modules/.bin:$PATH"
'';
}; };
}); });
}; };