Pulls latest changes from origin for all git repos under a directory. Uses configurable default path or prompts user to set one. Invoke to update or sync reference projects.
From toolboxnpx claudepluginhub leejuoh/claude-code-zero --plugin toolboxThis skill is limited to using the following tools:
scripts/sync.shEnforces baseline coding conventions for naming, readability, immutability, KISS/DRY/YAGNI, and code quality review in TypeScript/JavaScript. Use for new projects, refactoring, reviews, and onboarding.
Provides patterns for shared UI in Compose Multiplatform across Android, iOS, Desktop, and Web: state management with ViewModels/StateFlow, navigation, theming, and performance.
Analyzes unfamiliar codebases to generate structured onboarding guides with architecture maps, key entry points, conventions, and starter CLAUDE.md.
Pull latest from origin for all git repos under a target directory.
Config: ${CLAUDE_PLUGIN_DATA}/config.json
# Read config
cat "${CLAUDE_PLUGIN_DATA}/config.json" 2>/dev/null
# Write/update config
mkdir -p "${CLAUDE_PLUGIN_DATA}"
echo '{"default_path": "<path>"}' > "${CLAUDE_PLUGIN_DATA}/config.json"
On first run, if no config exists and no $ARGUMENTS path is given, ask the user which directory to sync and save it to config.
Resolve the target path in this order:
$ARGUMENTS if provideddefault_path from config.jsonThen run:
bash "${CLAUDE_SKILL_DIR}/scripts/sync.sh" <resolved-path>
Output the result as-is. If any repos failed, briefly note what went wrong.