added ai agent tools(not working)
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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"
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user