oracle-soul-sync-calibrate-update
/oracle-soul-sync-calibrate-update
"Sync your soul with the family."
All-in-one skill: /soul-sync + /calibrate + /update combined.
Usage
/oracle-soul-sync-calibrate-update # Check version and update
/oracle-soul-sync-calibrate-update --check # Only check, don't update
/oracle-soul-sync-calibrate-update --cleanup # Uninstall first, then reinstall (removes old skills)
Step 0: Timestamp
date "+🕐 %H:%M %Z (%A %d %B %Y)"
Step 1: Check Current Version
Your current version is shown in the skill description above (e.g., v1.5.37 G-SKLL).
Extract just the version number:
# Current version from this skill's description
CURRENT="v1.5.37" # Read from description above
echo "Current installed: $CURRENT"
Step 2: Check Latest Version
# Get latest version from GitHub
LATEST=$(curl -s https://api.github.com/repos/Soul-Brews-Studio/oracle-skills-cli/tags | grep -m1 '"name"' | cut -d'"' -f4)
echo "Latest available: $LATEST"
Step 3: Compare Versions
if [ "$CURRENT" = "$LATEST" ]; then
echo "✅ Soul synced! ($CURRENT)"
else
echo "⚠️ Sync needed: $CURRENT → $LATEST"
fi
Step 4: Sync (if needed)
If versions differ (or --cleanup flag), run:
Normal sync:
~/.bun/bin/bunx --bun oracle-skills@github:Soul-Brews-Studio/oracle-skills-cli#$LATEST install -g -y
With --cleanup (removes old skills first):
oracle-skills uninstall -g -y && ~/.bun/bin/bunx --bun oracle-skills@github:Soul-Brews-Studio/oracle-skills-cli#$LATEST install -g -y
Then restart Claude Code to load the synced skills.
Step 5: Verify Sync
After restart, run:
oracle-skills list -g | head -5
Check that the version matches $LATEST.
What's New
To see recent changes:
gh release list --repo Soul-Brews-Studio/oracle-skills-cli --limit 5
Or view commits:
gh api repos/Soul-Brews-Studio/oracle-skills-cli/commits --jq '.[0:5] | .[] | "\(.sha[0:7]) \(.commit.message | split("\n")[0])"'
Quick Reference
| Command | Action |
|---|---|
/oracle-soul-sync-calibrate-update |
Check and sync |
/oracle-soul-sync-calibrate-update --cleanup |
Uninstall + reinstall (removes old) |
/awaken |
Full awakening (calls this first) |
ARGUMENTS: $ARGUMENTS
More from soul-brews-studio/oracle-skills-cli
worktree
Work in an isolated git worktree — safe parallel editing, experimental branches, throwaway spikes. Use when user says "worktree", "isolate", "safe branch", "spike", "experiment", or wants to work without touching main.
29template
Skill template with Bun Shell pattern. Copy this folder to create new skills.
29forward
Create handoff + enter plan mode for next session. Use when user says "forward", "handoff", "wrap up", or before ending session.
29trace
Find projects, code, and knowledge across git history, repos, docs, and Oracle. Use when user asks "trace", "find project", "where is [project]", "search history", or needs to locate something across the codebase. Supports --oracle (fast), --smart (default), --deep (wave execution), --deep --dig (combo). Do NOT trigger for session mining or "past sessions" (use /dig), or codebase exploration "learn repo" (use /learn).
28recap
Session orientation and awareness — retro summaries, handoffs, git state, focus. Use when starting a session, after /jump, lost your place, switching context, or when user asks "now", "where are we", "what are we doing", "status", "recap". Do NOT trigger for "standup" or "morning check" (use /standup), or session mining "dig", "past sessions" (use /dig).
28learn
Explore a codebase with parallel Haiku agents — clone, read, and document. Modes — --fast (1 agent), default (3), --deep (5). Use when user says "learn [repo]", "explore codebase", "study this repo", or shares a GitHub URL to study. Do NOT trigger for finding projects (use /trace), session mining (use /dig), or cloning for active development (use /project incubate).
28