Our review
Opens the GitHub repository page associated with the Claude Code sync configuration.
Strengths
- Single command, simple to use
- Auto-detects browser on macOS, Linux, and WSL
- Handles SSH to HTTPS URL conversion
Limitations
- Only works if sync is configured
- Requires internet access
- May fail if 'open' command is not available
Use when you need to quickly view your Claude Code sync repository on GitHub.
Do not use if you haven't set up sync or if you need to edit the repository locally.
Security analysis
SafeThe skill opens a URL in the browser based on the local git remote. It does not execute destructive operations, exfiltrate data, or download external payloads. The script uses safe system commands (open, xdg-open, wslview) and only reads the remote URL from git config.
No concerns found
Examples
/claude-github-sync:openname: open description: Open GitHub sync repository page in browser
Open GitHub Repository
Open your Claude Code sync repository page in the default browser.
Usage
/claude-github-sync:open
Configuration Reference
| 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 |
Instructions
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
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.