oracle-soul-sync-update
/oracle-soul-sync-update
"Sync your soul with the family."
All-in-one skill: /soul-sync + /calibrate + /update combined.
Usage
/oracle-soul-sync-update # Check version and update
/oracle-soul-sync-update --check # Only check, don't update
/oracle-soul-sync-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/arra-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 arra-oracle-skills@github:Soul-Brews-Studio/arra-oracle-skills-cli#$LATEST install -g -y
With --cleanup (removes old skills first):
arra-oracle-skills uninstall -g -y && ~/.bun/bin/bunx --bun arra-oracle-skills@github:Soul-Brews-Studio/arra-oracle-skills-cli#$LATEST install -g -y
Then restart Claude Code to load the synced skills.
Step 5: Verify Sync
After restart, run:
arra-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/arra-oracle-skills-cli --limit 5
Or view commits:
gh api repos/Soul-Brews-Studio/arra-oracle-skills-cli/commits --jq '.[0:5] | .[] | "\(.sha[0:7]) \(.commit.message | split("\n")[0])"'
Skill management has moved to
/oracle— use/oracle install,/oracle remove,/oracle profile,/oracle skills.
Timing: Before /awaken
IMPORTANT: /oracle-soul-sync-update should run before /awaken, not during.
The /awaken wizard v2 checks skills version in Phase 0 (System Check). If outdated:
- Run
/oracle-soul-sync-updatefirst - Restart Claude Code (required to load new skills)
- Then run
/awaken
Do NOT run /oracle-soul-sync-update mid-awaken — it requires a restart which breaks the wizard flow.
Quick Reference
| Command | Action |
|---|---|
/oracle-soul-sync-update |
Check and sync |
/oracle-soul-sync-update --cleanup |
Uninstall + reinstall (removes old) |
/awaken |
Full awakening (run soul-sync before, not during) |
ARGUMENTS: $ARGUMENTS
More from soul-brews-studio/oracle-skills-cli
philosophy
Display Oracle philosophy — the 5 Principles + Rule 6. Use when user asks about principles, "nothing deleted", "patterns over intentions", Oracle philosophy, or needs alignment check. Do NOT trigger for "who are you" (use /who-are-you), "what is oracle" (use /about-oracle), or session status questions.
50feel
Capture how the system feels — energy, momentum, burnout, breakthrough. Emotional intelligence for Oracle-human collaboration. Use when user says 'feel', 'how are we', 'energy check', 'burnout', 'momentum', or wants emotional awareness of the work.
36worktree
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.
29schedule
Query schedule via Oracle API (Drizzle DB). Use when user says "schedule", "upcoming events", "what's on today", "calendar".
29forward
Create handoff + enter plan mode for next session. Use when user says "forward", "handoff", "wrap up", or before ending session.
29