Forge
markdownc88715b7
1# aig-toml-check
2
3Validate TOML files against [JSON Schema](https://json-schema.org).
4
5## Usage
6
7```bash
8aig-toml-check check path/to/file.toml
9aig-toml-check check docs/ --schema schemas/catalog.schema.json
10```
11
12Each file may declare its schema in the header (Taplo-style):
13
14```toml
15#:schema ../docs/schemas/example.schema.json
16```
17
18Paths in `#:schema` are resolved relative to the TOML file.
19
20## Exit codes
21
22- `0` — all files valid
23- `1` — parse error, missing schema, or validation failure
24
25## Install
26
27```bash
28dotnet tool install AIGuiders.DotnetTools.TomlCheck
29```
30
View only · write via MCP/CIDE