skills_lint 0.5.1
skills_lint: ^0.5.1 copied to clipboard
A static analysis linter for Agent Skills (SKILL.md) written in Dart. Validates frontmatter, naming, paths, and structure for use in CI and pre-commit hooks.
Use this package as an executable
Install it
You can install the package from the command line:
dart pub global activate skills_lintUse it
The package has the following executables:
$ skills_lint
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add skills_lintWith Flutter:
$ flutter pub add skills_lintThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
skills_lint: ^0.5.1Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:skills_lint/skills_lint.dart';