Skill

quality-stack

Scan a project to detect configured quality and testing tools across JVM (Gradle/Maven), Node.js/TypeScript, and Python ecosystems. Cross-reference against research-backed recommendations and assist with setup. Auto-detects project type(s) including monorepos with mixed ecosystems. Use when user asks to "audit tooling", "recommend tools", "quality stack", "what tools am I missing", "setup eslint", "setup detekt", "add coverage", "add ruff", "configure CI quality pipeline", "scan project tools", or "tooling audit".

From devtools
Install
1
Run in your terminal
$
npx claudepluginhub joaquimscosta/arkhe-claude-plugins --plugin devtools
Tool Access

This skill uses the workspace's default tool permissions.

Supporting Assets
View in Repository
EXAMPLES.md
TROUBLESHOOTING.md
WORKFLOW.md
scripts/scan_cross_cutting.py
scripts/scan_jvm.py
scripts/scan_node.py
scripts/scan_project.py
scripts/scan_python.py
scripts/scan_tooling.py
scripts/shared.py
Skill Content

Quality Stack

Scan a project's build configuration across JVM, Node.js, and Python ecosystems, cross-reference against curated research documents, and assist with tool setup.

Pre-flight

  1. Run the orchestrator — it auto-detects ecosystems:
    python3 <skill-path>/scripts/scan_project.py <project-root>
    
  2. If "error": "no_ecosystem_detected", check nearby_project_files for subproject paths.
  3. Monorepo? — use --recursive or --ecosystem to force a specific scanner:
    python3 <skill-path>/scripts/scan_project.py --recursive <project-root>
    python3 <skill-path>/scripts/scan_project.py --ecosystem node <project-root>
    
  4. Legacy (JVM only)scan_tooling.py still works as a backwards-compatible wrapper.

Two-Phase Workflow

Phase 1: Recommend

  1. Run the scanner on the project root (see Pre-flight above).

  2. Fetch research documents via WebFetch — only for detected ecosystems:

    JVM (when ecosystems contains "jvm"):

    https://raw.githubusercontent.com/joaquimscosta/arkhe-claude-plugins/main/docs/research/jvm-quality-tools-evaluation.md
    https://raw.githubusercontent.com/joaquimscosta/arkhe-claude-plugins/main/docs/research/kotlin-spring-boot-testing-ecosystem.md
    

    Node.js (when ecosystems contains "node"):

    https://raw.githubusercontent.com/joaquimscosta/arkhe-claude-plugins/main/docs/research/node-quality-tools-evaluation.md
    

    Python (when ecosystems contains "python"):

    https://raw.githubusercontent.com/joaquimscosta/arkhe-claude-plugins/main/docs/research/python-quality-tools-evaluation.md
    

    Cross-cutting (always):

    https://raw.githubusercontent.com/joaquimscosta/arkhe-claude-plugins/main/docs/research/cross-cutting-devtools-evaluation.md
    

    If WebFetch fails, warn the user and proceed using scanner results + LLM knowledge only.

  3. Cross-reference scanner output against research recommendations per ecosystem:

    • Identify tools recommended but missing from the project
    • Check status field: disabled or config-only tools need attention
    • Flag outdated or superseded tools
    • Apply ecosystem-specific SKIP rules (see WORKFLOW.md)
    • Review tool_config for threshold values and settings
  4. Generate the recommendation report using the format in WORKFLOW.md.

Phase 2: Setup

After presenting the report, use AskUserQuestion (multiSelect: true) with top NOW/SOON recommendations. After user selects tools:

  1. Read the relevant research doc section for setup instructions
  2. For each selected tool, apply changes per ecosystem:
    • JVM: Add Gradle/Maven plugin, test deps, config files
    • Node.js: pnpm add -D, tsconfig edits, config file creation
    • Python: uv add --dev, pyproject.toml edits, config file creation
    • Cross-cutting: CI/CD workflow steps, Lefthook config, EditorConfig
  3. Re-run the scanner to confirm detection

Priority Classification

PriorityCriteria
NOWEssential missing tools, zero-dependency additions
SOONHigh-value additions requiring minor setup
LATERNice-to-have with prerequisites
SKIPNot applicable (wrong ecosystem, incompatible version, deprecated)

Ecosystem-aware rules — see WORKFLOW.md for full classification tables per ecosystem.

Key rules:

  • JVM Pure Kotlin: SKIP Error Prone, SpotBugs; JVM Pure Java: SKIP Detekt, ktlint, MockK
  • JVM Spring Boot 4+: SKIP REST Assured, NOW MockMvcTester
  • Node.js no linter: NOW ESLint; no formatter + no Biome: NOW Prettier
  • Node.js TypeScript not strict: NOW enable strict
  • Python no linter: NOW Ruff; no type checker + has type annotations: NOW mypy

Cross-Cutting Tools

ToolWhen to RecommendPriority
LefthookNo git hook manager + has lintersSOON
commitlintNo commit conventions + has teamLATER
EditorConfigMissing .editorconfigNOW
Renovate/DependabotNo dependency automationSOON
Trivy/gitleaksNo security scanningSOON

Research Documents

Fetch via WebFetch at runtime — only for detected ecosystems:

  • JVM Quality Tools: jvm-quality-tools-evaluation.md
  • JVM Testing Ecosystem: kotlin-spring-boot-testing-ecosystem.md
  • Node.js Quality Tools: node-quality-tools-evaluation.md
  • Python Quality Tools: python-quality-tools-evaluation.md
  • Cross-Cutting Tools: cross-cutting-devtools-evaluation.md

Scanner Architecture

scripts/
  scan_project.py          # Orchestrator — auto-detects + merges
  scan_jvm.py              # JVM scanner (Gradle/Maven)
  scan_node.py             # Node.js/TypeScript scanner
  scan_python.py           # Python scanner
  scan_cross_cutting.py    # Cross-cutting tools (CI, hooks, security)
  shared.py                # Shared utilities
  scan_tooling.py          # Legacy wrapper → scan_jvm.py

References

Stats
Parent Repo Stars9
Parent Repo Forks1
Last CommitMar 22, 2026