aaa21a4f2f42779224cd8dc9e236ea1a999c41c6
New agents (11): - chat-search, code-analysis, code-ingest, database - document-writer, home-automation, image-maker - iot-coder, iot-hardware, video-analyze, vscode-setup Fixes: - Remove broken :deepseek suffix from coder-basic, coder-pro, devops-basic, devops-pro (caused silent fallback to parent model) - Add models.json with openRouterRouting for DeepSeek, Qwen, MiniMax, Moonshot AI provider cache targeting Additions: - headroom-bridge extension (compress_for_agent tool) - models.json with provider routing config Cleanup: - Remove old pi-subagents extension (replaced by @tintinweb/pi-subagents)
❄️ My NixOS Configuration
This directory contains the declarative configuration for my user environment, managed by Home Manager.
🛠️ How it Works (The Nix Way)
In NixOS, configuration files are managed "declaratively" rather than manually.
- The Source of Truth: Everything is defined in your
.nixfiles. - The Nix Store: When you "switch," Nix builds your files and stores them in
/nix/store/. These are immutable (read-only). - Symlinking: Home Manager creates symbolic links in your home directory (like
~/.pi/agents/settings.json) that point back to that read-only store.
✍️ How to Make Changes
Do not edit the files in your home directory. They are read-only symlinks. To change settings:
- Edit your source code: Open
home.nixinnvim. - Modify the Nix block: Locate the
home.filesection for your agents. - Apply changes:
home-manager switch
❓ Why "sudo" doesn't work
The /nix/store is mounted as read-only at the system level. This ensures your system always matches your config and allows for instant rollbacks if something breaks.
Example: Adding a local file and remote extensions
Pi Agent Configuration
To use the System Architect skills and Steel Browser extension with this project, ensure your .pi/settings.json is configured as follows:
{
"packages": [
{
"source": "/home/sam/.agents",
"extensions": [
"extensions/steel-browser/index.ts"
],
"skills": [
"skills/system-architect"
]
}
]
}
Usage
When you launch pi in this directory, it will automatically pull these assets from the Audas Media Gitea instance and activate the specialized toolset.
Description
Languages
TypeScript
97.1%
Python
1.3%
HTML
1.1%
JavaScript
0.4%