Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

eliteforge-sonar-pmd-generatorEliteforge 声纳 PMD 发生器

Agent Skill

eliteforge-sonar-pmd-generator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

674

周安装

27

GitHub Stars

公开资料未说明

下载量

218
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:eliteforge-sonar-pmd-generator(Eliteforge 声纳 PMD 发生器)
来源仓库:https://github.com/cloudsen/eliteforge-skills
仓库路径:skills/eliteforge-sonar-pmd-generator
安装命令:
npx skills add https://github.com/cloudsen/eliteforge-skills --skill eliteforge-sonar-pmd-generator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/cloudsen/eliteforge-skills --skill eliteforge-sonar-pmd-generator

简介

eliteforge-sonar-pmd-generator 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装,建议确认权限和维护状态后再使用。
  • 使用前需检查是否会触发联网、命令执行或文件读写操作,确保符合项目安全规范。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Sonar PMD Generator (Spec-driven, End-to-end)

触发门槛

仅当用户明确说明当前项目遵守 璀璨工坊规范eliteforge specification 时,才使用本技能。若用户未做出该项目级声明,不要启用本技能;按通用能力处理。

Overview

This skill converts coding standard documents into enforceable PMD rules and validates them through a real SonarQube server workflow. Completion requires an end-to-end chain: spec parsing, L1/L2/L3/L4 classification, PMD ruleset generation for L1-L2, automation planning for L3, review planning for L4, custom sonar-pmd plugin packaging, Docker Sonar startup, test project scan, and server-side verification.

Progressive Loading

Trigger Conditions

Use this skill when the request includes one or more of these intents:

  • Convert coding specifications into PMD rules.
  • Auto-classify specification clauses into L1/L2/L3/L4.
  • Build or extend a custom Sonar PMD plugin/profile.
  • Validate PMD plugin behavior in SonarQube using Docker and real scans.
  • Prove custom rules are visible and producing issues in Sonar.

Required Inputs

  • One or more specification file paths.
  • Target language(s) for each specification.
  • Plugin workspace path (or permission to scaffold one).
  • Test project path (or permission to scaffold one).
  • Optional output directory for generated artifacts (default: pmd-governance/).
  • Optional profile name (default: custom-spec-profile).

Classification Contract (MUST follow)

  • L1: can be covered by PMD built-in rule(s) for the target language.
  • L2: can be expressed with PMD AST XPath rule(s) for the target language.
  • L3: cannot or should not be expressed in PMD, but can be detected reliably by other automation tools such as formatter, hook, CI job, Checkstyle, Semgrep, ArchUnit, or build plugins.
  • L4: requires human review or AI review because the rule depends on business semantics, architectural intent, or unstable heuristics.
  • Never force L3 or L4 into fragile PMD XPath implementations.

For each spec statement, record:

  • SPEC-ID
  • original statement
  • target language
  • level (L1/L2/L3/L4)
  • detection target
  • trigger condition
  • exception condition
  • severity
  • primary tool
  • execution stage
  • implementation plan
  • reviewer note (mandatory for L4)

End-to-end Workflow (REQUIRED)

  1. Parse specification statements and assign IDs (SPEC-<LANG>-001,...).
  2. Auto-classify every statement into L1/L2/L3/L4.
  3. Generate governance artifacts:

- mapping/spec-to-governance.csv - rulesets/custom-<lang>-ruleset.xml - automation/l3-tooling-plan.md - manual-review/l4-review-checklist.md - README.md

  1. Build a custom PMD rules module from L1-L2 only:

- include L1 mapped refs and L2 custom XPath/Java rules - rule keys/messages must include traceability to SPEC-ID

  1. Build an automation plan for L3:

- select the smallest stable tool that can enforce the rule - prefer formatter or build plugin over custom scripts when possible - specify whether it runs in pre-commit, CI, build, or MR check

  1. Build a review plan for L4:

- define human-review checklist entries - define optional AI-review prompt or rubric

  1. Build a custom Sonar plugin module:

- register PMD rule repository - load custom rules into Sonar - provide default quality profile (custom-spec-profile or user-provided name)

  1. Package plugin JAR and deploy into Sonar plugin directory (extensions/plugins).
  2. Start SonarQube Community in Docker with the custom plugin loaded.
  3. Wait for Sonar server readiness and initialize token/project binding.
  4. Prepare a test project:
  • use real project if provided, otherwise scaffold a minimal project
  • include both violating and compliant code samples
  1. Trigger real scan with Maven Sonar plugin (mvn sonar:sonar).
  2. Verify plugin effectiveness via Sonar APIs/UI:
  • profile exists and is active
  • custom rules are listed and enabled
  • issues are produced with rule key + file + line mapping
  1. Report scan evidence and unresolved gaps.

Language Support Gate

  1. Check if the target language is supported by PMD and your Sonar integration path.
  2. If unsupported by PMD:

- classify candidates as L3 if another automation tool can enforce them - classify remaining items as L4 - generate both automation and review outputs - recommend alternative analyzer and optional generic external issues import

Sonar Integration

Server-side plugin execution:

  • Preferred because this skill requires custom plugin validation.
  • Scan command example:

- mvn -DskipTests sonar:sonar -Dsonar.host.url=http://localhost:9000 -Dsonar.token=<token>

Docker Validation Baseline

Minimum checks after container startup:

  • Sonar health endpoint reports ready.
  • Plugin is loaded (visible in marketplace/plugins list or startup logs).
  • Quality profile from the plugin is available.

Minimum checks after scan:

  • At least one custom-rule issue appears on violating sample.
  • Compliant sample does not trigger that custom rule.
  • Issues are mapped to concrete file and line.

Non-negotiable Rules

  • Do not handcraft PMD reports; generated findings must come from actual analysis.
  • L1-L2 go into PMD rules and the custom sonar-pmd plugin.
  • L3 items must be exported into an automation tooling plan instead of being forced into PMD.
  • L4 items must be exported into human or AI review workflows.
  • End-to-end verification is incomplete without Docker Sonar + real scan evidence.
  • First rollout should stay non-blocking unless user explicitly requests CI gating.

Delivery Outputs

  • Governance artifacts (mapping, ruleset, L3 tooling plan, L4 review checklist).
  • Custom plugin source and packaged JAR.
  • Docker startup commands and runtime evidence.
  • Test project scan command and result summary.
  • Verification report listing profile key, rule keys, issue count, and sampled issue locations.

Troubleshooting Checklist

  • Plugin not loaded: verify Sonar/plugin API compatibility and restart logs.
  • Profile missing: verify repository key/profile registration code.
  • No issues found: confirm profile binding and test code actually violates rule.
  • False positives spike: narrow XPath scope and add negative samples.
  • Scan auth errors: validate token and sonar.host.url consistency.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.71%
按下载量换算76

Claude

31.46%
按下载量换算69

Cursor

19.5%
按下载量换算43

Gemini CLI

10.14%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills