QLTY During Development
Scanned 2/12/2026
Install to Claude Code
npx -y skills add parcadei/Continuous-Claude-v3 --skill qlty-during-development --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Qlty During Development?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/parcadei-qlty-during-development)More formats (shields.io, HTML) on the badges page.
---
name: qlty-during-development
description: QLTY During Development
user-invocable: false
---
# 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
```bash
# 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:
1. Run `qlty check` on changed files
2. If errors, fix them before proceeding
3. Run `qlty fmt` to 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)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!