static-analysis-runner

Solid

Run static analysis tools including SonarQube, ESLint, and multi-language linters

AI & Automation 814 stars 53 forks Updated today MIT

Install

View on GitHub

Quality Score: 95/100

Stars 20%
97
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Static Analysis Runner Skill ## Overview Runs static analysis tools including SonarQube, ESLint/TSLint, and multi-language linters with custom rule configuration and report aggregation. ## Capabilities - Run SonarQube analysis - Execute ESLint/TSLint - Multi-language support - Custom rule configuration - Report aggregation - Quality gate evaluation - Trend analysis ## Target Processes - refactoring-plan - security-architecture-review - performance-optimization ## Input Schema ```json { "type": "object", "required": ["paths"], "properties": { "paths": { "type": "array", "items": { "type": "string" }, "description": "Paths to analyze" }, "tools": { "type": "array", "items": { "type": "string", "enum": ["sonarqube", "eslint", "tslint", "pylint", "rubocop", "checkstyle"] }, "default": ["eslint"] }, "config": { "type": "object", "properties": { "configFile": { "type": "string", "description": "Path to linter config file" }, "rules": { "type": "object", "description": "Rule overrides" }, "fix": { "type": "boolean", "default": false } } }, "qualityGate": { "type": "object", "properties": { "maxErrors": { "type": "number" }, "maxWarnings": { "type": "number" } } } } } ``` ## Output Schema ```json { "type": "object", ...

Details

Author
a5c-ai
Repository
a5c-ai/babysitter
Created
4 months ago
Last Updated
today
Language
JavaScript
License
MIT

Related Skills