skills/openharmony-download/SKILL.md
Interactive OpenHarmony source code download with mirror selection (GitCode/Gitee/GitHub), environment checking, branch selection, and real-time progress. Use when user requests:"下载 OpenHarmony", "download OpenHarmony", "下载源码", "获取源码", "拉取代码", "clone openharmony", or "repo init".
npx skillsauth add openharmonyinsight/openharmony-skills openharmony-downloadInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
OpenHarmony 源码下载 Skill - 对话式信息收集 + 环境检查 + 前台实时下载。
AskUserQuestion({
questions: [{
header: "镜像源",
question: "请选择 OpenHarmony 镜像源",
options: [
{ label: "GitCode", description: "推荐国内用户,速度最快" },
{ label: "Gitee", description: "国内用户" },
{ label: "GitHub", description: "国际用户" }
],
multiSelect: false
}]
})
镜像源选择后,使用 Bash 工具逐项检查环境:
Bash({ command: "bash scripts/check_env.sh git", description: "Check git installation" })
Bash({ command: "bash scripts/check_env.sh git-lfs", description: "Check git-lfs installation" })
Bash({ command: "bash scripts/check_env.sh python3", description: "Check python3 installation" })
Bash({ command: "bash scripts/check_env.sh curl", description: "Check curl installation" })
Bash({ command: "bash scripts/check_env.sh repo", description: "Check repo installation" })
Bash({ command: "bash scripts/check_env.sh git-config", description: "Check git configuration" })
Bash({ command: "bash scripts/check_env.sh disk-space", description: "Check available disk space" })
检查失败时:显示错误 + 提供安装命令 + 等待用户修复 + 重新检查
常用安装命令:
sudo apt-get install git (Ubuntu/Debian)sudo apt-get install git-lfs && git lfs installgit config --global user.name "Your Name" && git config --global user.email "[email protected]"AskUserQuestion({
questions: [{
header: "分支",
question: "请选择 OpenHarmony 分支",
options: [
{ label: "master", description: "主分支(最新开发代码)" },
{ label: "OpenHarmony-5.1.0-Release", description: "5.1.0 版本" },
{ label: "OpenHarmony-5.0.3-Release", description: "5.0.3 版本" },
{ label: "OpenHarmony-5.0.2-Release", description: "5.0.2 版本" },
{ label: "OpenHarmony-5.0.1-Release", description: "5.0.1 版本" },
{ label: "OpenHarmony-4.1-Release", description: "4.1 版本" },
{ label: "自定义分支", description: "输入自定义分支名" }
],
multiSelect: false
}]
})
AskUserQuestion({
questions: [{
header: "目录",
question: "请选择下载目录",
options: [
{ label: "默认位置", description: "~/OpenHarmony/[branch]/" },
{ label: "自定义路径", description: "指定其他位置" }
],
multiSelect: false
}]
})
显示配置摘要,使用 AskUserQuestion 确认是否开始:
// 显示配置摘要
Claude: 好的,准备下载 OpenHarmony 源码:
配置摘要:
- 镜像源: ${MIRROR}
- 分支: ${BRANCH}
- 目录: ${DOWNLOAD_DIR}
- 并行任务: CPU核心数/4(自动计算)
下载将在前台运行,进度实时显示。
这将需要 30 分钟到数小时。
AskUserQuestion({
questions: [{
header: "确认",
question: "是否开始下载?",
options: [
{ label: "开始下载", description: "立即开始下载 OpenHarmony 源码" },
{ label: "返回重新配置", description: "返回步骤1,重新选择配置" }
],
multiSelect: false
}]
})
如果选择"开始下载":
使用 Bash 工具执行下载脚本,传入用户选择的镜像源、分支和目录参数:
Bash({
command: `bash scripts/download_openharmony.sh -m ${MIRROR} -b ${BRANCH} ${CUSTOM_DIR ? `-d ${CUSTOM_DIR}` : ''}`,
description: `Download OpenHarmony ${BRANCH} from ${MIRROR}`
})
下载将在前台运行,进度实时显示。
如果选择"返回重新配置": 返回步骤1,重新选择镜像源、分支、目录。
必需参数:
-m MIRROR 镜像源(gitcode|gitee|github)
-b BRANCH 分支名
可选参数:
-d DIR 下载目录(绝对路径)
-j JOBS 并行任务数(默认: CPU核心数/4)
用法: check_env.sh <check_type>
检查类型: git | git-lfs | python3 | curl | repo | git-config | disk-space | all
自动验证下载完整性(下载脚本自动调用):
✓ 验证通过!OpenHarmony 源码完整。
后续步骤:
1. 配置编译环境
2. 全量编译代码: ./build.sh --ccache --product-name rk3568
✗ 验证发现问题
建议:
1. 同步缺失仓库: repo sync -c
2. 拉取 LFS 文件: repo forall -c 'git lfs pull'
3. 检查网络连接
testing
--- name: ohos-req-value-decision description: Use after review meeting to record decision and route to next step. Triggers: 评审决策纪要, 评审结论回流, value decision, 评审接纳, 评审不接纳, 评审退回, 下次重新上会. Do NOT use for feature baseline (ohos-req-feature-baseline), review gate checks (ohos-req-review-gate), or IR generation (ohos-req-feature-to-ir). metadata: author: openharmony scope: common stage: requirements capability: value-decision version: 0.3.0 status: draft tags: - sdd - requirements
development
Use when converting an OpenHarmony requirement document, spec, or design proposal into an OpenHarmony review slide deck (需求评审 / 需求变更评审 / 设计评审 PPTX) — produces the fixed OpenHarmony-branded review-deck structure (OH logo on every page) with architecture/flow diagrams and field tables. Triggers on "需求评审PPT", "需求变更评审", "把需求文档转成评审PPT", "spec转评审PPT", "requirement/spec to review deck". NOT for arbitrary or generic slide decks unrelated to OpenHarmony requirement/design review.
testing
Use when performing the Phase 0 Step 0.5 Review Ready Gate on a 04-feature.md, especially when the user says "evaluate gate", "review readiness", "feature ready?", "should we generate IR", or when the ohos-req-intake-orchestration main session needs a structured Ready / Conditional Ready / Not Ready judgment instead of doing the check inline. Reads 01-04, runs seven fixed checks plus a conditional-items check, and returns a machine-readable JSON summary plus a human-readable table that the main session can route on. Do NOT use for feature baseline generation (ohos-req-feature-baseline), value decision recording (ohos-req-value-decision), or IR generation (ohos-req-feature-to-ir).
testing
--- name: ohos-req-requirement-intake description: Use when importing an OHOS requirement into Phase 0.1, especially for 01-requirement.md, requirement intake, background, user value, scenarios, scope, FR/NFR, affected modules, or priority. Triggers: 需求导入, 01-requirement, 需求基线, RR单号. Do NOT use for feasibility analysis (ohos-req-feasibility-analysis), architecture decision (ohos-req-arch-decision), or feature baseline (ohos-req-feature-baseline). metadata: author: openharmony scope: common