From ab18600359d96631e7af23c57eb5e65ef20094ac Mon Sep 17 00:00:00 2001 From: Avi Fenesh Date: Mon, 9 Mar 2026 23:33:21 +0200 Subject: [PATCH 1/2] ci: add agnix validation to CI pipeline Add .agnix.toml configuration and integrate the agnix GitHub Action into CI to validate agent configurations on push and PR. --- .agnix.toml | 13 +++++++++++++ .github/workflows/ci.yml | 3 +++ 2 files changed, 16 insertions(+) create mode 100644 .agnix.toml diff --git a/.agnix.toml b/.agnix.toml new file mode 100644 index 0000000..25f32bb --- /dev/null +++ b/.agnix.toml @@ -0,0 +1,13 @@ +severity = "Warning" +exclude = ["node_modules/**", ".git/**", "dist/**", ".next/**"] +target = "ClaudeCode" +tools = [] +locale = "en" + +[rules] + +disabled_rules = [] + +[tool_versions] + +[spec_revisions] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 46580a0..8d87423 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,3 +10,6 @@ jobs: ci: uses: agent-sh/.github/.github/workflows/ci-node.yml@main secrets: inherit + + agnix: + uses: agent-sh/.github/.github/workflows/ci-agnix.yml@main From 3b5ac8504aae6693c084a73a15e782a39e1f9fa0 Mon Sep 17 00:00:00 2001 From: Avi Fenesh Date: Mon, 9 Mar 2026 23:59:30 +0200 Subject: [PATCH 2/2] ci: trigger CI after ci-agnix.yml merged to .github