Setting up Skill Validation with dart skills lint This skill covers first-time wiring of into a repository. For ongoing use — running the linter, interpreting output, and writing custom rules — see the skill. For copy-pasteable CI workflow and pre-commit hook recipes, see the section of the README. Steps 1. Add as a . Prefer a git dependency (the package isn't on pub.dev yet): Isolate the dependency in a package when you can, instead of putting it on the root — keeps the linter's deps out of your runtime closure. If you must add it to multiple files, ensure the (commit hash) is identical acro…