Agent Skills
› openkursar/hello-halo
› code-review-one
code-review-one
GitHub用于代码审查,检查代码是否符合架构规范、命名及依赖关系,评估可维护性,排查功能回归、业务缺陷、代码Bug及性能问题。
Trigger Scenarios
用户主动触发代码审查请求
需要检查当前代码状态与质量时
Install
npx skills add openkursar/hello-halo --skill code-review-one -g -y
SKILL.md
Frontmatter
{
"name": "code-review-one",
"description": "Called only when actively triggered by the user.."
}
git status and reviews the current code.
- Whether it conforms to the halo-dev skill architecture, specifically: module/file structure (does the file belong to this module at all, does its directory placement match its responsibility boundary, should it be re-abstracted or split), naming (file, directory, export and symbol names follow the conventions of 2-3 sibling files), and dependency relationships (layer direction is respected, no cross-layer reach-through, no circular imports, no dependency introduced merely because it was convenient). Beyond conformance: whether the design is highly maintainable and modular, and whether it aligns with long-term architectural planning and code quality evolution.
- Whether it affects existing functionality or causes regression issues.
- Whether the new feature has obvious business defects or code bugs.
- Whether there are performance issues, covering both first-screen performance (initial render, resource/bundle size, code splitting and lazy loading) and runtime performance (unnecessary re-renders, large-list rendering, memory leaks, redundant computations and requests). The above four points must be strictly communicated to all members.
Version History
- 8e53dce Current 2026-08-20 09:12


