quality-standards — for Claude Code quality-standards, user-service, community, for Claude Code, ide skills, make phpcsfixer, code-organization, Quality, Standards, Context

v1.0.0

About this Skill

Ideal for AI agents that need quality standards skill. quality-standards is an AI agent skill for quality standards skill.

Features

Quality Standards Skill
Need to understand protected quality thresholds
Running comprehensive quality checks before commit
Determining which specialized skill to use for specific issues
Quick reference for quality tool commands

# Core Topics

VilnaCRM-Org VilnaCRM-Org
[16]
[2]
Updated: 3/5/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 10/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
10/11
Quality Score
55
Canonical Locale
en
Detected Body Locale
en

Ideal for AI agents that need quality standards skill. quality-standards is an AI agent skill for quality standards skill.

Core Value

quality-standards helps agents quality standards skill. Success Criteria : Know which skill to use for your specific quality issue. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Ideal Agent Persona

Ideal for AI agents that need quality standards skill.

Capabilities Granted for quality-standards

Applying Quality Standards Skill
Applying Need to understand protected quality thresholds
Applying Running comprehensive quality checks before commit

! Prerequisites & Limits

  • Need to understand protected quality thresholds
  • CRITICAL : These thresholds are protected and must NEVER be lowered.
  • Success : Must output "✅ CI checks successfully passed!"

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is quality-standards?

Ideal for AI agents that need quality standards skill. quality-standards is an AI agent skill for quality standards skill.

How do I install quality-standards?

Run the command: npx killer-skills add VilnaCRM-Org/user-service/quality-standards. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for quality-standards?

Key use cases include: Applying Quality Standards Skill, Applying Need to understand protected quality thresholds, Applying Running comprehensive quality checks before commit.

Which IDEs are compatible with quality-standards?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for quality-standards?

Need to understand protected quality thresholds. CRITICAL : These thresholds are protected and must NEVER be lowered.. Success : Must output "✅ CI checks successfully passed!".

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add VilnaCRM-Org/user-service/quality-standards. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use quality-standards immediately in the current project.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

quality-standards

Success Criteria : Know which skill to use for your specific quality issue. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows. Quality

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Quality Standards Skill

Context (Input)

  • Need to understand protected quality thresholds
  • Running comprehensive quality checks before commit
  • Determining which specialized skill to use for specific issues
  • Quick reference for quality tool commands

Task (Function)

Understand quality metrics and route to appropriate specialized skill for fixes.

Success Criteria: Know which skill to use for your specific quality issue.

Protected Quality Thresholds

CRITICAL: These thresholds are protected and must NEVER be lowered.

PHPInsights (Source Code)

MetricRequiredFix With
Quality100%complexity-management
Complexity94%complexity-management
Architecture100%deptrac-fixer
Style100%Run make phpcsfixer

PHPInsights (Tests)

MetricRequiredFix With
Quality95%complexity-management
Complexity95%complexity-management
Architecture90%deptrac-fixer
Style95%Run make phpcsfixer

Other Tools

ToolMetricRequiredFix With
DeptracViolations0deptrac-fixer
PsalmErrors0Fix reported issues
PsalmForbiddenCode0Use Symfony Serializer and follow the architecture guards documented in code-organization
PsalmSecurity Issues0Fix tainted flows
InfectionMSI100%testing-workflow
PHPUnitCoverage100%testing-workflow

Quick Reference Commands

Comprehensive Checks

bash
1# Run all CI checks (recommended before commit) 2make ci

Success: Must output "✅ CI checks successfully passed!"

Individual Quality Checks

CheckCommandPurpose
Code qualitymake phpinsightsAll PHPInsights metrics
Complexity analysismake phpmdFind high-complexity methods
Static analysismake psalmType checking and errors
Security taintmake psalm-securitySecurity vulnerability scan
Architecturemake deptracLayer boundary validation
Code stylemake phpcsfixerAuto-fix PSR-12 style
Composer validationmake composer-validateValidate composer.json

Testing Commands

CheckCommandPurpose
Unit testsmake unit-testsDomain/Application logic
Integration testsmake integration-testsComponent interactions
E2E testsmake behatFull user scenarios (Behat)
All testsmake all-testsUnit + Integration + E2E
Test coveragemake tests-with-coverageGenerate coverage report
Mutation testsmake infectionTest quality validation

Routing to Specialized Skills

When quality checks fail, use the appropriate specialized skill:

Architecture Issues

  • Deptrac violationsdeptrac-fixer

    • Domain depends on Infrastructure
    • Layer boundary violations
    • "must not depend on" errors
  • DDD architecture patternsimplementing-ddd-architecture

    • Creating new entities/value objects
    • Implementing CQRS patterns
    • Understanding layer responsibilities

Code Quality Issues

  • High cyclomatic complexitycomplexity-management

    • PHPInsights complexity < 94%
    • PHPMD reports high CCN
    • Methods too complex
  • Structural/naming issuescode-organization

    • Class in wrong directory for its type
    • Vague variable or class names
    • Hardcoded config values that should be in .env
    • Namespace doesn't match directory structure
  • Code style issues → Run make phpcsfixer

    • PSR-12 violations
    • Line length > 100 chars
    • Formatting issues

Testing Issues

  • Test failurestesting-workflow
    • Unit/Integration/E2E failures
    • Mutation testing (Infection)
    • Test coverage < 100%

Workflow Integration

  • Before committingci-workflow

    • Run all checks systematically
    • Fix failures in priority order
    • Ensure all checks pass
  • PR review feedbackcode-review

    • Fetch and address PR comments
    • Systematic comment resolution

Quality Improvement Workflow

Step 1: Run Comprehensive Checks

bash
1make ci

Step 2: Identify Failing Check

Check output for specific failure:

❌ CI checks failed:
  - phpinsights: Complexity score too low (93.5% < 94%)

Step 3: Use Specialized Skill

Based on failure type, use appropriate skill:

Failure PatternSkill to Use
"Complexity score too low"complexity-management
"Deptrac violations"deptrac-fixer
"must not depend on"deptrac-fixer
"Class not found"code-organization
"Namespace mismatch"code-organization
"tests failed"testing-workflow
"Psalm found errors"Fix type errors directly
"escaped mutants"testing-workflow

Step 4: Re-run CI

bash
1make ci

Repeat until: "✅ CI checks successfully passed!"

Constraints (Parameters)

NEVER

  • Lower quality thresholds in config files (phpinsights.php, infection.json5, etc.)
  • Skip failing checks to "save time"
  • Commit code without all CI checks passing
  • Modify deptrac.yaml to allow violations (fix code, not config)
  • Disable security checks
  • Add suppression/ignore annotations to hide quality issues (@SuppressWarnings, @infection-ignore*, @codeCoverageIgnore*, @psalm-suppress, @phpstan-ignore*, phpcs:ignore, @phpinsights-ignore*)

ALWAYS

  • Fix code to meet standards (not config to meet code)
  • Run make ci before creating commits
  • Use specialized skills for specific quality issues
  • Maintain 100% test coverage
  • Keep cyclomatic complexity low (target: < 5 per method)
  • Respect hexagonal architecture boundaries

Format (Output)

Expected CI Output

✅ CI checks successfully passed!

Expected PHPInsights Output

[CODE] 100.0 pts       ✅ Target: 100%
[COMPLEXITY] 94.0 pts  ✅ Target: 94%
[ARCHITECTURE] 100 pts ✅ Target: 100%
[STYLE] 100.0 pts      ✅ Target: 100%

Expected Deptrac Output

✅ No violations found

Expected Infection Output

Mutation Score Indicator (MSI): 100%

Verification Checklist

After using this skill:

  • Identified which quality check is failing
  • Selected appropriate specialized skill for the issue
  • Ready to execute specialized skill workflow
  • Understand which threshold applies to the failure
  • Know the command to re-run the check after fixes

Reference Documentation

For detailed examples and patterns, see:

  • Refactoring patterns → complexity-management skill
  • Architecture rules → implementing-ddd-architecture skill
  • Layer boundaries → deptrac-fixer skill
  • Testing strategies → testing-workflow skill

Related Skills

Looking for an alternative to quality-standards or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer