File contents Skill 命令参考
ADP/OpenBKN Skill 资源域:注册、市场查找、渐进式读取、下载与本地安装。
与 CLI 一致:运行 openbkn skill --help 或 openbkn skill <subcommand> --help 查看当前版本同步的参数。
常用命令
openbkn skill list [--name <kw>] [--status unpublish|published|offline] [--page-size 30]
openbkn skill market [--name <kw>] [--source <src>] [--page-size 30]
openbkn skill get <skill_id>
openbkn skill register --content-file <path> [--source <src>] [--extend-info '{"tag":"demo"}']
openbkn skill register --zip-file <skill.zip> [--source <src>] [--extend-info '{"tag":"demo"}']
openbkn skill status <skill_id> <unpublish|published|offline>
openbkn skill delete <skill_id> [-y]
渐进式读取
# Read the content index only (download URL + file manifest)
openbkn skill content <skill_id>
# Fetch and print SKILL.md body
openbkn skill content <skill_id> --raw
# Save SKILL.md locally
openbkn skill content <skill_id> --output ./SKILL.md
# Read one file entry
openbkn skill read-file <skill_id> references/guide.md
# Fetch file bytes and save locally
openbkn skill read-file <skill_id> references/guide.md --output ./guide.md
下载与安装
# Download the ZIP archive
openbkn skill download <skill_id> --output ./demo-skill.zip
# Install to a local folder (extract ZIP)
openbkn skill install <skill_id> ./skills/demo-skill
# Replace an existing non-empty directory
openbkn skill install <skill_id> ./skills/demo-skill --force
说明
list 与 market 默认每页 30 条,--page-size / --limit 可覆盖
content / read-file 默认返回索引元数据;加 --raw 或 --output 才会真正抓取远端内容
register --content-file 支持上传单个 SKILL.md,也支持指定包含 SKILL.md 的目录(会自动打包为 ZIP);register --zip-file 适合上传已构建好的 .zip 压缩包
install 本质是 download + unzip 的本地便捷封装
1 --- 2 name: references 3 description: Skill 命令参考 4 --- 5 # Skill 命令参考 6 7 ADP/OpenBKN Skill 资源域:注册、市场查找、渐进式读取、下载与本地安装。 8 9 与 CLI 一致:运行 `openbkn skill --help` 或 `openbkn skill <subcommand> --help` 查看当前版本同步的参数。 10 11 ## 常用命令 12 13 ```bash 14 openbkn skill list [--name <kw>] [--status unpublish|published|offline] [--page-size 30] 15 openbkn skill market [--name <kw>] [--source <src>] [--page-size 30] 16 openbkn skill get <skill_id> 17 openbkn skill register --content-file <path> [--source <src>] [--extend-info '{"tag":"demo"}'] 18 openbkn skill register --zip-file <skill.zip> [--source <src>] [--extend-info '{"tag":"demo"}'] 19 openbkn skill status <skill_id> <unpublish|published|offline> 20 openbkn skill delete <skill_id> [-y] 21 ``` 22 23 ## 渐进式读取 24 25 ```bash 26 # Read the content index only (download URL + file manifest) 27 openbkn skill content <skill_id> 28 29 # Fetch and print SKILL.md body 30 openbkn skill content <skill_id> --raw 31 32 # Save SKILL.md locally 33 openbkn skill content <skill_id> --output ./SKILL.md 34 35 # Read one file entry 36 openbkn skill read-file <skill_id> references/guide.md 37 38 # Fetch file bytes and save locally 39 openbkn skill read-file <skill_id> references/guide.md --output ./guide.md 40 ``` 41 42 ## 下载与安装 43 44 ```bash 45 # Download the ZIP archive 46 openbkn skill download <skill_id> --output ./demo-skill.zip 47 48 # Install to a local folder (extract ZIP) 49 openbkn skill install <skill_id> ./skills/demo-skill 50 51 # Replace an existing non-empty directory 52 openbkn skill install <skill_id> ./skills/demo-skill --force 53 ``` 54 55 ## 说明 56 57 - `list` 与 `market` 默认每页 30 条,`--page-size` / `--limit` 可覆盖 58 - `content` / `read-file` 默认返回索引元数据;加 `--raw` 或 `--output` 才会真正抓取远端内容 59 - `register --content-file` 支持上传单个 `SKILL.md`,也支持指定包含 `SKILL.md` 的目录(会自动打包为 ZIP);`register --zip-file` 适合上传已构建好的 `.zip` 压缩包 60 - `install` 本质是 `download + unzip` 的本地便捷封装
openbkn-ai/bkn-engineering/tree/main/skills/bkn-creator/internal/bkn-openbkn/references commit 0f9faa73e3
Frequently asked questions How do I install the References skill? Run npx skillmds@latest add openbkn-ai/references in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the References skill do? Skill 命令参考 It is listed under Coding & Dev Tools on SkillMD.
Is References safe to use? This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with References? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is References free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published References? openbkn-ai (@openbkn-ai) published this skill. Their other Agent Skills are listed on their SkillMD profile.