install
source · Clone the upstream repo
git clone https://github.com/parcadei/Continuous-Claude-v3
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/parcadei/Continuous-Claude-v3 "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/qlty-during-development" ~/.claude/skills/parcadei-continuous-claude-v3-qlty-during-development && rm -rf "$T"
manifest:
.claude/skills/qlty-during-development/SKILL.mdsource content
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
on changed filesqlty check - If errors, fix them before proceeding
- Run
to ensure formattingqlty fmt
Don't Run When
- Just reading/exploring code
- Making single-line typo fixes
- In the middle of multi-file refactoring (run at end)