$npx -y skills add Soul-Brews-Studio/arra-oracle-skills-cli --skill resonanceCapture 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 dis
| 1 | # /resonance — Capture What Resonates |
| 2 | |
| 3 | When something clicks — log it. The pattern, the insight, the spark. |
| 4 | |
| 5 | ## Usage |
| 6 | |
| 7 | ``` |
| 8 | /resonance # Auto-detect from recent conversation |
| 9 | /resonance "skills as marketplace" # With explicit note |
| 10 | ``` |
| 11 | |
| 12 | ## When to Trigger |
| 13 | |
| 14 | AI should consider auto-suggesting /resonance when user says: |
| 15 | - "yes!", "cool!", "very cool!", "love it!", "exactly!" |
| 16 | - "that's it!", "perfect!", "นี่แหละ!", "ใช่เลย!" |
| 17 | - Strong agreement after a design decision or insight |
| 18 | |
| 19 | ## Steps |
| 20 | |
| 21 | ### 0. Anchor (date-stamp + root) |
| 22 | |
| 23 | ```bash |
| 24 | date "+🕐 %H:%M %Z (%A %d %B %Y)" |
| 25 | |
| 26 | # Find oracle root — git toplevel that has CLAUDE.md + ψ/ |
| 27 | ORACLE_ROOT=$(git rev-parse --show-toplevel 2>/dev/null) |
| 28 | if [ -n "$ORACLE_ROOT" ] && [ -f "$ORACLE_ROOT/CLAUDE.md" ] && { [ -d "$ORACLE_ROOT/ψ" ] || [ -L "$ORACLE_ROOT/ψ" ]; }; then |
| 29 | PSI="$ORACLE_ROOT/ψ" |
| 30 | elif [ -f "$(pwd)/CLAUDE.md" ] && { [ -d "$(pwd)/ψ" ] || [ -L "$(pwd)/ψ" ]; }; then |
| 31 | ORACLE_ROOT="$(pwd)" |
| 32 | PSI="$ORACLE_ROOT/ψ" |
| 33 | else |
| 34 | echo "⚠️ Not in oracle repo (no CLAUDE.md + ψ/ at git root). Writing to pwd." |
| 35 | ORACLE_ROOT="$(pwd)" |
| 36 | PSI="$ORACLE_ROOT/ψ" |
| 37 | fi |
| 38 | ``` |
| 39 | |
| 40 | ### 1. Analyze Recent Conversation |
| 41 | |
| 42 | Look back at the last 5-10 messages. Find: |
| 43 | - **What**: The specific idea, pattern, or decision that sparked the reaction |
| 44 | - **When**: Timestamp (from hook context or current time) |
| 45 | - **Why**: Why did this resonate? What problem does it solve? |
| 46 | - **How**: How was it discovered? What led to this moment? |
| 47 | - **Connection**: Does this connect to existing Oracle learnings? |
| 48 | |
| 49 | ### 2. Log to Vault |
| 50 | |
| 51 | ```bash |
| 52 | mkdir -p "$PSI/memory/resonance" |
| 53 | ``` |
| 54 | |
| 55 | Write to: `$PSI/memory/resonance/YYYY-MM-DD_HHMM_slug.md` |
| 56 | |
| 57 | ```markdown |
| 58 | # Resonance: [short title] |
| 59 | |
| 60 | **When**: YYYY-MM-DD HH:MM |
| 61 | **Session**: [session-id] |
| 62 | **Context**: [what we were working on] |
| 63 | |
| 64 | ## What Resonated |
| 65 | [The specific idea/pattern/decision] |
| 66 | |
| 67 | ## Why It Matters |
| 68 | [Why this clicked — what problem it solves, what it enables] |
| 69 | |
| 70 | ## How We Got Here |
| 71 | [The conversation path that led to this moment] |
| 72 | |
| 73 | ## Connection |
| 74 | [Links to existing patterns, principles, or learnings] |
| 75 | |
| 76 | ## Tags |
| 77 | [concept tags for future search] |
| 78 | ``` |
| 79 | |
| 80 | ### 3. Sync to Oracle (if available, two-layer pattern) |
| 81 | |
| 82 | 1. Write to `$PSI/memory/learnings/YYYY-MM-DD_resonance-<slug>.md` with frontmatter: |
| 83 | ```yaml |
| 84 | --- |
| 85 | pattern: "[resonance title]: [what resonated]" |
| 86 | date: <today> |
| 87 | source: resonance: [repo-name] |
| 88 | concepts: ["resonance", <tags>] |
| 89 | --- |
| 90 | |
| 91 | # [resonance title] |
| 92 | [what resonated and why] |
| 93 | ``` |
| 94 | |
| 95 | 2. The Oracle's auto-memory layer picks up new files in `$PSI/memory/learnings/` automatically — no separate API call needed. |
| 96 | |
| 97 | ### 4. Confirm (announce-mode — absolute paths required) |
| 98 | |
| 99 | # announce-mode → absolute path (no ψ/, no ~/, no $VAR, no ...). |
| 100 | # Use: echo "marker: $RESOLVED_PATH" — bash substitutes. See CONVENTIONS.md. |
| 101 | |
| 102 | ```bash |
| 103 | RES_FILE="$PSI/memory/resonance/$(date +%Y-%m-%d)_$(date +%H%M)_${SLUG}.md" |
| 104 | LESSON_FILE="$PSI/memory/learnings/$(date +%Y-%m-%d)_resonance-${SLUG}.md" |
| 105 | echo "✨ Resonance captured: ${TITLE}" |
| 106 | echo "📥 Saved: $RES_FILE" |
| 107 | echo "💡 Lesson: $LESSON_FILE" |
| 108 | ``` |
| 109 | |
| 110 | Short. Don't over-explain. The moment speaks for itself. |
| 111 | |
| 112 | ## Philosophy |
| 113 | |
| 114 | > Resonance is the signal. When something resonates, it means |
| 115 | > the pattern matches reality. Log it before it fades. |
| 116 | |
| 117 | Resonance logs are different from learnings: |
| 118 | - **Learnings** = what you figured out (head) |
| 119 | - **Resonance** = what clicked (heart) |
| 120 | |
| 121 | Over time, resonance logs reveal what matters most — not what's logical, but what's alive. |
| 122 | |
| 123 | ARGUMENTS: $ARGUMENTS |