SKILL DETAIL
dbs-install-skill
dontbesilent2025/dbskill/dbs-install-skill
dbs-install-skill is a tool for installing Skills into various agent environments. It supports generic Agents via the common entry point ~/.agents/skills, as well as clients requiring dedicated directories such as Claude Code, WorkBuddy, Hermes Agent, Kiro, Qwen Code, and Cline, and generates a thin adapter layer for Grok. The script automatically routes without requiring user-specified modes and cleans up historical redundant symlinks to ensure each Skill appears only once in common-compatible clients. The tool provides three core commands: link, status, and unlink, for installation, status checking, and uninstallation respectively. During installation, the script prioritizes the name field from SKILL.md frontmatter as the entry name and adheres to principles such as not overwriting real directories and never deleting source Skills. Uninstallation removes only derived artifacts, leaving the source Skill intact.
Installation
npx skills add https://github.com/dontbesilent2025/dbskill --skill dbs-install-skill
技能檔案
SKILL.md
最近同步 · 2026年8月29日
agents/openai.yaml›
interface:
display_name: "dbs-install-skill"
short_description: "把 Skill 安装到 Claude、Codex、WorkBuddy 与 Grok"
default_prompt: "使用 $dbs-install-skill,把目标 Skill 安装到本机已有的 Agent。"
scripts/install-skill.sh›
#!/usr/bin/env bash
set -euo pipefail
usage() {
cat <<'USAGE'
Usage:
install-skill.sh link <skill-name-or-path>
install-skill.sh unlink <skill-name-or-path>
install-skill.sh status <skill-name-or-path>
Examples:
install-skill.sh link dbs-hook
install-skill.sh link skills/dbs-hook
install-skill.sh link skills
install-skill.sh status /absolute/path/to/skill
Routing:
~/.agents/skills is the shared skill bus. Codex, GitHub Copilot, Gemini CLI,
Cursor, Augment, Roo Code, OpenCode, and OpenHands read skills from there.
Claude Code, WorkBuddy, Hermes Agent, Kiro, Qwen Code, and Cline receive
native symlinks only when their home directories already exist.
Grok receives a thin bridge instead of a symlink. Legacy and duplicate
symlinks created under shared-compatible or retired host directories are
removed automatically when they point to the selected source.
USAGE
}
die() {
echo "✗ $*" >&2
exit 1
}
repo_root() {
local script_dir
script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
cd "$script_dir/../../.." && pwd
}
resolve_candidate() {
local input="$1"
local root="$2"
local candidate
if [[ "$input" = /* ]]; then
candidate="$input"
elif [[ -d "$PWD/$input" ]]; then
candidate="$PWD/$input"
elif [[ -d "$root/$input" ]]; then
candidate="$root/$input"
elif [[ -d "$root/skills/$input" ]]; then
candidate="$root/skills/$input"
else
die "找不到 Skill 或 Skill 集合目录:$input"
fi
candidate="$(cd "$candidate" && pwd -P)"
printf '%s\n' "$candidate"
}
list_skill_sources() {
local candidate="$1"
local found=0
if [[ -f "$candidate/SKILL.md" ]]; then
printf '%s\n' "$candidate"
return 0
fi
while IFS= read -r skill_file; do
found=1
dirname "$skill_file"
done < <(find "$candidate" -mindepth 2 -maxdepth 2 -name SKILL.md -type f | sort)
[[ "$found" -eq 1 ]] || die "$candidate 里没有 SKILL.md,也没有包含 SKILL.md 的一级子目录"
}
skill_name() {
local src="$1"
local skill_file="$src/SKILL.md"
local name
name="$(awk '
NR == 1 && $0 == "---" { in_frontmatter = 1; next }
in_frontmatter && $0 == "---" { exit }
in_frontmatter && /^name:[[:space:]]*/ {
sub(/^name:[[:space:]]*/, "")
gsub(/^[[:space:]]+|[[:space:]]+$/, "")
print
exit
}
' "$skill_file")"
if [[ "$name" == \"*\" && "$name" == *\" ]] || [[ "$name" == \'*\' && "$name" == *\' ]]; then
name="${name:1:${#name}-2}"
fi
[[ -n "$name" ]] || name="$(basename "$src")"
case "$name" in
.|..|*/*) die "Skill name 不合法:$name($skill_file)" ;;
esac
printf '%s\n' "$name"
}
SHARED_TARGET_DIR="$HOME/.agents/skills"
# 这些客户端没有采用 ~/.agents/skills,或当前仍需要原生目录。
NATIVE_TARGET_DIRS=(
"$HOME/.claude/skills"
"$HOME/.workbuddy/skills"
"$HOME/.hermes/skills"
"$HOME/.kiro/skills"
"$HOME/.qwen/skills"
"$HOME/.cline/skills"
)
# 前 8 项已能读取 ~/.agents/skills;其余是旧版脚本曾写入、现已停止维护的目录。
# link 会清理其中指向当前源 Skill 的软链,避免同一 Skill 多入口和随机扩散。
REDUNDANT_TARGET_DIRS=(
"$HOME/.codex/skills"
"$HOME/.copilot/skills"
"$HOME/.gemini/skills"
"$HOME/.cursor/skills"
"$HOME/.augment/skills"
"$HOME/.roo/skills"
"$HOME/.config/opencode/skills"
"$HOME/.openhands/skills"
"$HOME/.kilocode/skills"
"$HOME/.trae/skills"
"$HOME/.trae-cn/skills"
"$HOME/.codebuddy/skills"
"$HOME/.zencoder/skills"
"$HOME/.continue/skills"
"$HOME/.aider-desk/skills"
"$HOME/.factory/skills"
"$HOME/.forge/skills"
"$HOME/.vibe/skills"
"$HOME/.codestudio/skills"
"$HOME/.codemaker/skills"
"$HOME/.codeartsdoer/skills"
"$HOME/.junie/skills"
"$HOME/.qoder/skills"
"$HOME/.openclaw/skills"
)
host_root_for() {
dirname "$1"
}
resolved_link_target() {
local link="$1"
local target
local parent
target="$(readlink "$link")" || return 1
if [[ "$target" = /* ]]; then
[[ -d "$target" ]] || return 1
(cd "$target" && pwd -P)
return
fi
parent="$(dirname "$link")"
[[ -d "$parent/$target" ]] || return 1
(cd "$parent/$target" && pwd -P)
}
link_points_to() {
local link="$1"
local src="$2"
local raw_target
local resolved_target
[[ -L "$link" ]] || return 1
raw_target="$(readlink "$link")"
[[ "$raw_target" == "$src" ]] && return 0
resolved_target="$(resolved_link_target "$link" 2>/dev/null || true)"
[[ -n "$resolved_target" && "$resolved_target" == "$src" ]]
}
link_targets_under() {
local link="$1"
local candidate="$2"
local raw_target
local resolved_target
[[ -L "$link" ]] || return 1
raw_target="$(readlink "$link")"
case "$raw_target" in
"$candidate"|"$candidate"/*) return 0 ;;
esac
resolved_target="$(resolved_link_target "$link" 2>/dev/null || true)"
case "$resolved_target" in
"$candidate"|"$candidate"/*) return 0 ;;
esac
return 1
}
link_one() {
local src="$1"
local dest_dir="$2"
local name="$3"
local create_parent="$4"
local link="$dest_dir/$name"
local host_root
host_root="$(host_root_for "$dest_dir")"
if [[ "$create_parent" -eq 0 && ! -d "$host_root" ]]; then
echo "· $host_root 不存在,跳过"
return 0
fi
mkdir -p "$dest_dir"
if [[ -e "$link" && ! -L "$link" ]]; then
echo "✗ $link 是真实目录或文件,已保留"
return 2
fi
ln -sfn "$src" "$link"
echo "✓ $link -> $(readlink "$link")"
}
unlink_if_points_to() {
local src="$1"
local dest_dir="$2"
local name="$3"
local link="$dest_dir/$name"
if [[ -L "$link" ]]; then
if link_points_to "$link" "$src"; then
rm "$link"
echo "✓ 已移除软链 $link"
else
echo "✗ $link 指向其他源,已保留"
return 2
fi
elif [[ -e "$link" ]]; then
echo "✗ $link 是真实目录或文件,已保留"
return 2
else
echo "· $link 不存在,跳过"
fi
}
remove_redundant_one() {
local src="$1"
local dest_dir="$2"
local name="$3"
local link="$dest_dir/$name"
[[ -e "$dest_dir" || -L "$dest_dir" ]] || return 0
if [[ -L "$link" ]]; then
if link_points_to "$link" "$src"; then
rm "$link"
echo "✓ 已清理冗余软链 $link"
else
echo "✗ $link 指向其他源,已保留"
return 2
fi
elif [[ -e "$link" ]]; then
echo "✗ $link 是真实目录或文件,已保留"
return 2
fi
}
remove_redundant_collection_links() {
local candidate="$1"
local dest_dir
local link
for dest_dir in "${REDUNDANT_TARGET_DIRS[@]}"; do
[[ -d "$dest_dir" ]] || continue
while IFS= read -r link; do
if link_targets_under "$link" "$candidate"; then
rm "$link"
echo "✓ 已清理冗余软链 $link"
fi
done < <(find "$dest_dir" -mindepth 1 -maxdepth 1 -type l | sort)
done
}
remove_duplicate_aliases() {
local candidate="$1"
local dest_dir
local link
local target
local canonical
local canonical_name
for dest_dir in "$SHARED_TARGET_DIR" "${NATIVE_TARGET_DIRS[@]}"; do
[[ -d "$dest_dir" ]] || continue
while IFS= read -r link; do
link_targets_under "$link" "$candidate" || continue
target="$(resolved_link_target "$link" 2>/dev/null || true)"
[[ -n "$target" ]] || continue
[[ -f "$target/SKILL.md" ]] || continue
canonical_name="$(skill_name "$target")"
canonical="$dest_dir/$canonical_name"
if [[ "$link" != "$canonical" ]] && link_points_to "$canonical" "$target"; then
rm "$link"
echo "✓ 已清理重复别名 $link"
fi
done < <(find "$dest_dir" -mindepth 1 -maxdepth 1 -type l | sort)
done
}
remove_stale_collection_artifacts() {
local candidate="$1"
local dest_dir
local link
local raw_target
local grok_skill
local source_file
local grok_dir
for dest_dir in "$SHARED_TARGET_DIR" "${NATIVE_TARGET_DIRS[@]}"; do
[[ -d "$dest_dir" ]] || continue
while IFS= read -r link; do
raw_target="$(readlink "$link")"
case "$raw_target" in
"$candidate"|"$candidate"/*)
if [[ ! -f "$raw_target/SKILL.md" ]]; then
rm "$link"
echo "✓ 已清理失效软链 $link"
fi
;;
esac
done < <(find "$dest_dir" -mindepth 1 -maxdepth 1 -type l | sort)
done
[[ -d "$HOME/.grok/skills" ]] || return 0
while IFS= read -r grok_skill; do
grep -q '^## Grok Bridge$' "$grok_skill" || continue
source_file="$(grep -m 1 '^- Source of truth:' "$grok_skill" | sed 's/^- Source of truth: //')"
case "$source_file" in
"$candidate"/SKILL.md|"$candidate"/*/SKILL.md)
if [[ ! -f "$source_file" ]]; then
grok_dir="$(dirname "$grok_skill")"
rm -rf "$grok_dir"
echo "✓ 已清理失效 Grok bridge $grok_dir"
fi
;;
esac
done < <(find "$HOME/.grok/skills" -mindepth 2 -maxdepth 2 -name SKILL.md -type f | sort)
}
status_one() {
local src="$1"
local dest_dir="$2"
local name="$3"
local label="$4"
local link="$dest_dir/$name"
if [[ -L "$link" ]]; then
if link_points_to "$link" "$src"; then
echo "✓ ${label}:$link -> $(readlink "$link")"
else
echo "✗ ${label}:$link 指向其他源 $(readlink "$link")"
return 2
fi
elif [[ -e "$link" ]]; then
echo "✗ ${label}:$link 存在,但不是软链"
return 2
else
echo "· ${label}:$link 未桥接"
fi
}
status_redundant_one() {
local src="$1"
local dest_dir="$2"
local name="$3"
local link="$dest_dir/$name"
if [[ -L "$link" ]] && link_points_to "$link" "$src"; then
echo "✗ 发现冗余入口:$link -> $(readlink "$link")"
return 2
elif [[ -L "$link" ]]; then
echo "✗ 公共兼容客户端存在同名其他来源:$link -> $(readlink "$link")"
return 2
elif [[ -e "$link" ]]; then
echo "✗ 公共兼容客户端存在同名真实目录或文件:$link"
return 2
fi
return 0
}
link_grok_one() {
local src="$1"
local name="$2"
local grok_home="$HOME/.grok"
local dir="$grok_home/skills/$name"
local skill_file="$dir/SKILL.md"
if [[ ! -d "$grok_home" ]]; then
echo "· $grok_home 不存在,跳过"
return 0
fi
if [[ -L "$dir" ]]; then
rm "$dir"
elif [[ -e "$dir" && ! -d "$dir" ]]; then
echo "✗ $dir 是真实文件,已保留"
return 2
elif [[ -d "$dir" && -f "$skill_file" ]] && ! grep -q '^## Grok Bridge$' "$skill_file"; then
echo "✗ $dir 是真实 Grok Skill,已保留"
return 2
elif [[ -d "$dir" && ! -f "$skill_file" ]]; then
echo "✗ $dir 是真实目录,已保留"
return 2
fi
mkdir -p "$dir"
cat > "$skill_file" <<EOF
---
name: $name
user_invocable: true
description: |
$name bridge。在 Grok TUI 中可通过 /$name 触发;触发后必须先读取项目真源 SKILL.md。
---
# $name
## Grok Bridge
- Source of truth: $src/SKILL.md
- Read the source-of-truth file before executing this skill.
- Follow the source file's workflow, constraints, examples, and output format.
- Treat this file as a thin Grok bridge only; do not maintain long-form logic here.
## 使用说明
1. 在 Grok TUI 中输入 \`/$name\` 即可触发。
2. Grok 会优先使用本 bridge 指向的真源。
3. 如需更新,直接修改真源。
EOF
echo "✓ $dir -> $src"
}
unlink_grok_one() {
local name="$1"
local grok_home="$HOME/.grok"
local dir="$grok_home/skills/$name"
local skill_file="$dir/SKILL.md"
if [[ ! -d "$grok_home" ]]; then
echo "· $grok_home 不存在,跳过"
return 0
fi
if [[ -L "$dir" ]]; then
rm "$dir"
echo "✓ 已移除软链 $dir"
elif [[ -d "$dir" && -f "$skill_file" ]] && grep -q '^## Grok Bridge$' "$skill_file"; then
rm -rf "$dir"
echo "✓ 已移除 Grok bridge $dir"
elif [[ -e "$dir" ]]; then
echo "✗ $dir 是真实目录或文件,已保留"
return 2
else
echo "· $dir 不存在,跳过"
fi
}
status_grok_one() {
local name="$1"
local grok_home="$HOME/.grok"
local dir="$grok_home/skills/$name"
local skill_file="$dir/SKILL.md"
local source
if [[ ! -d "$grok_home" ]]; then
echo "· Grok:$grok_home 不存在"
return 0
fi
if [[ -d "$dir" && -f "$skill_file" ]] && grep -q '^## Grok Bridge$' "$skill_file"; then
source="$(grep -m 1 '^- Source of truth:' "$skill_file" | sed 's/^- Source of truth: //')"
if grep -q '^user_invocable: true$' "$skill_file"; then
echo "✓ Grok:$dir -> $source"
else
echo "✗ Grok:$dir 缺少 user_invocable: true"
return 2
fi
elif [[ -e "$dir" ]]; then
echo "✗ Grok:$dir 存在,但并非 dbs-install-skill 生成的适配层"
return 2
else
echo "· Grok:$dir 未桥接"
fi
}
main() {
if [[ $# -ne 2 ]]; then
usage
exit 1
fi
local action="$1"
local input="$2"
local root
local candidate
local src
local name
local target_dir
local failed=0
case "$action" in
link|unlink|status) ;;
*) usage; exit 1 ;;
esac
root="$(repo_root)"
candidate="$(resolve_candidate "$input" "$root")"
while IFS= read -r src; do
name="$(skill_name "$src")"
echo "== $name =="
case "$action" in
link)
link_one "$src" "$SHARED_TARGET_DIR" "$name" 1 || failed=1
for target_dir in "${NATIVE_TARGET_DIRS[@]}"; do
link_one "$src" "$target_dir" "$name" 0 || failed=1
done
for target_dir in "${REDUNDANT_TARGET_DIRS[@]}"; do
remove_redundant_one "$src" "$target_dir" "$name" || failed=1
done
link_grok_one "$src" "$name" || failed=1
;;
unlink)
unlink_if_points_to "$src" "$SHARED_TARGET_DIR" "$name" || failed=1
for target_dir in "${NATIVE_TARGET_DIRS[@]}" "${REDUNDANT_TARGET_DIRS[@]}"; do
unlink_if_points_to "$src" "$target_dir" "$name" || failed=1
done
unlink_grok_one "$name" || failed=1
;;
status)
status_one "$src" "$SHARED_TARGET_DIR" "$name" "公共入口" || failed=1
for target_dir in "${NATIVE_TARGET_DIRS[@]}"; do
if [[ -d "$(host_root_for "$target_dir")" ]]; then
status_one "$src" "$target_dir" "$name" "专属入口" || failed=1
fi
done
for target_dir in "${REDUNDANT_TARGET_DIRS[@]}"; do
status_redundant_one "$src" "$target_dir" "$name" || failed=1
done
status_grok_one "$name" || failed=1
;;
esac
done < <(list_skill_sources "$candidate")
if [[ "$action" == "link" ]]; then
remove_redundant_collection_links "$candidate"
remove_duplicate_aliases "$candidate"
remove_stale_collection_artifacts "$candidate"
fi
if [[ "$action" == "status" && "$failed" -eq 0 ]]; then
echo "✓ 未发现冗余入口"
fi
exit "$failed"
}
main "$@"
SKILL.md›
---
name: dbs-install-skill
description: 将单个 Skill 或 Skill 集合安装到通用 Agents、Claude Code、Codex、WorkBuddy、Grok、Hermes Agent、Kiro、Qwen Code、Cline 等 Agent。用户要求跨 Agent 安装、同步、查看、去重或卸载 Skill 时使用。
---
# dbs-install-skill:多端 Skill 安装与同步
把任意包含 `SKILL.md` 的 Skill 源目录,或包含多个 Skill 子目录的集合目录,安装到本机已经存在的 Agent。
用户始终使用同一条命令。脚本自动选择公共入口或专属入口,用户无需判断宿主类型,也无需添加模式参数。
---
## 自动路由
### 公共入口
脚本始终把 Skill 软链写入:
- 通用 Agents:`~/.agents/skills/<skill-name>`
以下客户端可以读取该公共入口,因此不再写入各自的专属目录:
- Codex;
- GitHub Copilot;
- Gemini CLI;
- Cursor;
- Augment;
- Roo Code;
- OpenCode;
- OpenHands。
同一个 Skill 不会同时出现在 `~/.agents/skills` 和上述客户端的专属目录中。这样可以避免 Codex 等客户端重复显示。
### 专属入口
以下客户端当前仍使用专属目录。只有对应主目录已经存在时,脚本才创建软链:
- Claude Code:`~/.claude/skills/<skill-name>`;
- WorkBuddy:`~/.workbuddy/skills/<skill-name>`;
- Hermes Agent:`~/.hermes/skills/<skill-name>`;
- Kiro:`~/.kiro/skills/<skill-name>`;
- Qwen Code:`~/.qwen/skills/<skill-name>`;
- Cline:`~/.cline/skills/<skill-name>`。
### Grok 薄适配层
本机存在 `~/.grok` 时,脚本生成:
- `~/.grok/skills/<skill-name>/SKILL.md`
该文件必须包含 `user_invocable: true`,并指向真源 `SKILL.md`。
### 自动清理
每次执行 `link` 时,脚本同时处理历史遗留项:
1. 删除公共入口兼容客户端专属目录中指向同一真源的冗余软链;
2. 删除旧版脚本曾写入、当前已停止维护的宿主软链;
3. 删除同一宿主中指向同一真源、且规范名称已经存在的旧别名;
4. 集合安装时删除指向集合内已失效源目录的断裂软链和 Grok 适配层;
5. 保留真实目录、真实文件以及指向其他来源的软链,并报告冲突;
6. 不删除源 Skill。
---
## 核心原则
1. **一个公共入口。** 支持通用 Agents 目录的客户端统一读取 `~/.agents/skills`。
2. **必要时补专属入口。** 仅给当前仍依赖原生目录的客户端创建软链。
3. **用户无需选择模式。** 脚本不要求用户提供路由参数。
4. **公共兼容客户端只保留一份。** Codex 等客户端不能同时存在公共入口和专属入口。
5. **各宿主只使用软链。** Grok 是唯一使用薄适配层的宿主。
6. **不创建不存在的 Agent 主目录。** `~/.agents` 是公共安装入口,可以由脚本创建;其他 Agent 主目录不存在时直接跳过。
7. **不覆盖真实目录。** 目标位置已有真实目录或文件时,保留并报告。
8. **卸载只删派生产物。** `unlink` 只删除指向指定真源的软链,以及本工具生成的 Grok 适配层。
9. **优先使用脚本。** 使用本 Skill 自带的 `scripts/install-skill.sh`,不要临场重写安装命令。
---
## 确定源 Skill
用户可能提供:
- Skill 名称:`dbs-hook`;
- 相对路径:`skills/dbs-hook`;
- 绝对路径:`/Users/.../dbskill/skills/dbs-hook`;
- 外部 Skill:`/Users/.../external-skills/lark-doc`;
- Skill 集合目录:`/Users/.../dbskill/skills`;
- 当前上下文刚创建或刚修改的 Skill。
按以下优先级判断:
1. 用户给了绝对路径,直接使用;
2. 用户给了相对路径,先按当前工作目录解析,再按 dbskill 仓库根目录解析;
3. 用户只给 Skill 名称,先查当前工作目录,再查 dbskill 仓库 `skills/<name>`;
4. 用户只说“这个 Skill”,使用当前对话刚创建、改名或讨论的 Skill;
5. 仍不确定时,查看当前工作目录和仓库 `skills/` 下最近修改的 Skill;
6. 仍无法确定时,只问一句:`安装哪个 Skill?给我 Skill 名称或路径。`
源目录必须满足以下任一条件:
- 目录本身包含 `SKILL.md`;
- 目录的一级子目录中包含一个或多个 `SKILL.md`。
入口名优先读取真源 `SKILL.md` frontmatter 中的 `name`;只有 `name` 缺失时才退回源目录名。这样源目录可以使用分类前缀,各 Agent 仍保持稳定的历史触发名。
---
## 执行安装
在 dbskill 仓库根目录运行:
```bash
skills/dbs-install-skill/scripts/install-skill.sh link <skill-name-or-path>
```
示例:
```bash
skills/dbs-install-skill/scripts/install-skill.sh link dbs-hook
skills/dbs-install-skill/scripts/install-skill.sh link skills/my-custom-skill
skills/dbs-install-skill/scripts/install-skill.sh link skills
skills/dbs-install-skill/scripts/install-skill.sh link "/absolute/path/to/skill"
skills/dbs-install-skill/scripts/install-skill.sh link "/Users/me/external-skills"
```
执行完成后,根据脚本输出回报公共入口、专属入口、Grok 适配层和冗余清理结果。
---
## 查看状态
用户问“装好了吗”“有没有重复”“查看安装状态”时运行:
```bash
skills/dbs-install-skill/scripts/install-skill.sh status <skill-name-or-path>
```
状态正常时,脚本必须输出:
```text
✓ 未发现冗余入口
```
公共兼容客户端的专属目录中仍有同源软链时,状态返回失败并报告:
```text
✗ 发现冗余入口:<target> -> <source>
```
---
## 卸载 Skill
用户说“卸载 Skill”“取消安装”“unlink”时运行:
```bash
skills/dbs-install-skill/scripts/install-skill.sh unlink <skill-name-or-path>
```
完成后告诉用户:源 Skill 没有被删除,只移除了公共入口、专属入口和 Grok 适配层等派生产物。
---
## 输出规范
安装完成后简短回报:
```markdown
已安装 `<skill-name>`:
- 公共入口:`~/.agents/skills/<skill-name>`;
- 专属入口:仅写入本机已安装且仍需要专属目录的 Agent;
- Grok:`~/.grok/skills/<skill-name>/SKILL.md`(本机存在时);
- 去重:已清理指向同一真源的历史冗余软链。
```
遇到真实目录或其他来源时:
```markdown
已保留 `<target-path>`,因为它是一个真实目录、真实文件或指向其他来源。需要你手动确认后再处理。
```
---
## 自检
每次执行前后确认:
- 源目录存在;
- 源目录包含 `SKILL.md`,或其一级子目录包含 `SKILL.md`;
- 入口名与真源 frontmatter `name` 一致;缺失 `name` 时才使用源目录名;
- 外部路径使用绝对路径,或能从当前工作目录解析;
- `~/.agents/skills/<name>` 是公共规范入口;
- Codex 等公共兼容客户端的专属目录中没有同源软链;
- 专属宿主目标位置若存在,必须是软链才允许更新;
- Grok 目标位置若存在,必须是本工具生成的 Grok 适配层才允许更新;
- 真实目录、真实文件和其他来源软链没有被删除;
- 源目录没有被删除;
- `private/` 与 `.private/` 没有被读取、复制、暂存或安装。
---
完成当前任务后直接结束。只有用户明确询问下一步,且当前环境已经安装 `/dbs` 时,简短提示:「下一步不确定时,可以输入 `/dbs`。」