qlty-during-development
107
总安装量
17
周安装量
#4101
全站排名
安装命令
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill qlty-during-development
Agent 安装分布
claude-code
16
opencode
12
codex
11
cursor
9
windsurf
8
Skill 文档
QLTY During Development
Run QLTY checks during code writing to catch issues early.
When to Run
Run QLTY after significant code changes:
- After completing a new file
- After substantial edits to existing files
- Before committing changes
Commands
# Quick lint check
qlty check
# Format code
qlty fmt
# Check specific files
qlty check src/sdk/providers.ts
# Auto-fix issues
qlty check --fix
Integration Pattern
After writing code:
- Run
qlty checkon changed files - If errors, fix them before proceeding
- Run
qlty fmtto ensure formatting
Don’t Run When
- Just reading/exploring code
- Making single-line typo fixes
- In the middle of multi-file refactoring (run at end)