用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/celestiaorg/celestia-engineering --skill update-plugin命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | update-plugin |
| description | Update the celestia-engineering Claude Code plugin with latest changes from GitHub main branch |
Update the installed celestia-engineering plugin with latest changes from GitHub.
cd ~/.claude/plugins/marketplaces/celestia-marketplace/plugins/celestia-engineering
git fetch origin main
git reset --hard origin/main
cat ~/.claude/plugins/marketplaces/celestia-marketplace/plugins/celestia-engineering/.claude-plugin/plugin.json
Extract the version number (e.g., "2.2.0").
VERSION="X.Y.Z" # from step 2
# Create cache directory
mkdir -p ~/.claude/plugins/cache/celestia-marketplace/celestia-engineering/$VERSION
# Copy all plugin files to cache
cp -r ~/.claude/plugins/marketplaces/celestia-marketplace/plugins/celestia-engineering/* \
~/.claude/plugins/cache/celestia-marketplace/celestia-engineering/$VERSION/
cp -r ~/.claude/plugins/marketplaces/celestia-marketplace/plugins/celestia-engineering/.claude-plugin \
~/.claude/plugins/cache/celestia-marketplace/celestia-engineering/$VERSION/
Edit ~/.claude/plugins/installed_plugins.json and update the celestia-engineering entry:
installPath to include new version pathversion to new versionlastUpdated to current ISO timestampExample:
"celestia-engineering@celestia-marketplace": [
{
"scope": "user",
"installPath": "/Users/USERNAME/.claude/plugins/cache/celestia-marketplace/celestia-engineering/X.Y.Z",
"version": "X.Y.Z",
"installedAt": "2026-01-13T22:50:00.000Z",
"lastUpdated": "2026-01-15T00:00:00.000Z"
}
]
# List existing cache versions
ls ~/.claude/plugins/cache/celestia-marketplace/celestia-engineering/
# Remove old versions if desired
rm -rf ~/.claude/plugins/cache/celestia-marketplace/celestia-engineering/OLD_VERSION
cat ~/.claude/plugins/cache/celestia-marketplace/celestia-engineering/$VERSION/.claude-plugin/plugin.json
/exit) for changes to take effect