Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ docs/ # 技能详细文档(README 链接指向此
skills/ # 所有技能(每个子目录一个技能)
├── _shared/ # 包级共享资源(检测协议、通用模板)
├── universal-project-kickoff/ # 通用项目启动与能力发现(已合并 proactive-skill-discovery)
│ └── references/ # 7 份参考文件(scanner、language、hook-config、validation、discovery-rules)
│ └── references/ # 7 份参考文件
├── github-pr-manager/ # GitHub PR 全功能管理器
├── github-pr-reviewer/ # GitHub PR 审查器(逐行 inline 评论)
├── quick-plugin-installer/ # 快速安装插件(MCP + SKILL)
Expand Down Expand Up @@ -48,6 +48,7 @@ CONTRIBUTING.md # 贡献指南(含能力标签注册表 + 标
- 脚本文件:`snake_case.sh`
- 所有面向用户的内容使用中文,技术术语保留英文
- 跨技能引用必须通过 PACKAGE_MODE 检测门控,独立安装时静默降级
- `.discovery-rules.json` 覆盖约定 — `deep_explore_plugins`、`priority_boost_plugins`、`cache_ttl_hours` 等字段的硬编码默认值可被 `~/.claude/skills/.discovery-rules.json` 覆盖。修改默认值时需同步更新三处:SKILL.md(Step 0c-2 配置读取段)、scanner-patterns.md(默认值标注)、discovery-rules.json 的 JSON Schema

## 风险与预案

Expand All @@ -66,6 +67,7 @@ CONTRIBUTING.md # 贡献指南(含能力标签注册表 + 标
| M3 — 技能联动 | ✅ 完成 | 通用联动框架(capabilities/integrates_with)、包级检测门控、技能间动态发现 |
| M4 — 能力合并 | ✅ 完成 | proactive-skill-discovery 合并入 universal-project-kickoff(统一入口,技能数 7→6) |
| M5 — 质量审查 | ✅ 完成 | universal-project-kickoff 12 项增强:迁移残留清理、配置系统、架构修复、检测扩展、质量体系 |
| M6 — 逻辑修复 | ✅ 完成 | 6 项修复:意图预判前置、审查代码 4 层追问、Deep Exploration 动态配置、极简模式量化标准、会话级缓存、重新触发条件量化 |

## 本地验证

Expand All @@ -92,6 +94,11 @@ git add skills/<name>/ docs/<name>.md CONTRIBUTING.md README.md
git commit -m "feat: add <name> skill"
git push

# 若 commit 后发现需同步更新 README/docs,使用 amend 追加:
git add README.md docs/<name>.md
git commit --amend --no-edit
git push --force-with-lease origin <branch>

# 3. 推送到 GitHub 后 Marketplace 自动同步
```

Expand Down
Loading