freshcrate
Home > MCP Servers > nix-ai

nix-ai

Your AI coding toolkit, declared in Nix — Claude, Gemini, Copilot, 15+ MCP servers, one flake

Description

Your AI coding toolkit, declared in Nix — Claude, Gemini, Copilot, 15+ MCP servers, one flake

README

nix-ai

Your AI coding toolkit, declared once. Reproduced everywhere

Ever spent hours configuring Claude Code plugins, Gemini settings, and MCP servers -- only to lose it all when you switch machines? nix-ai captures your entire AI setup as code using Nix. One command rebuilds everything, identically, every time.


What it manages

Tool What you get
Claude Code Plugin ecosystem, hooks, agents, commands, rules, statusline
Gemini CLI Settings, custom commands, permission rules
GitHub Copilot Configuration, permissions
OpenAI Codex Settings
MCP Servers 15+ servers — GitHub, Terraform, Context7, PAL, filesystem, memory, and more
Plugin Marketplace Curated marketplaces with Nix-pinned flake inputs
AI Dev Tools cclint, doppler-mcp, claude-flow, sync-mlx-models
MLX Local Apple Silicon inference via vllm-mlx with macOS launchd integration

Prerequisites

  • Nix (Determinate Nix recommended)
  • home-manager
  • Compatible platform: aarch64-darwin or x86_64-linux

Quick start

Add to your Nix flake:

{
  inputs.nix-ai = {
    url = "github:JacobPEvans/nix-ai";
    inputs.nixpkgs.follows = "nixpkgs";
    inputs.home-manager.follows = "home-manager";
  };
}

Then in your home-manager config:

sharedModules = [ nix-ai.homeManagerModules.default ];

That's it. Every AI tool, every plugin, every permission rule — managed by Nix.

How it works

nix-ai exports home-manager modules that merge into your existing configuration:

Export What it includes
homeManagerModules.default Full AI stack — Claude, Gemini, Copilot, Codex, MCP, MLX, dev tools
homeManagerModules.claude Just Claude Code
homeManagerModules.codex Just OpenAI Codex
homeManagerModules.maestro Just Maestro orchestration
lib.ci.claudeSettingsJson Pure JSON for CI validation (no derivations needed)
lib.ci.codexRules Codex rules export for CI validation and downstream consumers

Self-contained design

The module injects its own dependencies via _module.args. Your consuming flake only needs two lines:

inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";

No AI-specific inputs to wire up. No extra configuration. It just works.

Available module options

Key enable toggles exposed by the default module:

Option Type Default Description
programs.claude.enable bool — Enable Claude Code configuration
programs.claude.apiKeyHelper.enable bool false Headless API key authentication via Bitwarden
programs.claudeStatusline.enable bool false Claude Code powerline statusline
programs.claude.settings.sandbox.enabled bool false Filesystem/network sandbox isolation
programs.claude.settings.alwaysThinkingEnabled bool true Extended thinking mode
programs.claude.remoteControlAtStartup bool or null null Remote Control auto-start
programs.claude.model string or null null Override default model (e.g. "opus", "sonnet")
programs.claude.effortLevel enum or null null Adaptive reasoning effort ("low", "medium", "high"); null = upstream default (medium for Max/Team as of v2.1.68)
programs.claude.trustedProjectDirs list of str [] Base directories for auto-trust of CLAUDE.md imports

For the full option set, see modules/claude/options.nix.

Testing and validation

Run quality checks locally:

nix flake check

This runs formatting (nixfmt), static analysis (statix), dead code detection (deadnix), shell script linting (shellcheck), and full module evaluation (module-eval) to verify the home-manager module instantiates correctly with real inputs.

Fix formatting automatically:

nix fmt

Repository structure

modules/
ā”œā”€ā”€ claude/          # Claude Code module — see [modules/claude/README.md](modules/claude/README.md)
ā”œā”€ā”€ maestro/         # Maestro agent orchestration
ā”œā”€ā”€ mcp/             # 15+ MCP server definitions
ā”œā”€ā”€ common/          # Shared permission engine
ā”œā”€ā”€ gh-extensions/   # GitHub CLI extensions (gh-aw)
ā”œā”€ā”€ permissions/     # Per-tool permission rules
ā”œā”€ā”€ mlx/             # MLX inference server (vllm-mlx)
ā”œā”€ā”€ ai-tools.nix     # AI development tool packages
ā”œā”€ā”€ gemini.nix       # Gemini CLI configuration
ā”œā”€ā”€ copilot.nix      # GitHub Copilot configuration
└── codex.nix        # OpenAI Codex configuration
lib/                  # Key lib files (not full listing)
ā”œā”€ā”€ claude-settings.nix    # Pure settings generator
└── claude-registry.nix    # Marketplace format functions

Part of a trio

This repo is one of three that work together:

Repo What it does
nix-ai (you are here) AI coding tools
nix-home Dev environment (git, zsh, VS Code, tmux)
nix-darwin macOS system config (consumes both)

License

MIT

Release History

VersionChangesUrgencyDate
v1.48.2## [1.48.2](https://github.com/JacobPEvans/nix-ai/compare/v1.48.1...v1.48.2) (2026-04-21) ### Bug Fixes * **deps:** refresh gh-aw action SHA pins ([9f5e27a](https://github.com/JacobPEvans/nix-ai/commit/9f5e27a4363fe79573e9ad342fee4d79c9b334c5))High4/21/2026
v1.48.1## [1.48.1](https://github.com/JacobPEvans/nix-ai/compare/v1.48.0...v1.48.1) (2026-04-21) ### Bug Fixes * **ci:** add gh-aw-pin-refresh workflow and recompile lock files ([5515e5d](https://github.com/JacobPEvans/nix-ai/commit/5515e5d0dc60b9abb8e8129bdb90d647f7951325)), closes [#600](https://github.com/JacobPEvans/nix-ai/issues/600)High4/21/2026
v1.48.0## [1.48.0](https://github.com/JacobPEvans/nix-ai/compare/v1.47.0...v1.48.0) (2026-04-21) ### Features * **gemini:** add worktree, sandbox path, and auto-edit defaults ([#597](https://github.com/JacobPEvans/nix-ai/issues/597)) ([9e29a07](https://github.com/JacobPEvans/nix-ai/commit/9e29a07ecb19bd0cb400ea58d911bf4b933f8bd7)) ### Bug Fixes * add bot PR CI retrigger workflow ([#599](https://github.com/JacobPEvans/nix-ai/issues/599)) ([ce38b8b](https://github.com/JacobPEvans/nix-ai/commit/ce38High4/21/2026
v1.47.0## [1.47.0](https://github.com/JacobPEvans/nix-ai/compare/v1.46.1...v1.47.0) (2026-04-19) ### Features * **mlx:** expose llama-swap logLevel and logToStdout as configurable options ([#587](https://github.com/JacobPEvans/nix-ai/issues/587)) ([c1102df](https://github.com/JacobPEvans/nix-ai/commit/c1102df3776c271e4193c579fe4b01ffdca38e50))High4/19/2026
v1.46.1## [1.46.1](https://github.com/JacobPEvans/nix-ai/compare/v1.46.0...v1.46.1) (2026-04-18) ### Bug Fixes * **claude:** run conflicting-dir cleanup before checkLinkTargets ([#582](https://github.com/JacobPEvans/nix-ai/issues/582)) ([3fb42b4](https://github.com/JacobPEvans/nix-ai/commit/3fb42b45e5c18d2addffb5cf99fc8dec6810351f))High4/18/2026
v1.46.0## [1.46.0](https://github.com/JacobPEvans/nix-ai/compare/v1.45.5...v1.46.0) (2026-04-18) ### Features * **cross-tool:** wire shared skills to Codex and Gemini, fix stale MCP keys ([c63a358](https://github.com/JacobPEvans/nix-ai/commit/c63a358b6f8c843774001ad96ec673187ce6e7dd))High4/18/2026
v1.45.5## [1.45.5](https://github.com/JacobPEvans/nix-ai/compare/v1.45.4...v1.45.5) (2026-04-18) ### Bug Fixes * **permissions:** simplify deny rules for auto mode ([#576](https://github.com/JacobPEvans/nix-ai/issues/576)) ([6909691](https://github.com/JacobPEvans/nix-ai/commit/6909691cb484a227903226b23559dc4d9211afa7))High4/18/2026
v1.45.4## [1.45.4](https://github.com/JacobPEvans/nix-ai/compare/v1.45.3...v1.45.4) (2026-04-18) ### Bug Fixes * **pal:** correct custom_models.json field names and alias collisions ([#575](https://github.com/JacobPEvans/nix-ai/issues/575)) ([068f418](https://github.com/JacobPEvans/nix-ai/commit/068f418bcf26cced99242b25a6baaec45158f100))High4/18/2026
v1.45.3## [1.45.3](https://github.com/JacobPEvans/nix-ai/compare/v1.45.2...v1.45.3) (2026-04-17) ### Bug Fixes * **mcp:** env vars, wrappers, tool restoration ([#563](https://github.com/JacobPEvans/nix-ai/issues/563)) ([68ce7fc](https://github.com/JacobPEvans/nix-ai/commit/68ce7fc6f3173e775e0da92d8c801811a9277bda)) * remove cspell spell checker entirely ([#573](https://github.com/JacobPEvans/nix-ai/issues/573)) ([54f439d](https://github.com/JacobPEvans/nix-ai/commit/54f439d9f2f2f757108bbe69370bdb682High4/17/2026
v1.45.2## [1.45.2](https://github.com/JacobPEvans/nix-ai/compare/v1.45.1...v1.45.2) (2026-04-17) ### Bug Fixes * **claude:** add /tmp/ to additionalDirectories ([#571](https://github.com/JacobPEvans/nix-ai/issues/571)) ([bb6fef9](https://github.com/JacobPEvans/nix-ai/commit/bb6fef9ff1c1371b5539d61b946885dfbddba07c))High4/17/2026
v1.45.1## [1.45.1](https://github.com/JacobPEvans/nix-ai/compare/v1.45.0...v1.45.1) (2026-04-17) ### Bug Fixes * **claude:** narrow additionalDirectories, DRY the list, add retrospecting/reports ([#567](https://github.com/JacobPEvans/nix-ai/issues/567)) ([2d0dae7](https://github.com/JacobPEvans/nix-ai/commit/2d0dae78139903016272b25bc6eae63b16f1fbd1))High4/17/2026
v1.45.0## [1.45.0](https://github.com/JacobPEvans/nix-ai/compare/v1.44.1...v1.45.0) (2026-04-17) ### Features * **claude:** enable auto mode by default ([#564](https://github.com/JacobPEvans/nix-ai/issues/564)) ([f54be3d](https://github.com/JacobPEvans/nix-ai/commit/f54be3d8c5242cdce2adb13c9e864bbdbfe5fa05))High4/17/2026
v1.44.1## [1.44.1](https://github.com/JacobPEvans/nix-ai/compare/v1.44.0...v1.44.1) (2026-04-17) ### Bug Fixes * **pal-mcp:** use mlx-local/ provider prefix for Bifrost routing ([#565](https://github.com/JacobPEvans/nix-ai/issues/565)) ([f818d9a](https://github.com/JacobPEvans/nix-ai/commit/f818d9ac2a4ce0a612951b3c8615f000535e3024))High4/17/2026
v1.44.0## [1.44.0](https://github.com/JacobPEvans/nix-ai/compare/v1.43.5...v1.44.0) (2026-04-17) ### Features * **codex:** add config surface with 8 knobs ([#549](https://github.com/JacobPEvans/nix-ai/issues/549)) ([79070c5](https://github.com/JacobPEvans/nix-ai/commit/79070c53bb66aad08ee3dc5fde836df9a5896f17))High4/17/2026
v1.43.5## [1.43.5](https://github.com/JacobPEvans/nix-ai/compare/v1.43.4...v1.43.5) (2026-04-17) ### Bug Fixes * **pal-mcp:** env var injection and restore disabled tools ([#559](https://github.com/JacobPEvans/nix-ai/issues/559)) ([a1829f8](https://github.com/JacobPEvans/nix-ai/commit/a1829f8890c973ce44c1c702d6850a5ce2ca980f))High4/17/2026
v1.43.4## [1.43.4](https://github.com/JacobPEvans/nix-ai/compare/v1.43.3...v1.43.4) (2026-04-16) ### Bug Fixes * **claude:** update model references from Opus 4.6 to Opus 4.7 ([#556](https://github.com/JacobPEvans/nix-ai/issues/556)) ([d526bbb](https://github.com/JacobPEvans/nix-ai/commit/d526bbb0303453d93a788dfcb771a776ac50e8ff))High4/16/2026
v1.43.3## [1.43.3](https://github.com/JacobPEvans/nix-ai/compare/v1.43.2...v1.43.3) (2026-04-14) ### Bug Fixes * add automation bots to AI Moderator skip-bots ([#535](https://github.com/JacobPEvans/nix-ai/issues/535)) ([09cf37a](https://github.com/JacobPEvans/nix-ai/commit/09cf37aa40e5252f24c4437608aecffd03d3220b))Medium4/14/2026
v1.43.2## [1.43.2](https://github.com/JacobPEvans/nix-ai/compare/v1.43.1...v1.43.2) (2026-04-13) ### Bug Fixes * **gh-aw:** recompile workflows with v0.68.1, enable ai-ci auto-triggers ([786d881](https://github.com/JacobPEvans/nix-ai/commit/786d881252541b495724d4a9bcf445e79191b9c6)), closes [#508](https://github.com/JacobPEvans/nix-ai/issues/508)Medium4/13/2026
v1.43.1## [1.43.1](https://github.com/JacobPEvans/nix-ai/compare/v1.43.0...v1.43.1) (2026-04-13) ### Bug Fixes * relax codex default approvals ([#526](https://github.com/JacobPEvans/nix-ai/issues/526)) ([7fd2508](https://github.com/JacobPEvans/nix-ai/commit/7fd2508d703a98c287eec60a918d96e71660f92e))Medium4/13/2026
v1.43.0## [1.43.0](https://github.com/JacobPEvans/nix-ai/compare/v1.42.2...v1.43.0) (2026-04-13) ### Features * add AI merge gate ([#419](https://github.com/JacobPEvans/nix-ai/issues/419)) ([1791db9](https://github.com/JacobPEvans/nix-ai/commit/1791db99d7574dd7ee958507f12dad937c0a9d06)) * add browser-use skills via synthetic marketplace ([#319](https://github.com/JacobPEvans/nix-ai/issues/319)) ([c4315cb](https://github.com/JacobPEvans/nix-ai/commit/c4315cb05953f4380622e6d17db8a783f6bc1c44)) * add CMedium4/13/2026
v1.42.1## [1.42.1](https://github.com/JacobPEvans/nix-ai/compare/v1.42.0...v1.42.1) (2026-04-12) ### Bug Fixes * **claude:** clean up config defaults, set model/effort explicitly ([#495](https://github.com/JacobPEvans/nix-ai/issues/495)) ([b99e227](https://github.com/JacobPEvans/nix-ai/commit/b99e227eb489ef9cfe6fadb8067282465f4c80b2))Medium4/12/2026
v1.42.0## [1.42.0](https://github.com/JacobPEvans/nix-ai/compare/v1.41.0...v1.42.0) (2026-04-12) ### Features * **gemini:** migrate to Policy Engine, drop deprecated tools.allowed/exclude ([#516](https://github.com/JacobPEvans/nix-ai/issues/516)) ([6df0934](https://github.com/JacobPEvans/nix-ai/commit/6df0934fd02d3643eed55abf153b9594bb6b23e8))Medium4/12/2026
v1.41.0## [1.41.0](https://github.com/JacobPEvans/nix-ai/compare/v1.40.0...v1.41.0) (2026-04-12) ### Features * **codex,gemini:** expand modules to Claude-level feature parity ([72168b3](https://github.com/JacobPEvans/nix-ai/commit/72168b31b00836b196bbfd8a981caf633fb35097))Medium4/12/2026
v1.40.0## [1.40.0](https://github.com/JacobPEvans/nix-ai/compare/v1.39.0...v1.40.0) (2026-04-12) ### Features * **codex:** add native Codex configuration with writable config.toml ([8b4b088](https://github.com/JacobPEvans/nix-ai/commit/8b4b088076c1d7c6b730e8fe3a7c45899275658c))Medium4/12/2026
v1.39.0## [1.39.0](https://github.com/JacobPEvans/nix-ai/compare/v1.38.1...v1.39.0) (2026-04-12) ### Features * **fabric:** add zsh completions and AI tool decision tree ([28af185](https://github.com/JacobPEvans/nix-ai/commit/28af1856d02d23da1b33d090d5ebb681ab2cc8e4))Medium4/12/2026
v1.38.1## [1.38.1](https://github.com/JacobPEvans/nix-ai/compare/v1.38.0...v1.38.1) (2026-04-12) ### Bug Fixes * **cspell:** migrate to shared org-wide dictionary hierarchy ([#498](https://github.com/JacobPEvans/nix-ai/issues/498)) ([a93300b](https://github.com/JacobPEvans/nix-ai/commit/a93300b5e4f505d99a9f0461a4ddab2932efd338))Medium4/12/2026
v1.38.0## [1.38.0](https://github.com/JacobPEvans/nix-ai/compare/v1.37.1...v1.38.0) (2026-04-12) ### Features * **claude:** enable OTEL telemetry to OrbStack collector ([#496](https://github.com/JacobPEvans/nix-ai/issues/496)) ([b9129f2](https://github.com/JacobPEvans/nix-ai/commit/b9129f2d0c56d339dcd9c2152b50e203ef0931e4)) * **codex:** add official OpenAI Codex plugin + MCP server ([#497](https://github.com/JacobPEvans/nix-ai/issues/497)) ([3ea8d5c](https://github.com/JacobPEvans/nix-ai/commit/3ea8Medium4/12/2026
v1.37.1## [1.37.1](https://github.com/JacobPEvans/nix-ai/compare/v1.37.0...v1.37.1) (2026-04-12) ### Bug Fixes * **docs:** drop "quartet" and numeric group words from CLAUDE.md ([#488](https://github.com/JacobPEvans/nix-ai/issues/488)) ([a48d8f3](https://github.com/JacobPEvans/nix-ai/commit/a48d8f3d80e132e890c72976e6ac19bc1fc38611)) * **mcp:** document Obsidian CLI integration, remove REST API port ([#493](https://github.com/JacobPEvans/nix-ai/issues/493)) ([171d946](https://github.com/JacobPEvans/nMedium4/12/2026
v1.37.0## [1.37.0](https://github.com/JacobPEvans/nix-ai/compare/v1.36.0...v1.37.0) (2026-04-11) ### Features * **ai-tools:** add whisper-cpp and openai-whisper moved from nix-darwin ([#482](https://github.com/JacobPEvans/nix-ai/issues/482)) ([0077a28](https://github.com/JacobPEvans/nix-ai/commit/0077a287366daa7107e16cdfe2ca7280c023a8e7)) ### Bug Fixes * **ai-tools:** bump huggingface-hub pin 1.9.0 -> 1.10.1 ([#486](https://github.com/JacobPEvans/nix-ai/issues/486)) ([0a193d3](https://github.cMedium4/11/2026
v1.36.0## [1.36.0](https://github.com/JacobPEvans/nix-ai/compare/v1.35.0...v1.36.0) (2026-04-11) ### Features * **pal:** Phase 5 — disable tools with native/Bifrost equivalents ([#481](https://github.com/JacobPEvans/nix-ai/issues/481)) ([64fc4c1](https://github.com/JacobPEvans/nix-ai/commit/64fc4c1bdd209866e532c5d39d0abfd8a0dc5642))Medium4/11/2026
v1.35.0## [1.35.0](https://github.com/JacobPEvans/nix-ai/compare/v1.34.0...v1.35.0) (2026-04-11) ### Features * **mcp:** route PAL through Bifrost AI gateway ([#466](https://github.com/JacobPEvans/nix-ai/issues/466)) ([5b18711](https://github.com/JacobPEvans/nix-ai/commit/5b187116b4a177f2ba6abbd2b59a8e9302b62cee))Medium4/11/2026
v1.34.0## [1.34.0](https://github.com/JacobPEvans/nix-ai/compare/v1.33.1...v1.34.0) (2026-04-10) ### Features * **pal:** score models from real LMSYS Chatbot Arena Elo ratings ([#463](https://github.com/JacobPEvans/nix-ai/issues/463)) ([2e5f35a](https://github.com/JacobPEvans/nix-ai/commit/2e5f35ae966c7d6b5ad389b98e661d86a7707cd0))Medium4/10/2026
v1.33.1## [1.33.1](https://github.com/JacobPEvans/nix-ai/compare/v1.33.0...v1.33.1) (2026-04-10) ### Bug Fixes * **pal:** radically simplify cloud model discovery ([37f7afe](https://github.com/JacobPEvans/nix-ai/commit/37f7afeed9983ef69cbcddcc5292320c8aaffae9))Medium4/10/2026
v1.33.0## [1.33.0](https://github.com/JacobPEvans/nix-ai/compare/v1.32.5...v1.33.0) (2026-04-10) ### Features * **mcp:** add Bifrost AI gateway MCP server and check-bifrost CLI ([#456](https://github.com/JacobPEvans/nix-ai/issues/456)) ([efc4501](https://github.com/JacobPEvans/nix-ai/commit/efc4501a39ffba2a78ea0f63e1f1744a4ffd811f))Medium4/10/2026
v1.32.5## [1.32.5](https://github.com/JacobPEvans/nix-ai/compare/v1.32.4...v1.32.5) (2026-04-10) ### Bug Fixes * add missing words to cspell dictionary ([#437](https://github.com/JacobPEvans/nix-ai/issues/437)) ([4a6fc0e](https://github.com/JacobPEvans/nix-ai/commit/4a6fc0e1c9ed31a3b8222611375d5cf16e53714b))Medium4/10/2026
v1.32.4## [1.32.4](https://github.com/JacobPEvans/nix-ai/compare/v1.32.3...v1.32.4) (2026-04-10) ### Bug Fixes * **deps:** pin all packages for Renovate auto-update coverage ([#435](https://github.com/JacobPEvans/nix-ai/issues/435)) ([016f5ab](https://github.com/JacobPEvans/nix-ai/commit/016f5abe52ac3b0c6a5c53ce7439af7bbec3710d))Medium4/10/2026
v1.32.3## [1.32.3](https://github.com/JacobPEvans/nix-ai/compare/v1.32.2...v1.32.3) (2026-04-09) ### Bug Fixes * **mlx:** correct mlx-eval base_url for lm-eval local-chat-completions ([#431](https://github.com/JacobPEvans/nix-ai/issues/431)) ([869948b](https://github.com/JacobPEvans/nix-ai/commit/869948b04d5342313349f818e245f8db99507327)) * **pal:** dynamic model discovery via OpenRouter, kill stale defaults ([#434](https://github.com/JacobPEvans/nix-ai/issues/434)) ([3e8dea9](https://github.com/JacMedium4/9/2026
v1.32.2## [1.32.2](https://github.com/JacobPEvans/nix-ai/compare/v1.32.1...v1.32.2) (2026-04-09) ### Bug Fixes * wire is-deps-only detection and narrow CI triggers ([#432](https://github.com/JacobPEvans/nix-ai/issues/432)) ([db82c5c](https://github.com/JacobPEvans/nix-ai/commit/db82c5ca7da0571944692a10e0f8678e864b3a13))Medium4/9/2026
v1.32.1## [1.32.1](https://github.com/JacobPEvans/nix-ai/compare/v1.32.0...v1.32.1) (2026-04-08) ### Bug Fixes * update Copilot setup source to ai-workflows ([#426](https://github.com/JacobPEvans/nix-ai/issues/426)) ([c385804](https://github.com/JacobPEvans/nix-ai/commit/c3858046251c76da4affea92095401484f50aea3))Medium4/8/2026
v1.32.0## [1.32.0](https://github.com/JacobPEvans/nix-ai/compare/v1.31.1...v1.32.0) (2026-04-07) ### Features * **mlx:** dynamic model discovery and comprehensive benchmark suite ([b9a277f](https://github.com/JacobPEvans/nix-ai/commit/b9a277f9fa159d09ab2b4c62dd8b1f201042be20)), closes [#294](https://github.com/JacobPEvans/nix-ai/issues/294)Medium4/7/2026
v1.31.1## [1.31.1](https://github.com/JacobPEvans/nix-ai/compare/v1.31.0...v1.31.1) (2026-04-07) ### Bug Fixes * **models:** replace hardcoded model names with env var references (DRY) ([#423](https://github.com/JacobPEvans/nix-ai/issues/423)) ([16d3610](https://github.com/JacobPEvans/nix-ai/commit/16d3610e5d56d8d1a12f338e8eb3c7415c3d6973))Medium4/7/2026
v1.31.0## [1.31.0](https://github.com/JacobPEvans/nix-ai/compare/v1.30.0...v1.31.0) (2026-04-07) ### Features * add AI merge gate ([#419](https://github.com/JacobPEvans/nix-ai/issues/419)) ([1791db9](https://github.com/JacobPEvans/nix-ai/commit/1791db99d7574dd7ee958507f12dad937c0a9d06)) ### Bug Fixes * replace deleted /init-worktree references with /refresh-repo ([#421](https://github.com/JacobPEvans/nix-ai/issues/421)) ([cb73b7f](https://github.com/JacobPEvans/nix-ai/commit/cb73b7f267b12ac175fd6Medium4/7/2026
v1.30.0## [1.30.0](https://github.com/JacobPEvans/nix-ai/compare/v1.29.3...v1.30.0) (2026-04-07) ### Features * **claude:** auto-discover global rules from flake inputs ([#413](https://github.com/JacobPEvans/nix-ai/issues/413)) ([3d6b324](https://github.com/JacobPEvans/nix-ai/commit/3d6b3243320cb7f12618a34cc42f7bf9ff89b8a5))Medium4/7/2026
v1.29.3## [1.29.3](https://github.com/JacobPEvans/nix-ai/compare/v1.29.2...v1.29.3) (2026-04-07) ### Bug Fixes * **claude:** switch auto-update channel from stable to latest ([#414](https://github.com/JacobPEvans/nix-ai/issues/414)) ([a76ae00](https://github.com/JacobPEvans/nix-ai/commit/a76ae0050631f48a2230c87eb5d5cb96636e64fa))Medium4/7/2026
v1.29.2## [1.29.2](https://github.com/JacobPEvans/nix-ai/compare/v1.29.1...v1.29.2) (2026-04-06) ### Bug Fixes * **claude:** deploy retrospective report override as global rule ([#405](https://github.com/JacobPEvans/nix-ai/issues/405)) ([fd819b9](https://github.com/JacobPEvans/nix-ai/commit/fd819b966bc455c0897d5faa44d6678cbb920414))Medium4/6/2026
v1.29.1## [1.29.1](https://github.com/JacobPEvans/nix-ai/compare/v1.29.0...v1.29.1) (2026-04-04) ### Bug Fixes * **deps:** fix Renovate regex for uv tool install packages ([#402](https://github.com/JacobPEvans/nix-ai/issues/402)) ([0d5d8b7](https://github.com/JacobPEvans/nix-ai/commit/0d5d8b767fbf5fe66e562914611674a69c4e9a68))Medium4/4/2026
v1.29.0## [1.29.0](https://github.com/JacobPEvans/nix-ai/compare/v1.28.0...v1.29.0) (2026-04-03) ### Features * **mlx:** replace model switching with llama-swap proxy ([#396](https://github.com/JacobPEvans/nix-ai/issues/396)) ([2bc75e7](https://github.com/JacobPEvans/nix-ai/commit/2bc75e7fae44ea4a37f46d9ac700495069f2b089)) ### Bug Fixes * **deps:** update gh-aw hashes, switch to daily nix-update ([#401](https://github.com/JacobPEvans/nix-ai/issues/401)) ([e7ae532](https://github.com/JacobPEvans/nMedium4/3/2026
v1.28.0## [1.28.0](https://github.com/JacobPEvans/nix-ai/compare/v1.27.0...v1.28.0) (2026-04-02) ### Features * **pal:** 100% reliability via auto mode, Doppler fallback, and global rules ([#394](https://github.com/JacobPEvans/nix-ai/issues/394)) ([486173a](https://github.com/JacobPEvans/nix-ai/commit/486173a996f895403e30a9af2e0e3dc628023ba8))Medium4/2/2026
v1.27.0## [1.27.0](https://github.com/JacobPEvans/nix-ai/compare/v1.26.0...v1.27.0) (2026-04-01) ### Features * **claude:** auto-generate marketplace.json for jacobpevans-cc-plugins ([#391](https://github.com/JacobPEvans/nix-ai/issues/391)) ([78b0e1d](https://github.com/JacobPEvans/nix-ai/commit/78b0e1d2bbba391b43c2c0e4f567655d9f83d1a5))Medium4/1/2026
v1.26.0## [1.26.0](https://github.com/JacobPEvans/nix-ai/compare/v1.25.4...v1.26.0) (2026-04-01) ### Features * **claude:** add overlayFiles option for marketplace plugins ([#388](https://github.com/JacobPEvans/nix-ai/issues/388)) ([ef96354](https://github.com/JacobPEvans/nix-ai/commit/ef963545391eac936e0b67b187c8883a11810a3e))Medium4/1/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

building-websites-with-AI-tools🌐 Transform your ideas into real websites and apps using AI tools, guiding each step for a smooth development process from concept to launch.main@2026-04-21
@dallay/agentsyncA fast CLI tool to sync AI agent configurations and MCP servers across Claude, Copilot, Cursor, and more using symbolic links.1.42.3
@sysmanager/ai-skillsAgent Skills Framework - Easy setup for AI agent capabilities and integrations (Claude, Gemini, Codex, GitHub Copilot)1.0.20
h5iNext-Gen AI-Aware Gitv0.1.1
multi-postgres-mcp-serveršŸš€ Manage multiple PostgreSQL databases with one MCP server, offering hot reload, access control, and read-only query safety in a single config filemaster@2026-04-21