用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill checkstyle-fixer命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
基于 SOC 职业分类
正在显示 SKILL.md
| name | checkstyle-fixer |
| description | 在提交前检查 git diff 文件的 Checkstyle 违规,生成带时间戳报告并规划可自动修复的问题。 Use when this capability is needed. |
| metadata | {"author":"baobaoyeye"} |
本技能用于在代码提交前,基于当前 git diff 中涉及的文件运行 Checkstyle 规范检查,生成带时间戳的报告,并根据问题清单给出修复计划,支持自动修复部分问题。
checkstyle_results 目录下生成带时间戳命名的摘要报告和问题清单。当本技能被调用时:
git diff --name-only(以及 git diff --cached --name-only)获取本次变更涉及的文件列表。.java)。.gitignore 中的忽略规则,对被 git 忽略的目录和文件不做检查。tools 子目录(例如 .trae/skills/checkstyle-fixer/tools),该目录对外部调用方透明,由 Skill 自行管理。
tools/checkstyle-9.3-all.jartools/google_checks.xmljava -jar tools/checkstyle-9.3-all.jar -c tools/google_checks.xml <file1> <file2> ...checkstyle_results 目录(若不存在)。checkstyle_results/ 加入项目根目录下的 .gitignore,避免报告文件在后续提交中成为脏数据。checkstyle_results/YYYYMMDD_HHMMSS_summary_report.mdcheckstyle_results/YYYYMMDD_HHMMSS_issue_list.md,(注意,这里的问题清单要包括全部问题,而不是一部分问题)issue_list_YYYYMMDD_HHMMSS.md 分析问题。tools/google_checks.xml 中的规则和约束,只做为满足对应 Checkstyle 规则所必需的最小修改,避免与规则无关的“天马行空”式重构或风格改动。checkstyle_results 目录下,方便审计与回溯。Converted and distributed by TomeVault — claim your Tome and manage your conversions.