agnix-core
Core validation engine for agnix - the agent configuration linter.
This crate provides the parsing, schema validation, and diagnostic generation for agent configurations including Skills, Hooks, MCP servers, Memory files, and Plugins.
Features
- YAML/JSON/TOML/Markdown frontmatter parsing
- Schema validation against documented specifications
- Diagnostic generation with line/column locations
- Support for multiple agent configuration formats
Feature Flags
agnix-core requires std and is not no_std compatible.
| Feature | Default | Description |
|---|---|---|
filesystem |
yes | Adds rayon, ignore, and dirs for parallel validation and directory walking. |
Setting default-features = false removes the file I/O dependencies but still requires std - useful for WASM targets where you supply content directly rather than reading from disk.
Usage
This is a library crate used by agnix-cli. For most users, install the CLI:
For programmatic usage:
use ;
use Path;
For project-level validation across multiple files:
use ;
use Path;
License
Licensed under either of Apache License, Version 2.0 or MIT license at your option.