src/skills/resonance/SKILL.md
Capture a resonance moment — when something clicks, sparks joy, or feels right. Logs what resonated, when, why, and how. Use when user says "resonance", "yes!", "cool!", "very cool!", "love it", "that's it!", "exactly!", or expresses strong positive reaction to something just discussed. Do NOT trigger for general praise like "thanks" or "ok".
npx skillsauth add Soul-Brews-Studio/oracle-skills-cli resonanceInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
When something clicks — log it. The pattern, the insight, the spark.
/resonance # Auto-detect from recent conversation
/resonance "skills as marketplace" # With explicit note
AI should consider auto-suggesting /resonance when user says:
date "+🕐 %H:%M %Z (%A %d %B %Y)"
# Find oracle root — git toplevel that has CLAUDE.md + ψ/
ORACLE_ROOT=$(git rev-parse --show-toplevel 2>/dev/null)
if [ -n "$ORACLE_ROOT" ] && [ -f "$ORACLE_ROOT/CLAUDE.md" ] && { [ -d "$ORACLE_ROOT/ψ" ] || [ -L "$ORACLE_ROOT/ψ" ]; }; then
PSI="$ORACLE_ROOT/ψ"
elif [ -f "$(pwd)/CLAUDE.md" ] && { [ -d "$(pwd)/ψ" ] || [ -L "$(pwd)/ψ" ]; }; then
ORACLE_ROOT="$(pwd)"
PSI="$ORACLE_ROOT/ψ"
else
echo "⚠️ Not in oracle repo (no CLAUDE.md + ψ/ at git root). Writing to pwd."
ORACLE_ROOT="$(pwd)"
PSI="$ORACLE_ROOT/ψ"
fi
Look back at the last 5-10 messages. Find:
mkdir -p "$PSI/memory/resonance"
Write to: $PSI/memory/resonance/YYYY-MM-DD_HHMM_slug.md
# Resonance: [short title]
**When**: YYYY-MM-DD HH:MM
**Session**: [session-id]
**Context**: [what we were working on]
## What Resonated
[The specific idea/pattern/decision]
## Why It Matters
[Why this clicked — what problem it solves, what it enables]
## How We Got Here
[The conversation path that led to this moment]
## Connection
[Links to existing patterns, principles, or learnings]
## Tags
[concept tags for future search]
Write to $PSI/memory/learnings/YYYY-MM-DD_resonance-<slug>.md with frontmatter:
---
pattern: "[resonance title]: [what resonated]"
date: <today>
source: resonance: [repo-name]
concepts: ["resonance", <tags>]
---
# [resonance title]
[what resonated and why]
The Oracle's auto-memory layer picks up new files in $PSI/memory/learnings/ automatically — no separate API call needed.
RES_FILE="$PSI/memory/resonance/$(date +%Y-%m-%d)_$(date +%H%M)_${SLUG}.md"
LESSON_FILE="$PSI/memory/learnings/$(date +%Y-%m-%d)_resonance-${SLUG}.md"
echo "✨ Resonance captured: ${TITLE}"
echo "📥 Saved: $RES_FILE"
echo "💡 Lesson: $LESSON_FILE"
Short. Don't over-explain. The moment speaks for itself.
Resonance is the signal. When something resonates, it means the pattern matches reality. Log it before it fades.
Resonance logs are different from learnings:
Over time, resonance logs reveal what matters most — not what's logical, but what's alive.
ARGUMENTS: $ARGUMENTS
testing
Cut a beta pre-release — bump CalVer with --beta, PR to beta branch, CI auto-tags + publishes to npm @beta. Use when user says 'release beta', 'cut beta', '/release-beta', or wants to publish a beta version for pre-release testing.
testing
Cut an alpha pre-release — bump CalVer, PR to alpha branch, CI auto-tags + publishes to npm @alpha. Use when user says 'release alpha', 'cut alpha', '/release-alpha', or wants to publish an alpha version.
tools
Talk to another oracle via maw federation. Uses fleet machine names (white, mba, clinic-nat, oracle-world, phaith). Auto-signs with current oracle's [host:handle] from CLAUDE.md. Global — works from any oracle repo.
development
Log information for future reference. Use when user says "fyi", "remember this", "note that", "for your info".