Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,16 @@ Nix packages for AI coding agents and development tools. Automatically updated d
- **Usage**: `nix run github:numtide/llm-agents.nix#openspec -- --help`
- **Nix**: [packages/openspec/package.nix](packages/openspec/package.nix)

</details>
<details>
<summary><strong>pi</strong> - A terminal-based coding agent with multi-model support, mid-session model switching, and a simple CLI for headless coding tasks.</summary>

- **Source**: binary
- **License**: MIT
- **Homepage**: https://github.com/badlogic/pi-mono
- **Usage**: `nix run github:numtide/llm-agents.nix#pi -- --help`
- **Nix**: [packages/pi/package.nix](packages/pi/package.nix)

</details>
<details>
<summary><strong>qwen-code</strong> - Command-line AI workflow tool for Qwen3-Coder models</summary>
Expand Down
12 changes: 12 additions & 0 deletions packages/pi/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
pkgs,
perSystem,
...
}:
let
npmPackumentSupport = pkgs.callPackage ../../lib/fetch-npm-deps.nix { };
in
pkgs.callPackage ./package.nix {
inherit (perSystem.self) versionCheckHomeHook;
inherit (npmPackumentSupport) fetchNpmDepsWithPackuments npmConfigHook;
}
5 changes: 5 additions & 0 deletions packages/pi/hashes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"version": "0.34.2",
"sourceHash": "sha256-ytDmQZcxEURtmPHTXxjIhBJqQYGDUvLKGUfGKGGFQp0=",
"npmDepsHash": "sha256-Frf/mn0UtrKkvyv+GWZNkAqFLvSug/UWZCjnNeZQMP0="
}
Loading