code-quality

Solid

Multi-language code quality standards and review for TypeScript, Python, Go, and Rust. Enforces type safety, security, performance, and maintainability. Use when writing, reviewing, or refactoring code. Includes review process, checklist, and Python PEP 8 deep-dive.

Code & Development 24 stars 6 forks Updated today MIT

Install

View on GitHub

Quality Score: 84/100

Stars 20%
47
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Code Quality Production-grade code standards and review for TypeScript, Python, Go, and Rust. ## When to Use - Writing or reviewing code in TS/Python/Go/Rust - Code review or pull request analysis - Security or performance audit - Setting up linting/CI for a project - Python-specific style check (PEP 8) ## Quick-Start Modes | Intent | Sections to Use | |--------|----------------| | **Write code** | Core Rules + Language Standards + AI-Friendly Patterns | | **Review PR** | Review Process + `references/checklist.md` + Severity Levels | | **Setup CI** | Config Files + Scripts + Enforcement Strategy | | **Python style** | `references/python.md` (full PEP 8 deep-dive) | **Context loading:** For deep reviews, read the relevant `references/` file for the language under review. ## Quick Reference | Language | Type Safety | Linter | Complexity | |----------|-------------|--------|------------| | TypeScript | `strict`, no `any` | ESLint + typescript-eslint | max 10 | | Python | mypy `strict`, PEP 484 | Ruff + mypy | max 10 | | Go | staticcheck | golangci-lint | max 10 | | Rust | clippy pedantic | clippy + cargo-audit | - | ## Severity Levels | Level | Description | Action | |-------|-------------|--------| | **Critical** | Security vulnerabilities, data loss | Block merge | | **Error** | Bugs, type violations, `any` | Block merge | | **Warning** | Code smells, complexity | Must address | | **Style** | Formatting, naming | Auto-fix | ...

Details

Author
georgekhananaev
Repository
georgekhananaev/claude-skills-vault
Created
4 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Related Skills

Code & Development Featured

code-reviewer

Analyzes code diffs and files to identify bugs, security vulnerabilities (SQL injection, XSS, insecure deserialization), code smells, N+1 queries, naming issues, and architectural concerns, then produces a structured review report with prioritized, actionable feedback. Use when reviewing pull requests, conducting code quality audits, identifying refactoring opportunities, or checking for security issues. Invoke for PR reviews, code quality checks, refactoring suggestions, review code, code quality. Complements specialized skills (security-reviewer, test-master) by providing broad-scope review across correctness, performance, maintainability, and test coverage in a single pass.

9,342 Updated 5 days ago
Jeffallan
Code & Development Featured

security-reviewer

Identifies security vulnerabilities, generates structured audit reports with severity ratings, and provides actionable remediation guidance. Use when conducting security audits, reviewing code for vulnerabilities, or analyzing infrastructure security. Invoke for SAST scans, penetration testing, DevSecOps practices, cloud security reviews, dependency audits, secrets scanning, or compliance checks. Produces vulnerability reports, prioritized recommendations, and compliance checklists.

9,342 Updated 5 days ago
Jeffallan
Code & Development Featured

parallel-investigation

Coordinates parallel investigation threads to simultaneously explore multiple hypotheses or root causes across different system areas. Use when debugging production incidents, slow API performance, multi-system integration failures, or complex bugs where the root cause is unclear and multiple plausible theories exist; when serial troubleshooting is too slow; or when multiple investigators can divide root-cause analysis work. Provides structured phases for problem decomposition, thread assignment, sync points with Continue/Pivot/Converge decisions, and final report synthesis.

745 Updated 1 months ago
rohitg00