ワンクリックで
coding-standards
项目编码规范和代码风格指南
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
项目编码规范和代码风格指南
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
H5 上线修复技能。通过 HTTP 调用独立的 harness-coding AnyAI 项目,提交审核问题修复任务并轮询 run 完成,返回修复和验证摘要。
H5 上线预审技能。通过 HTTP 调用独立的 harness-google-review AnyAI 项目,提交站点审核/复审任务并轮询 run 完成,返回审核结论和问题清单。
Private skill for site-crawler. Use it to run a scripted browser crawl that supports JS-rendered pages and writes compact checkpointed JSON without page-by-page model control.
AdSense site approval readiness checks for publisher content, navigation, trust, policy, and ad inventory quality.
Common Google AdSense and quality review rejection reasons with evidence-oriented remediation strategies.
Quality rubric for core business, content, product, service, and interactive pages seeking Google/AdSense review readiness.
| name | coding-standards |
| description | 项目编码规范和代码风格指南 |
| source | local |
| tags | ["coding","standards","style"] |
⚠️ 此技能文件需要按项目实际情况定制。当前为示例模板。
主要语言: Go (可根据项目修改为 Python/JavaScript/Java 等)
gofmt 格式化,CI会检查golint / staticcheck 静态分析// Package xxx 提供...data, info, result → 用具体含义_ 丢弃fmt.Errorf("operation failed: %w", err)errors.New 或自定义错误类型sync.Mutex 或 channelcontext 必须传递,用于取消和超时xxx_test.goTestXxx 或 TestXxx_WhenYyy_ShouldZzzt.Parallel() 加速测试架构师和审查员参考此清单评审代码:
feat:, fix:, refactor:, docs:, test:, chore:type(scope): descriptiongit commit -m "fix bugs" ❌git commit -m "fix(auth): 修复token过期未刷新问题" ✅