Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기config
스타1
포크0
업데이트2026년 1월 26일 14:56
Show current sync configuration
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Show current sync configuration
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | config |
| description | Show current sync configuration |
Display current GitHub sync configuration.
/claude-github-sync:config
| 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 |
| Sync settings | ~/.claude/settings.sync.json | Shared settings (synced to GitHub) |
| Local settings | ~/.claude/settings.local.json | Machine-specific settings (gitignored) |
| Merged output | ~/.claude/settings.json | Auto-merged result of sync + local |
Execute:
CONFIG_FILE="$HOME/.claude/sync-config.json"
echo "📋 GitHub Sync Configuration"
echo "============================="
if [ -f "$CONFIG_FILE" ]; then
cat "$CONFIG_FILE"
echo ""
echo "Git Remote:"
cd ~/.claude && git remote -v 2>/dev/null || echo " Not initialized"
else
echo "Not configured."
echo ""
echo "Run: /claude-github-sync:init <repo-url>"
fi
Report result to user.
Interactive setup wizard for GitHub sync
Pull latest configuration from GitHub
Push configuration changes to GitHub
Open GitHub sync repository page in browser
Show sync status and pending changes