From b2ca12f86c55a8ee195c294489527bb6752703e1 Mon Sep 17 00:00:00 2001 From: m3ta-chiron Date: Mon, 1 Jun 2026 08:36:13 +0200 Subject: [PATCH] fix(agents): stop legacy agent rendering --- profiles/sets/coding/agents/opencode.nix | 11 +-------- profiles/sets/coding/agents/pi.nix | 31 +----------------------- 2 files changed, 2 insertions(+), 40 deletions(-) diff --git a/profiles/sets/coding/agents/opencode.nix b/profiles/sets/coding/agents/opencode.nix index a49648a..4afa1ab 100644 --- a/profiles/sets/coding/agents/opencode.nix +++ b/profiles/sets/coding/agents/opencode.nix @@ -1,13 +1,4 @@ -{ - inputs, - lib, - ... -}: { - coding.agents.opencode = { - enable = true; - agentsInput = inputs.agents; - }; - +{lib, ...}: { coding.opencode = { enable = true; diff --git a/profiles/sets/coding/agents/pi.nix b/profiles/sets/coding/agents/pi.nix index 20b3cdb..dacd8e3 100644 --- a/profiles/sets/coding/agents/pi.nix +++ b/profiles/sets/coding/agents/pi.nix @@ -1,35 +1,6 @@ -{inputs, ...}: { +{...}: { coding.agents.pi = { enable = true; - agentsInput = inputs.agents; - - modelOverrides = { - chiron = "openai-codex/gpt-5.5"; - chiron-forge = "openai-codex/gpt-5.5"; - }; - - # Coding rules for Pi agent - # Rules sourced from AGENTS repo - codingRules = { - # Language-specific rules - languages = [ - "nix" # Nix language conventions - ]; - - # Standard concerns from AGENTS repo - concerns = [ - "coding-style" # General coding principles - "naming" # Naming conventions (camelCase, snake_case, etc.) - "documentation" # Documentation standards - "testing" # Testing guidelines (Arrange-Act-Assert) - "git-workflow" # Conventional commits, branch naming - "git-identity" # Git identity configuration for agents - "project-structure" # Project layout conventions - ]; - - # No framework-specific rules for NixOS config - frameworks = []; - }; settings = { packages = [