在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用open
星标1
分支0
更新时间2026年1月26日 14:56
Open GitHub sync repository page in browser
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Open GitHub sync repository page in browser
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Interactive setup wizard for GitHub sync
Pull latest configuration from GitHub
Push configuration changes to GitHub
Show current sync configuration
Show sync status and pending changes
| name | open |
| description | Open GitHub sync repository page in browser |
Open your Claude Code sync repository page in the default browser.
/claude-github-sync:open
| Item | Path | Description |
|---|---|---|
| Config file | ~/.claude/sync-config.json | Sync configuration (repo URL, setup method) |
| Git remote | ~/.claude/.git/config | Primary check - git origin remote URL |
cd ~/.claude
# Get remote URL
REPO_URL=$(git remote get-url origin 2>/dev/null)
if [ -z "$REPO_URL" ]; then
echo "❌ Not configured"
echo ""
echo "Run: /claude-github-sync:setup"
exit 1
fi
# Convert SSH URL to HTTPS if needed
# git@github.com:user/repo.git -> https://github.com/user/repo
# https://github.com/user/repo.git -> https://github.com/user/repo
HTTPS_URL=$(echo "$REPO_URL" | sed -E 's|git@github.com:|https://github.com/|' | sed 's|\.git$||')
echo "🌐 Opening: $HTTPS_URL"
# Open in default browser (macOS/Linux/WSL)
if command -v open &>/dev/null; then
open "$HTTPS_URL"
elif command -v xdg-open &>/dev/null; then
xdg-open "$HTTPS_URL"
elif command -v wslview &>/dev/null; then
wslview "$HTTPS_URL"
else
echo ""
echo "Could not detect browser. Open manually:"
echo " $HTTPS_URL"
fi