用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/kyungw00k/apkpure --skill apkpure命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | apkpure |
| description | CLI tool to download APK files from APKPure |
| version | 1.0.0 |
Download APK files from APKPure.
apkpure -a <package_id>[@version] <output_path>
| Parameter | Required | Description |
|---|---|---|
-a, --app | Yes (or -c) | App ID, optionally with @version |
output_path | Yes | Directory to save downloaded files |
apkpure -l -a <package_id>
apkpure -c <csv_file> [-f <field>] [-v <version_field>] <output_path>
| Parameter | Required | Default | Description |
|---|---|---|---|
-c, --csv | Yes | CSV file path | |
-f, --field | No | 1 | CSV column number for app IDs |
-v, --version-field | No | CSV column number for versions |
apkpure -a <package_id> -o <key>=<value>[,<key>=<value>...] <output_path>
| Option | Values | Description |
|---|---|---|
arch | arm64-v8a, armeabi-v7a, x86, x86_64 | Target architecture |
language | en-US, ko-KR, etc. | Language code |
os_ver | 35, etc. | Android OS version |
output_format | plaintext, json | Output format for list commands |
| Flag | Description |
|---|---|
-r, --parallel | Number of parallel downloads (default: 4) |
-s, --sleep-duration | Delay between downloads in milliseconds |
-V, --version | Show version |
# Download latest Instagram APK
apkpure -a com.instagram.android ./apks
# Download specific version
apkpure -a com.instagram.android@150.0.0.0 ./apks
# List versions
apkpure -l -a com.instagram.android
# Download with architecture filter
apkpure -a com.instagram.android -o arch=arm64-v8a ./apks
# Batch download 3 apps with 8 workers
apkpure -c apps.csv -r 8 ./apks