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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.48.0] - 2026-08-09

### Fixed
- **Claude Code skill and hook schema compatibility**. Accept skills without
explicit `name` or `description`, validate the documented `disallowed-tools`
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ exclude = [
]

[workspace.package]
version = "0.47.0"
version = "0.48.0"
edition = "2024"
rust-version = "1.91"
license = "MIT OR Apache-2.0"
Expand All @@ -33,8 +33,8 @@ categories = ["development-tools", "command-line-utilities"]
[workspace.dependencies]
mimalloc = { version = "0.1", default-features = false }
# Internal crates - path for local dev, version for crates.io
agnix-rules = { path = "crates/agnix-rules", version = "0.47.0" }
agnix-core = { path = "crates/agnix-core", version = "0.47.0" }
agnix-rules = { path = "crates/agnix-rules", version = "0.48.0" }
agnix-core = { path = "crates/agnix-core", version = "0.48.0" }

# Core dependencies
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion editors/jetbrains/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pluginGroup = io.agnix
pluginName = agnix
pluginRepositoryUrl = https://github.com/agent-sh/agnix
# SemVer format -> https://semver.org
pluginVersion = 0.47.0
pluginVersion = 0.48.0

# Supported build number ranges and IntelliJ Platform Versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 233
Expand Down
4 changes: 2 additions & 2 deletions editors/vscode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion editors/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "agnix",
"displayName": "agnix - Agent Config Linter",
"description": "Real-time validation for AI agent configuration files. Validates SKILL.md, CLAUDE.md, AGENTS.md, MCP configs, hooks, and more.",
"version": "0.47.0",
"version": "0.48.0",
"publisher": "avifenesh",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion editors/zed/extension.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
id = "agnix"
name = "Agnix"
version = "0.47.0"
version = "0.48.0"
schema_version = 1
authors = ["Avi Fenesh <avifenesh@gmail.com>"]
description = "Linter for agent configurations (skills, hooks, memory, plugins, MCP)"
Expand Down
2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agnix",
"version": "0.47.0",
"version": "0.48.0",
"description": "Linter for AI agent configurations. Validates SKILL.md, CLAUDE.md, hooks, MCP, and more.",
"keywords": [
"agent",
Expand Down
2 changes: 1 addition & 1 deletion plugin/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "agnix",
"version": "0.47.0",
"version": "0.48.0",
"description": "Lint agent configurations before they break your workflow. 447 rules for Skills, Hooks, MCP, Memory, Plugins.",
"author": {
"name": "Avi Fenesh",
Expand Down