This skill bakes QLTY linting and formatting checks directly into your development flow. It's meant to run after you've made substantial changes to a file or finished writing new code, not on every tiny edit. The workflow is straightforward: run `qlty check` on your changed files, fix any errors it finds, then run `qlty fmt` to clean up formatting before you commit. It supports auto-fixing with the `--fix` flag and can target specific files. The smart part is knowing when not to run it, like when you're mid-refactor or just fixing a typo. It's about catching issues while the context is fresh rather than discovering them later in CI.
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill qlty-during-development