Add quality-scan skill and quality-loop command#492
Open
Conversation
Adds comprehensive quality scanning capabilities to improve code quality: **What this adds:** - Quality-scan skill: Multi-dimensional code analysis with 7 specialized scan types - Quality-loop command: Iterative improvement workflow (/quality-loop) **Scan types:** 1. Documentation scan: Evaluate junior dev friendliness, examples, troubleshooting 2. Critical bugs scan: Security issues, data corruption, crashes 3. Logic errors scan: Race conditions, edge cases, incorrect state management 4. Caching bugs scan: Validation bypasses, stale data, corruption risks 5. Workflow issues scan: Subprocess errors, cleanup failures, error handling 6. CI optimization scan: Performance, caching, matrix strategies 7. Security scan: Input validation, path traversal, injection vulnerabilities **Usage:** - Run `/quality-loop` for full scan + fix cycle - Or use Task tool: subagent_type='quality-scan' for targeted analysis Successfully used in socket-btm to identify and fix 20+ issues including: - Critical path traversal vulnerabilities - Hash collision bugs in cache keys - Missing validation in checkpoint restoration - Documentation gaps for junior developers
f7a65e1 to
cfb4eb5
Compare
bmeck
reviewed
Mar 10, 2026
bmeck
approved these changes
Mar 10, 2026
Contributor
bmeck
left a comment
There was a problem hiding this comment.
seems good but a bit odd ref to btm
- Replace socket-btm monorepo examples with generic single-package examples - Update test file paths from packages/*/test to test/ - Replace binpress/binflate/binject references with SDK-specific examples - Update documentation examples to match socket-sdk-js structure - Remove checkpoint/build system examples specific to socket-btm - Add SDK-appropriate API error handling examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds comprehensive quality scanning capabilities to improve code quality and catch issues early.
What this adds:
/quality-loop)Scan Types
Usage
Run full scan + fix cycle:
Or use Task tool for targeted analysis:
Track Record
Successfully used in socket-btm to identify and fix 20+ issues including:
This tooling provides proactive quality improvement and catches issues before they reach production.