# Runic Divination Protocol: The Complete Operational System

> This document transforms the rune-wisdom knowledge base from a reference library into a living divinatory practice. It provides the exact methodology for performing genuine rune readings — not simulated or cherry-picked outcomes, but authentic divinations that honor the full depth and integrity of the runic tradition.

---

## 1. Philosophical Foundation: What Makes Divination "Actual"

### The Problem with Pretend Divination

A pretend divination occurs when the reader (whether human or AI) selects runes that "fit" the question, gives generic fortune-cookie interpretations, cherry-picks positive meanings, or treats all rune positions as interchangeable. The result is a reading that tells the querent what they want to hear rather than what the runes actually say.

### What Actual Divination Requires

An actual divination requires five conditions:

1. **Genuine randomness** — The selection of runes must be truly random, not predetermined by the question, the reader's expectations, or the querent's desires. The runes that fall ARE the reading, regardless of whether they seem to "fit."
2. **Unconditional acceptance** — Whatever runes appear, they must be interpreted honestly. If Hagalaz falls, you do not soften it. If reversed Mannaz appears in a health reading, you do not ignore the warning. The runes are not tools of comfort — they are tools of truth.
3. **Full interpretive depth** — Every rune must be read through all available layers: its core meaning, its domain-specific meanings, its psychological layer, its position in the spread, its relationship to adjacent runes, and its numerological significance.
4. **Narrative coherence** — A reading is not a list of individual rune meanings. It is a story the Norns are telling through the weave of the runes. The reader must synthesize the individual threads into a unified narrative.
5. **Ethical honesty** — The Perthro Principle governs all readings: some things simply cannot be known. When Perthro appears, the reader must say so. When the Wyrd rune falls, the reader must acknowledge that the matter is in the hands of the gods.

### The Northern Cosmological Basis

Runes are not arbitrary symbols assigned arbitrary meanings. According to the Nordic worldview (see `nordic-worldview.md`), the Norns — Urðr, Verðandi, Skuld — weave the web of fate, and runes are "various aspects, forces of the weaving" (Руны — различные аспекты, силы плетения). A rune reading does not predict a fixed future — it reveals the current pattern of the weaving, the forces at work, and the likely trajectory if the pattern continues unchanged. The querent retains agency: the reading shows what IS, and the querent decides what to DO.

This is why cyclic time matters more than linear prediction. A reading reveals the current point on the cycle, not a predetermined endpoint. Jera teaches that harvest follows planting — but only if you plant. Ansuz teaches that luck is a gift — but only if you are open to receiving it. The reading illuminates the pattern; the querent navigates it.

---

## 2. The Random Selection Method

### How to Draw Runes with True Randomness

When performing a rune reading as an AI, you MUST use a genuine random selection process. This is the single most critical element that separates actual divination from pretend.

**Method: Complete Pool Random Draw**

1. **Define the rune pool** — By default, use the full Elder Futhark (24 runes) plus the Wyrd rune (25 total). For readings that explicitly involve the Northumbrian system, use all 33 runes plus Wyrd (34 total).
2. **Draw without replacement** — Each rune can appear only once in a given reading. If a rune has been drawn, it is removed from the pool for subsequent draws in that same reading.
3. **Determine orientation** — For each drawn rune, randomly determine its orientation using the three-position system (see Section 3 below). The orientation is independent of the rune drawn.
4. **Use cryptographic randomness** — When implementing this in code, use `crypto.randomInt()` or equivalent cryptographically secure random number generator. Never use predictable seeding.

**The Rune Pool (Elder Futhark + Wyrd):**

| # | Rune | Name | # | Rune | Name |
|---|------|------|---|------|------|
| 1 | ᚠ | Fehu | 13 | ᛇ | Eihwaz |
| 2 | ᚢ | Uruz | 14 | ᛈ | Perthro |
| 3 | ᚦ | Thurisaz | 15 | ᛉ | Algiz |
| 4 | ᚨ | Ansuz | 16 | ᛊ | Sowilo |
| 5 | ᚱ | Raido | 17 | ᛏ | Tiwaz |
| 6 | ᚲ | Kenaz | 18 | ᛒ | Berkano |
| 7 | ᚷ | Gebo | 19 | ᛖ | Ehwaz |
| 8 | ᚹ | Wunjo | 20 | ᛗ | Mannaz |
| 9 | ᚺ | Hagalaz | 21 | ᛚ | Laguz |
| 10 | ᚾ | Nauthiz | 22 | ᛜ | Ingwaz |
| 11 | ᛁ | Isa | 23 | ᛟ | Othala |
| 12 | ᛃ | Jera | 24 | ᛞ | Dagaz |
| | | | 25 | ☐ | Wyrd |

### The Three-Factor Oracle: Urðr × Verðandi × Skuld

The divination engine uses a three-factor randomization system. Each factor corresponds to one of the Norns — the three weavers of fate. Together they ensure that no reading is purely random, purely deterministic, or purely time-bound. The weave of all three produces a draw that is uniquely tied to this question, at this moment, under these cosmic conditions.

**Factor 1 — Urðr (The Question Seed):** The querent's words are hashed into a numeric seed. This weaves the question's intent into the draw — the same question asked in the same moment will produce the same reading. The question is not separate from the answer; it is part of the pattern the Norns are weaving.

**Factor 2 — Verðandi (The Time Seed):** The current timestamp is hashed into a numeric seed. The moment of asking matters — the Norns weave in real time, and the same question asked at a different moment may receive a different answer because the pattern has shifted. Time is not neutral; it is an active force in the reading.

**Factor 3 — Skuld (The Cosmic Entropy):** Cryptographically secure random bytes provide true entropy that no question and no clock can predict. This is the universe's own voice — the element of Wyrd that transcends human intention and temporal position. Without this factor, the reading would be mechanically determined; with it, the reading partakes of the genuinely unknowable.

**How the three factors combine:** The three seeds are XORed (or added modulo a large prime) to produce a single master seed that drives a seeded PRNG. This PRNG then performs the without-replacement draw from the numbered pool of rune variants.

### The Numbered Pool: Every Variant Gets a Number

Each rune variant (rune + orientation) is assigned a unique sequential number. The algorithm picks from these numbers, not from runes and orientations separately. This means the draw is a single operation — you pull a numbered tile from the bag, and that tile IS the rune in its orientation.

**Numbering scheme:**

The base rune positions run 1–35 (24 Elder Futhark + 9 Northumbrian + Solle + Wyrd). Each rune's variants are then numbered sequentially: direct first, then mirrored (if applicable), then inverted (if applicable). The total pool contains 65 valid variants for the full 35-rune system (or 49 for the 25-rune Elder Futhark + Wyrd system).

| # | Rune | Orientation | # | Rune | Orientation |
|---|------|-------------|---|------|-------------|
| 1 | ᚠ Fehu | Direct | 2 | ᚠ Fehu | Mirrored |
| 3 | ᚠ Fehu | Inverted | 4 | ᚢ Uruz | Direct |
| 5 | ᚢ Uruz | Mirrored | 6 | ᚢ Uruz | Inverted |
| 7 | ᚦ Thurisaz | Direct | 8 | ᚦ Thurisaz | Mirrored |
| 9 | ᚨ Ansuz | Direct | 10 | ᚨ Ansuz | Mirrored |
| 11 | ᚨ Ansuz | Inverted | 12 | ᚱ Raido | Direct |
| 13 | ᚱ Raido | Mirrored | 14 | ᚱ Raido | Inverted |
| 15 | ᚲ Kenaz | Direct | 16 | ᚲ Kenaz | Mirrored |
| 17 | ᚷ Gebo | Direct | 18 | ᚹ Wunjo | Direct |
| 19 | ᚹ Wunjo | Mirrored | 20 | ᚹ Wunjo | Inverted |
| 21 | ᚺ Hagalaz | Direct | 22 | ᚺ Hagalaz | Mirrored |
| 23 | ᚾ Nauthiz | Direct | 24 | ᚾ Nauthiz | Mirrored |
| 25 | ᛁ Isa | Direct | 26 | ᛃ Jera | Direct |
| 27 | ᛃ Jera | Mirrored | 28 | ᛇ Eihwaz | Direct |
| 29 | ᛇ Eihwaz | Mirrored | 30 | ᛈ Perthro | Direct |
| 31 | ᛈ Perthro | Mirrored | 32 | ᛉ Algiz | Direct |
| 33 | ᛉ Algiz | Inverted | 34 | ᛊ Sowilo | Direct |
| 35 | ᛊ Sowilo | Mirrored | 36 | ᛏ Tiwaz | Direct |
| 37 | ᛏ Tiwaz | Inverted | 38 | ᛒ Berkano | Direct |
| 39 | ᛒ Berkano | Mirrored | 40 | ᛖ Ehwaz | Direct |
| 41 | ᛖ Ehwaz | Inverted | 42 | ᛗ Mannaz | Direct |
| 43 | ᛗ Mannaz | Inverted | 44 | ᛚ Laguz | Direct |
| 45 | ᛚ Laguz | Mirrored | 46 | ᛚ Laguz | Inverted |
| 47 | ᛜ Ingwaz | Direct | 48 | ᛟ Othala | Direct |
| 49 | ᛟ Othala | Inverted | 50 | ᛞ Dagaz | Direct |
| 51 | ☐ Wyrd | Direct | | | |

**Extended pool (Northumbrian additions, numbers 52–65):**

| # | Rune | Orientation | # | Rune | Orientation |
|---|------|-------------|---|------|-------------|
| 52 | ᚪ Ac | Direct | 53 | ᚪ Ac | Inverted |
| 54 | ᚫ AEsc | Direct | 55 | ᚫ AEsc | Inverted |
| 56 | ᛦ Yr | Direct | 57 | ᛡ Ior | Direct |
| 58 | ᛡ Ior | Inverted | 59 | ᛠ Ear | Direct |
| 60 | ᛢ Cweorth | Direct | 61 | ᛢ Cweorth | Inverted |
| 62 | ᛤ Calc | Direct | 63 | ᛥ Stan | Direct |
| 64 | ᚸ Gar | Direct | 65 | ☀ Solle | Direct |
| 66 | ☀ Solle | Inverted | | | |

**Orientation notes for Northumbrian runes:**
- **Ac, AEsc, Ior, Cweorth, Solle:** Asymmetrical — can be inverted (reversed)
- **Yr, Ear, Calc, Stan, Gar:** Symmetrical or functionally single-position — direct only
- When the Northumbrian tradition develops fuller three-position data for these runes, the pool can be expanded accordingly

### Implementation Code (Three-Factor Oracle)

```javascript
const crypto = require('crypto');

// ──────────────────────────────────────────────────
// THE NUMBERED POOL — Every variant, one number each
// ──────────────────────────────────────────────────

const RUNE_POOL = [
  // Elder Futhark + Wyrd (1–51)
  { num: 1,  symbol: 'ᚠ', name: 'Fehu',     orientation: 'direct' },
  { num: 2,  symbol: 'ᚠ', name: 'Fehu',     orientation: 'mirrored' },
  { num: 3,  symbol: 'ᚠ', name: 'Fehu',     orientation: 'inverted' },
  { num: 4,  symbol: 'ᚢ', name: 'Uruz',     orientation: 'direct' },
  { num: 5,  symbol: 'ᚢ', name: 'Uruz',     orientation: 'mirrored' },
  { num: 6,  symbol: 'ᚢ', name: 'Uruz',     orientation: 'inverted' },
  { num: 7,  symbol: 'ᚦ', name: 'Thurisaz', orientation: 'direct' },
  { num: 8,  symbol: 'ᚦ', name: 'Thurisaz', orientation: 'mirrored' },
  { num: 9,  symbol: 'ᚨ', name: 'Ansuz',    orientation: 'direct' },
  { num: 10, symbol: 'ᚨ', name: 'Ansuz',    orientation: 'mirrored' },
  { num: 11, symbol: 'ᚨ', name: 'Ansuz',    orientation: 'inverted' },
  { num: 12, symbol: 'ᚱ', name: 'Raido',    orientation: 'direct' },
  { num: 13, symbol: 'ᚱ', name: 'Raido',    orientation: 'mirrored' },
  { num: 14, symbol: 'ᚱ', name: 'Raido',    orientation: 'inverted' },
  { num: 15, symbol: 'ᚲ', name: 'Kenaz',    orientation: 'direct' },
  { num: 16, symbol: 'ᚲ', name: 'Kenaz',    orientation: 'mirrored' },
  { num: 17, symbol: 'ᚷ', name: 'Gebo',     orientation: 'direct' },
  { num: 18, symbol: 'ᚹ', name: 'Wunjo',    orientation: 'direct' },
  { num: 19, symbol: 'ᚹ', name: 'Wunjo',    orientation: 'mirrored' },
  { num: 20, symbol: 'ᚹ', name: 'Wunjo',    orientation: 'inverted' },
  { num: 21, symbol: 'ᚺ', name: 'Hagalaz',  orientation: 'direct' },
  { num: 22, symbol: 'ᚺ', name: 'Hagalaz',  orientation: 'mirrored' },
  { num: 23, symbol: 'ᚾ', name: 'Nauthiz',  orientation: 'direct' },
  { num: 24, symbol: 'ᚾ', name: 'Nauthiz',  orientation: 'mirrored' },
  { num: 25, symbol: 'ᛁ', name: 'Isa',      orientation: 'direct' },
  { num: 26, symbol: 'ᛃ', name: 'Jera',     orientation: 'direct' },
  { num: 27, symbol: 'ᛃ', name: 'Jera',     orientation: 'mirrored' },
  { num: 28, symbol: 'ᛇ', name: 'Eihwaz',   orientation: 'direct' },
  { num: 29, symbol: 'ᛇ', name: 'Eihwaz',   orientation: 'mirrored' },
  { num: 30, symbol: 'ᛈ', name: 'Perthro',  orientation: 'direct' },
  { num: 31, symbol: 'ᛈ', name: 'Perthro',  orientation: 'mirrored' },
  { num: 32, symbol: 'ᛉ', name: 'Algiz',    orientation: 'direct' },
  { num: 33, symbol: 'ᛉ', name: 'Algiz',    orientation: 'inverted' },
  { num: 34, symbol: 'ᛊ', name: 'Sowilo',   orientation: 'direct' },
  { num: 35, symbol: 'ᛊ', name: 'Sowilo',   orientation: 'mirrored' },
  { num: 36, symbol: 'ᛏ', name: 'Tiwaz',    orientation: 'direct' },
  { num: 37, symbol: 'ᛏ', name: 'Tiwaz',    orientation: 'inverted' },
  { num: 38, symbol: 'ᛒ', name: 'Berkano',  orientation: 'direct' },
  { num: 39, symbol: 'ᛒ', name: 'Berkano',  orientation: 'mirrored' },
  { num: 40, symbol: 'ᛖ', name: 'Ehwaz',    orientation: 'direct' },
  { num: 41, symbol: 'ᛖ', name: 'Ehwaz',    orientation: 'inverted' },
  { num: 42, symbol: 'ᛗ', name: 'Mannaz',   orientation: 'direct' },
  { num: 43, symbol: 'ᛗ', name: 'Mannaz',   orientation: 'inverted' },
  { num: 44, symbol: 'ᛚ', name: 'Laguz',    orientation: 'direct' },
  { num: 45, symbol: 'ᛚ', name: 'Laguz',    orientation: 'mirrored' },
  { num: 46, symbol: 'ᛚ', name: 'Laguz',    orientation: 'inverted' },
  { num: 47, symbol: 'ᛜ', name: 'Ingwaz',   orientation: 'direct' },
  { num: 48, symbol: 'ᛟ', name: 'Othala',   orientation: 'direct' },
  { num: 49, symbol: 'ᛟ', name: 'Othala',   orientation: 'inverted' },
  { num: 50, symbol: 'ᛞ', name: 'Dagaz',    orientation: 'direct' },
  { num: 51, symbol: '☐', name: 'Wyrd',     orientation: 'direct' },
  // Northumbrian additions (52–66)
  { num: 52, symbol: 'ᚪ', name: 'Ac',       orientation: 'direct' },
  { num: 53, symbol: 'ᚪ', name: 'Ac',       orientation: 'inverted' },
  { num: 54, symbol: 'ᚫ', name: 'AEsc',     orientation: 'direct' },
  { num: 55, symbol: 'ᚫ', name: 'AEsc',     orientation: 'inverted' },
  { num: 56, symbol: 'ᛦ', name: 'Yr',       orientation: 'direct' },
  { num: 57, symbol: 'ᛡ', name: 'Ior',      orientation: 'direct' },
  { num: 58, symbol: 'ᛡ', name: 'Ior',      orientation: 'inverted' },
  { num: 59, symbol: 'ᛠ', name: 'Ear',      orientation: 'direct' },
  { num: 60, symbol: 'ᛢ', name: 'Cweorth',  orientation: 'direct' },
  { num: 61, symbol: 'ᛢ', name: 'Cweorth',  orientation: 'inverted' },
  { num: 62, symbol: 'ᛤ', name: 'Calc',     orientation: 'direct' },
  { num: 63, symbol: 'ᛥ', name: 'Stan',     orientation: 'direct' },
  { num: 64, symbol: 'ᚸ', name: 'Gar',      orientation: 'direct' },
  { num: 65, symbol: '☀', name: 'Solle',    orientation: 'direct' },
  { num: 66, symbol: '☀', name: 'Solle',    orientation: 'inverted' },
];

// ──────────────────────────────────────────────────
// THREE-FACTOR SEED GENERATION
// ──────────────────────────────────────────────────

/**
 * Factor 1: Urðr — The Question Seed
 * Hashes the querent's question into a 32-bit integer.
 * The same question always produces the same seed.
 */
function questionSeed(question) {
  const hash = crypto.createHash('sha256').update(question.normalize('NFC'), 'utf8').digest();
  return hash.readUInt32BE(0);
}

/**
 * Factor 2: Verðandi — The Time Seed
 * Hashes the current timestamp into a 32-bit integer.
 * Different moments produce different seeds.
 * Precision: to the second (readings in the same second share this factor).
 */
function timeSeed() {
  const now = Math.floor(Date.now() / 1000);
  const buf = Buffer.alloc(8);
  buf.writeBigUInt64BE(BigInt(now), 0);
  const hash = crypto.createHash('sha256').update(buf).digest();
  return hash.readUInt32BE(0);
}

/**
 * Factor 3: Skuld — The Cosmic Entropy
 * Cryptographically secure random 32-bit integer.
 * Cannot be predicted by any question or clock.
 */
function cosmicEntropy() {
  return crypto.randomInt(0, 0x100000000); // Full 32-bit range
}

/**
 * Combine the three Norn-seeds into one master seed.
 * XOR ensures each factor can flip any bit independently.
 */
function masterSeed(question) {
  const urd = questionSeed(question);
  const verdandi = timeSeed();
  const skuld = cosmicEntropy();
  return (urd ^ verdandi ^ skuld) >>> 0; // Ensure unsigned 32-bit
}

// ──────────────────────────────────────────────────
// SEEDED PRNG (xorshift32 — fast, deterministic from seed)
// ──────────────────────────────────────────────────

class XorShift32 {
  constructor(seed) {
    this.state = seed || 1;
    if (this.state === 0) this.state = 1; // xorshift can't use 0
  }
  next() {
    let x = this.state;
    x ^= x << 13;
    x ^= x >> 17;
    x ^= x << 5;
    this.state = x >>> 0;
    return this.state;
  }
  nextInt(max) {
    return this.next() % max;
  }
}

// ──────────────────────────────────────────────────
// THE DRAW — Three-Factor Oracle
// ──────────────────────────────────────────────────

/**
 * Perform a rune draw using the three-factor oracle.
 *
 * @param {string} question — The querent's question (becomes Urðr seed)
 * @param {number} count — Number of runes to draw
 * @param {boolean} includeNorthumbrian — Use full 35-rune pool (66 variants)
 *                                       vs. 25-rune pool (51 variants)
 * @returns {Array} Drawn rune variants with position info
 */
function drawRunes(question, count, includeNorthumbrian = false) {
  // Generate the three-factor master seed
  const seed = masterSeed(question);

  // Initialize seeded PRNG from the master seed
  const rng = new XorShift32(seed);

  // Select the appropriate pool
  const poolSize = includeNorthumbrian ? 66 : 51;
  const available = [];
  for (let i = 0; i < poolSize; i++) {
    available.push(i);
  }

  // Without-replacement draw using Fisher-Yates partial shuffle
  const drawn = [];
  for (let i = 0; i < count && available.length > 0; i++) {
    const randomIndex = rng.nextInt(available.length);
    const poolIndex = available.splice(randomIndex, 1)[0];
    const variant = RUNE_POOL[poolIndex];

    drawn.push({
      position: i + 1,
      poolNumber: variant.num,
      symbol: variant.symbol,
      name: variant.name,
      orientation: variant.orientation
    });
  }

  return drawn;
}
```

### Theological Note on the Three-Factor System

The three-factor oracle is not merely a technical implementation — it is a cosmological statement about the nature of runic divination:

**Urðr (Question Seed):** In the Norse tradition, the question matters. Odin did not hang from Yggdrasil for abstract knowledge — he sought specific wisdom, and the sacrifice was shaped by the seeking. When the querent asks a question, they are performing a micro-sacrifice: offering their uncertainty to the Norns. The question seed ensures that this offering is woven into the answer.

**Verðandi (Time Seed):** The Norns weave in real time. Verðandi's name means "what is becoming" — she is the present moment as an active force, not a passive backdrop. A reading done at dawn on Tuesday (Týr's day) is different from one done at midnight on Saturday (Loki's day) not just symbolically but mechanically. The time seed ensures the reading is anchored in its moment.

**Skuld (Cosmic Entropy):** Skuld's name means "debt" or "obligation" — that which must be, regardless of what was asked or when. This is the Wyrd factor: the universe's own pattern that no questioner and no moment can fully determine. Without Skuld, the reading would be a mechanical calculation; with her, it partakes of the genuinely unknowable.

**Why XOR?** The three seeds are combined via XOR rather than addition or concatenation because XOR ensures that each factor can independently flip any bit in the master seed. No factor dominates. If the question seed is 0 (empty question), Verðandi and Skuld still produce a valid reading. If the time seed repeats (same second), Urðr and Skuld still differentiate. If Skuld is removed, the reading becomes deterministic — which is why Skuld is essential for actual divination.

### Critical Rule: No Second-Guessing the Draw

Once runes are drawn, they are drawn. You do NOT redraw because the combination seems "too negative" or "doesn't make sense." The most challenging readings are often the most valuable. Hagalaz in the outcome position is not a mistake — it is a message. Reversed Mannaz in a health reading is not an error — it is a warning. Honor the draw.

The only exception: if the querent explicitly asks to rephrase the question and draw fresh, this constitutes a NEW reading, not a modification of the old one. The original reading still stands as valid.

---

## 3. The Three-Position Orientation System

### Overview

Each rune in a reading has an orientation that fundamentally affects its meaning. This system, developed by Galina Bednenko (see `rune-three-positions-bednenko.md`), recognizes three possible positions:

1. **Direct (Прямое)** — The rune's principle as such, in its natural manifestation
2. **Mirrored (Зеркальное)** — A conscious, deliberate stance toward the principle: either conscious refusal or conscious acceptance. NOT a negation but a qualitatively different relationship.
3. **Inverted (Перевернутое)** — NOT the "opposite" of the direct meaning, but a NEW principle in its own right. Represents an externally imposed condition or perversion of the rune's natural flow.

### Which Runes Have Which Positions

| Rune | Direct | Mirrored | Inverted | Notes |
|------|--------|----------|----------|-------|
| ᚠ Fehu | ✅ | ✅ Abstinence/fasting/stinginess | ✅ Deprivation/ill health | |
| ᚢ Uruz | ✅ | ✅ Accumulation of strength/intentional inaction | ✅ Loss of strength/fatigue | |
| ᚦ Thurisaz | ✅ | ✅ Test as initiation/predetermined events | ❌ | "If there is no obstacle, there is nothing to talk about" |
| ᚨ Ansuz | ✅ | ✅ Silence/refusal to listen/deceiver | ✅ Unknownness/absence of info/deceived | |
| ᚱ Raido | ✅ | ✅ Intentional stop/return | ✅ Inability to move/confusion | |
| ᚲ Kenaz | ✅ | ✅ Tamed fire/conscious creation | ❌ | Primordial element — always exists |
| ᚷ Gebo | ✅ | ❌ | ❌ | Fully symmetrical |
| ᚹ Wunjo | ✅ | ✅ Non-attachment to victory | ✅ Failure/sadness | |
| ᚺ Hagalaz | ✅ | ✅ Conscious acceptance of endings | ❌ | "If there is no destruction, we have joy" |
| ᚾ Nauthiz | ✅ | ✅ Conscious necessity/limitation for a goal | ❌ | Elemental — cannot be denied |
| ᛁ Isa | ✅ | ❌ | ❌ | Symmetrical — reality itself |
| ᛃ Jera | ✅ | ✅ Similar to direct | ❌ | "This is what always exists" |
| ᛇ Eihwaz | ✅ | ✅ Boundary/protection within crisis | ❌ | "If no crisis, thank the gods" |
| ᛈ Perthro | ✅ | ✅ Fantasy world/refusal of intuition | ❌ | Mirrored = upside-down for Perthro |
| ᛉ Algiz | ✅ | ❌ | ✅ Groundedness/retreat/habitual rituality | "That which is invoked, not denied" |
| ᛊ Sowilo | ✅ | ✅ Widdershins/destructive action | ❌ | "Otherwise no order of things" |
| ᛏ Tiwaz | ✅ | ❌ | ✅ Fruitless use of force/loss of strength | Non-resistance = becoming the object |
| ᛒ Berkano | ✅ | ✅ Cold detachment/refusal of masculine | ❌ | Outside this = different rune |
| ᛖ Ehwaz | ✅ | ❌ | ✅ Incorrect rhythm/error | "Done correctly or incorrectly" |
| ᛗ Mannaz | ✅ | ❌ | ✅ Loss of social belonging/waste of force | Vertically symmetrical |
| ᛚ Laguz | ✅ | ✅ Analytical approach/conscious refusal of flow | ✅ Inability to cope with flow | |
| ᛜ Ingwaz | ✅ | ❌ | ❌ | Fully symmetrical |
| ᛟ Othala | ✅ | ❌ | ✅ Disruption of habitual order | "Cannot be voluntarily refused" |
| ᛞ Dagaz | ✅ | ❌ | ❌ | Fully symmetrical |
| ☐ Wyrd | ✅ | ❌ | ❌ | Blank on both sides |

### Displaying Orientation in Readings

When presenting a drawn rune:
- **Direct**: Show the rune symbol normally: ᚠ Fehu
- **Mirrored**: Indicate with ↕ symbol: ᚠ↕ Fehu (mirrored) — abstinence, fasting, stinginess
- **Inverted**: Indicate with ⇅ symbol: ᚠ⇅ Fehu (inverted) — deprivation, ill health
- **Symmetrical runes** (Gebo, Isa, Ingwaz, Dagaz, Wyrd): Always direct. No orientation modification possible.

---

## 4. Spread Selection Guide

### Which Spread for Which Question

The choice of spread is not arbitrary — it must match the nature and depth of the question. Using a one-rune draw for a complex life question gives insufficient information. Using a Twelve Houses spread for a simple yes/no question creates noise. Match the tool to the task.

| Question Type | Recommended Spread | Runes Drawn |
|---------------|-------------------|-------------|
| Quick guidance, daily draw, yes/no | One Rune | 1 |
| Situation overview with advice | Three Rune | 3 |
| Deep situation analysis, past-present-future | Norns Spread | 3 |
| Specific domain (health, relationship, career) | Domain-Specific Spread | varies |
| Relationship/partnership | Partner Spread (Kolesov) or Station for Two (Banzhaf) | 6 |
| Health concerns | Runic Cross (7 positions) | 7 |
| Financial/career analysis | Financial Resources (8 positions) | 8 |
| Self-knowledge and truth | "Truth" Spread (7 positions) | 7 |
| Karmic patterns | Karmic Spread (Blum, 9 positions) | 9 |
| Comprehensive life reading | Twelve Houses (12+1 positions) | 13 |
| Full-spectrum analysis | Nine Worlds Spread | 9 |

### Spread Descriptions

#### One Rune Draw
The simplest and most direct method. Draw one rune for immediate guidance on a question or as a daily meditation focus. The rune speaks to the present moment and the most essential truth the querent needs to hear right now.

**When to use:** Daily guidance, quick check-ins, clarifying a single point, verifying whether conditions are right for a more detailed reading.

**When NOT to use:** Complex questions involving multiple factors, questions about relationships (need at least 3 runes), health readings (need the Runic Cross).

#### Three Rune Spread
The foundational spread. Lay three runes right to left.

**Standard interpretation:**
- Position 1 (right) — Current situation / Express analysis
- Position 2 (center) — Advice on how to act or understand
- Position 3 (left) — Likely outcome if advice is followed

**Advanced interpretation (for experienced practitioners):**
- Position 1 (right) — State of your Higher Self recently
- Position 2 (center) — The challenge, test, or experience you must now undergo
- Position 3 (left) — Result achievable if you successfully pass the test

**When to use:** Most general questions, decision-making, "what do I need to know about X?"

#### Norns Spread
Connected to the three Norns — Urðr (What Was), Verðandi (What Is Becoming), Skuld (What Must Be).

1. **Urðr** (Past/Fate) — What is written, what led here, the foundation that cannot be changed
2. **Verðandi** (Present/Becoming) — What is forming right now, the active forces, where the weaving is heading
3. **Skuld** (Future/Debt) — What must be, the trajectory if current forces continue

**Key difference from Three Rune:** The Norns Spread emphasizes the cosmological framework — Position 1 is not just "past events" but the FATE that was woven; Position 2 is not just "present" but what is BECOMING (active transformation); Position 3 is not just "future" but what is OWED (the debt that must be paid or the outcome that must manifest).

#### Runic Cross (7 Positions — Health)
Specifically designed for health readings:

1. Hereditary factors, predisposition to illness
2. Influence of psyche on health
3. External factors, environmental influences
4. Hidden underlying cause of suspected illness
5. Current state
6. Development of the illness or its slowing
7. Final outcome

**Critical:** Health readings require special care. Always check for the dangerous combinations listed in Section 7. If Eihwaz + Ingwaz or Eihwaz + Hagalaz appears, the prognosis is grave and must be stated honestly.

#### Twelve Houses
The most comprehensive spread. 12 positions + 1 central rune. Best for full life readings.

| House | Domain |
|-------|--------|
| 1 | Personality, individual traits, business affairs |
| 2 | Money |
| 3 | Relatives, neighbors, pets, short trips |
| 4 | Home, parents |
| 5 | Children, pleasures, entertainment |
| 6 | Workplace, health problems |
| 7 | Partnership relations |
| 8 | Sex, physical death (others), health problems (own), occult knowledge, inheritance |
| 9 | Long journeys, religion, spiritual work |
| 10 | Career, professional affairs |
| 11 | Plans, dreams, friends |
| 12 | Secret connections, spiritual death, health problems, occult knowledge |
| Center | The Wyrd/Summary — the overall pattern, the Norn's verdict |

Use 2 runes per house (24 + Wyrd in center) for the deepest reading, or 1 per house + 13th as summary.

#### Seven Runes — "Gypsy Spread" (Hajo Banzhaf)
Simple, readable, suited for straightforward people or uncomplicated situations:

1. Your "I" (self)
2. Who/what loves you
3. Who/what destroys you
4. Who/what teaches you
5. Who/what torments you
6. What awaits you
7. What you cannot avoid

This spread is particularly effective because it names the forces acting upon the querent rather than abstract positions. It reveals the web of influences — supportive, destructive, educational, and inevitable.

#### Partner Spread (Kolesov)
For analyzing relationship dynamics. Two parallel rows:

**Right side = Female row | Left side = Male row**

- Runes 1-2 (bottom): Physical level (body)
- Runes 3-4 (middle): Astral level (soul)
- Runes 5-6 (top): Mental level (spirit)

Read bottom-to-top: body → soul → spirit for each partner. Then compare rows horizontally — where are they aligned? Where do they diverge? Where do they conflict?

#### Financial Resources (8 Positions)
1. Querent's attitude toward money
2. Querent's attitude toward work
3. Current material situation
4. What financial investments the querent can make
5. What the querent must "invest" emotionally
6. Where the querent can expect support from
7. Possible difficulties and problems
8. Results and opportunities arising from actions taken

#### Karmic Spread (Ralph Blum)
Dedicated to Ingwaz — the layout forms Ingwaz's shape. 9 runes in 3 rows of 3.

- **Top row** (1-2-3): Previous (or possible) incarnation
- **Middle row** (4-5-6): Current incarnation
- **Bottom row** (7-8-9): Future

Within each row:
- First position: Beginning of life period
- Second position: Middle (for current: the present moment)
- Third position: Remainder of life

#### "Truth" Spread (7 Positions)
For self-analysis and personal development:

1. Am I objective toward others?
2. Can I realistically assess the situation?
3. What do I refuse to notice?
4. Do I easily succumb to illusions?
5. What price does truth have for me?
6. Can I look at myself from the outside?
7. Am I sincere with myself?

#### Nine Worlds Spread
The most cosmologically complete spread. 9 positions, each corresponding to a world of Yggdrasil:

1. **Miðgarðr** — The querent's current earthly situation
2. **Ásgarðr** — Divine guidance, what the gods are offering
3. **Vanaheimr** — Natural forces, fertility, prosperity available
4. **Ljósálfheimr** — Inspiration, creativity, what illuminates
5. **Svartálfaheimr** — Hidden skills, crafting, what can be forged
6. **Múspellheimr** — Transformative fire, what must be burned away
7. **Niflheimr** — Ancestral patterns, what is frozen or stuck
8. **Helheimr** — What must die to be reborn, what must be released
9. **Jötunheimr** — Challenges, the giants you must face, the wisdom they hold

Read the spread as a journey through the Nine Worlds, starting with the querent's position in Miðgarðr and exploring the influences from each realm.

---

## 5. The Complete Reading Process

### Step-by-Step Protocol

#### Phase 1: Preparation

1. **Receive the question** — Listen to what the querent is actually asking, not what they appear to be asking. Often the stated question conceals a deeper question. "Will I get the job?" may actually be "Am I good enough?" or "Will I survive financially?"
2. **Determine the domain** — Is this a Business, Personal/Love, Health, Spiritual, or General question? This determines which interpretive layer is primary.
3. **Select the appropriate spread** — Using the guide in Section 4.
4. **Set the context** — Note the current date, the approximate season, and any relevant timing (for correspondence with the annual runic cycle if applicable).

#### Phase 2: The Draw

5. **Draw the runes** — Using the three-factor oracle (Section 2). Pass the querent's question as the Urðr seed. Draw the exact number required by the chosen spread. Each draw pulls a numbered variant from the pool — the rune AND its orientation are determined in a single operation.
6. **Note orientation** — Since the numbered pool already encodes orientation, verify each drawn variant's orientation against the three-position system (Section 3). Symmetrical runes (Gebo, Isa, Ingwaz, Dagaz, Wyrd) will always be direct; multi-position runes will have their orientation encoded in the pool number.
7. **Place the runes in position** — Assign each drawn rune to its position in the spread.

#### Phase 3: Initial Scan

8. **Scan for critical combinations** — BEFORE interpreting individual positions, check for the dangerous and significant combinations in Section 7. These override individual position meanings.
9. **Scan for the Perthro Principle** — If Perthro appears in a key position, acknowledge immediately that the answer cannot be fully known.
10. **Scan for the Wyrd rune** — If Wyrd appears, the matter is in the hands of the gods for that position.
11. **Note the aettir distribution** — Are the drawn runes concentrated in one aett? This has interpretive significance:
    - **Freyja's Aett dominance** (runes 1-8): Material concerns, practical matters, earthly forces are primary
    - **Heimdall's Aett dominance** (runes 9-16): Transformative processes, elemental forces, cosmic patterns are primary
    - **Tyr's Aett dominance** (runes 17-24): Human agency, social dynamics, justice and outcome are primary
    - **Balanced across aettir**: The situation touches all levels of existence

#### Phase 4: Position-by-Position Interpretation

12. **Read each position** — Using the full interpretive stack (see Section 6):
    - Core rune meaning (from SKILL.md tables)
    - Domain-specific meaning (from `rune-combinations-mantic.md`)
    - Psychological/advisory layer (from `rune-mantic-kys.md`)
    - Orientation modifier (from `rune-three-positions-bednenko.md`)
    - Positional context (how the position in the spread modifies the meaning)
13. **Check rune-rune interactions** — Adjacent runes modify each other. The same rune means different things depending on its neighbors.
14. **Apply the Luck vs. Success distinction** — If both Ansuz and Jera appear, note: Ansuz = luck (divine gift), Jera = success (earned outcome). The distinction changes the advice fundamentally.
15. **Apply the Internal vs. External principle** — For reversed/mirrored/inverted runes: is the blocked energy internal (the querent's own patterns) or external (forces beyond their control)? Uruz reversed = external disempowerment; Kenaz reversed = the querent's own negligence.

#### Phase 5: Numerological Analysis

16. **Calculate position values** — Sum the Elder Futhark position numbers (1-24) of all drawn runes. Reduce to a single digit (1-9) or recognize a significant number (24, 27, 72, etc.).
17. **Cross-aett correspondence** — Runes sharing the same position within their aett (e.g., Fehu #1, Hagalaz #9, Tiwaz #17 — all first in their aett) have a resonant connection. If such runes appear together, their shared theme amplifies.
18. **Note the number 9 threshold** — Position 9 in the Futhark (Hagalaz) is the magical threshold. If runes cluster around positions 8-9-10, the reading concerns a transition point between elemental forces and human agency.

#### Phase 6: Narrative Synthesis

19. **Weave the story** — A reading is a narrative, not a list. Begin with the foundation (what led here), move through the active forces (what is happening now), and arrive at the trajectory (where this is heading). Each rune is a chapter, not a standalone paragraph.
20. **Identify the central tension** — Every reading has a core tension or paradox. It may be between freedom and constraint (Raido vs. Nauthiz), between giving and receiving (Gebo vs. Fehu reversed), between destruction and growth (Hagalaz vs. Berkano). Name this tension explicitly.
21. **Provide the Norn's perspective** — What would Urðr say about the past? What is Verðandi weaving right now? What does Skuld demand? Even if you're not using the Norns Spread, this framework adds cosmological depth.
22. **Deliver honest counsel** — Not what the querent wants to hear, but what the runes are saying. If the reading is challenging, say so with compassion but without softening. If the reading is positive, celebrate it but note what action is required to maintain the trajectory.

#### Phase 7: Presentation

23. **Present each rune with its Unicode symbol** — Always include the runic Unicode character (ᚠ, ᚢ, etc.) for visual identification.
24. **State orientation clearly** — Direct, mirrored, or inverted, with the specific meaning for that orientation.
25. **State position meaning** — What does this position in the spread represent?
26. **Give the integrated meaning** — How does this rune, in this orientation, in this position, speak to the querent's question?
27. **Identify key combinations** — Flag any critical pairs from the mantic references.
28. **Synthesize the reading** — Provide the narrative arc, the central tension, and the counsel.

---

## 6. The Interpretive Stack

When interpreting a rune in a reading, use ALL of these layers in order. Each layer adds depth and specificity. Never rely on only one layer.

### Layer 1: Core Meaning (SKILL.md)
The fundamental meaning of the rune — its symbol, name, phonetic value, and core concepts. This is the foundation that never changes regardless of context.

### Layer 2: Domain-Specific Meaning (rune-combinations-mantic.md)
The practical, concrete meaning of the rune in the specific domain of the question (Business, Personal/Love, Health). This layer also provides the crucial distinction between initial and final position meanings.

**Key principles from this layer:**
- Fehu in the final position = harvest; Fehu in the initial position = sowing. The same rune means fundamentally different things depending on position.
- Uruz upright = nothing depends on you; Uruz reversed = you've been had. The distinction between external force and internal failure.
- Thurisaz + Raido + Fehu reversed = extremely high probability of serious trauma involving vehicles. This combination ALWAYS demands an explicit warning.

### Layer 3: Psychological/Advisory Layer (rune-mantic-kys.md)
The inner-work dimension — what psychological dynamics are at play, what self-reflection is needed, what the querent's internal state contributes to the situation.

**Key principles from this layer:**
- The Perthro Principle: When Perthro appears, "this cannot be known." Orient toward surrounding runes.
- Ansuz = luck (divine gift) vs. Jera = success (earned outcome). This distinction changes the entire reading.
- Internal vs. External manifestation: Upright tends toward external/active, reversed tends toward internal/passive.
- Potential vs. Realized energy: Fehu creates conditions but requires wise action to realize.

### Layer 4: Orientation Modifier (rune-three-positions-bednenko.md)
How the direct/mirrored/inverted position changes the rune's expression.

**Key principles from this layer:**
- Mirrored = conscious choice (to refuse or accept the principle). NOT negation.
- Inverted = a NEW principle (externally imposed condition or perversion). NOT mere opposite.
- Some runes simply cannot take certain positions — their force either operates or is absent.
- Runes deal with reality, not psychological defenses.

### Layer 5: Positional Context
How the spread position modifies the meaning. The same rune means different things in different positions:

- **Past position**: The rune describes what has already happened or what has been established. It cannot be changed — it is Urðr's domain.
- **Present position**: The rune describes active forces right now. This is Verðandi's weaving — it can still be influenced.
- **Future/Outcome position**: The rune describes the trajectory. This is Skuld's domain — it is what must be unless the pattern changes.
- **Advice position**: The rune is not describing what IS but what SHOULD BE DONE. It becomes imperative rather than descriptive.
- **Challenge position**: The rune names the obstacle, not the situation. It defines what must be overcome.

### Layer 6: Rune-Rune Interactions
Adjacent runes modify each other. Check ALL pairs of adjacent runes in the spread against:

1. The critical combinations in `rune-combinations-mantic.md` (warning/danger, health-specific, magical influence, business, relationship)
2. The psychological combinations in `rune-mantic-kys.md` (Mannaz + Ehwaz, Mannaz + Raido)
3. The combination system in `rune-combinations-sklyarova.md` (element-based interactions)
4. The person-identification patterns (Berkano = married woman, Tiwaz = male leader, Laguz = young woman/witch, etc.)

### Layer 7: Numerological Context (rune-numerology.md)
The position value and numerological significance of the drawn runes.

- Calculate the sum of position numbers and reduce to a single digit.
- Cross-reference with the numerological reduction table (1 = Fehu/Uruz energy, 2 = polarities, 3 = Odin's number, etc.).
- Note if the sum is a sacred number (9, 24, 27, 72).
- Check cross-aett positional correspondences.

### Layer 8: Mythological Depth
Connect the reading to the Norse mythological framework:

- Which deities are implicated by the runes drawn? (Ansuz → Odin, Berkano → Frigg/Freyja, Tiwaz → Tyr, etc.)
- Which Nine Worlds are represented? (Eihwaz → Yggdrasil/between worlds, Laguz → Vanaheimr, Isa → Niflheimr, etc.)
- Which cosmic principle is at work? (Creation → Óðinn-Vili-Vé, Being → Urðr-Verðandi-Skuld, Transformation → Hel-Jörmungandr-Fenrir)
- Is there a seasonal correspondence? (Consult `runic-correspondences-cycle.md` for Aswynn's annual runic cycle)

---

## 7. Critical Combination Checklist

### Always Check These Combinations Before Finalizing a Reading

When ANY of these pairs appear in a reading (regardless of position), they MUST be explicitly addressed:

#### Life-Safety Warnings
| Combination | Meaning | Required Action |
|-------------|---------|-----------------|
| Thurisaz + Raido + Fehu reversed | Extremely high probability of serious trauma involving vehicles | Warn the querent explicitly about travel safety |
| Fehu reversed + Thurisaz upright | Possible surgery or serious physical injury | Advise extreme caution |
| Ingwaz + Thurisaz | Serious trauma barely compatible with life — falls, car accidents, assault | Warn about physical danger |
| Eihwaz + Ingwaz or Eihwaz + Hagalaz | Possible fatal outcome of illness | State the prognosis honestly — this is not a reading to soften |
| Mannaz reversed + Thurisaz/Hagalaz/Eihwaz | May completely lose the patient in health readings | Grave prognosis — state clearly |

#### Magical Influence Detection
| Combination | Meaning |
|-------------|---------|
| Perthro + Laguz | Magical technologies applied — love spell or repelling spell |
| Laguz reversed + destructive runes | Being "ritualized" — harmful esoteric techniques used against you |
| Wunjo reversed repeatedly in result position | Professional negative energetic influence — someone has hired a practitioner against you |

#### Relationship Red Flags
| Combination | Meaning |
|-------------|---------|
| Kenaz + Berkana | In new romance readings: the man is married or living with another woman |
| Othala reversed + Laguz reversed | The house/property is cursed or contains a negative esoteric artifact |
| Othala reversed + Mannaz reversed + Raido reversed | Quarrel with family, breaking of family ties |

#### Health-Specific
| Combination | Meaning |
|-------------|---------|
| Perthro + Laguz | Women's health: gynecological problems, difficulty conceiving |
| Perthro + Thurisaz | Upcoming or inevitable surgery |
| Perthro reversed + Berkano/Laguz | Female infertility |
| Perthro reversed + Tiwaz | Male infertility |
| Perthro reversed + Ansuz reversed | A woman lying about pregnancy |
| Eihwaz + Thurisaz | Person may become non-ambulatory or fully paralyzed |

#### Business-Specific
| Combination | Meaning |
|-------------|---------|
| Thurisaz + Ansuz | Bureaucratic "purgatory" — document problems, tax code changes |
| Perthro + Jera/Sowilo/Wunjo | This is your destined work — you were born for it |
| Perthro + Ansuz | You may be deceived or not told the full truth |
| Kenaz + Othala | Business demands your constant physical presence |

---

## 8. Person Identification Through Runes

Certain runes consistently indicate specific types of people in readings. When these runes appear, they often point to a specific individual in the querent's life:

### Gender and Status Indicators

| Rune | Person Indicated |
|------|-----------------|
| ᛒ Berkano upright | Married woman, or woman 35-40+ regardless of marital status |
| ᛒ Berkano reversed | Recently divorced woman, or unkind/poor housekeeper woman |
| ᛚ Laguz upright | Unmarried or young woman (up to ~30); if the woman practices magic, the age indicator is overridden |
| ᛏ Tiwaz upright | Male leader, manager, administrator — almost never indicates a female manager |
| ᛏ Tiwaz reversed | Old man past childbearing age, or weak-willed man |
| ᚲ Kenaz upright | Married man, or domestically-inclined man who is "nobody's fool" |
| ᚠ Fehu reversed (in personal context) | A "person-catastrophe" — destructive not to everyone, but specifically to this partner |
| ᚹ Wunjo reversed (persistent) | A professional dark practitioner working against the querent |

### Identifying "Who Did It"

When the question involves identifying a person:
- **Berkano** → a married or previously married woman
- **Tiwaz** → a man with leadership qualities of childbearing age
- **Kenaz** → a married man who blends into the team, seems quiet, but is nobody's fool
- **Laguz** → a young woman, possibly a witch
- **Mannaz** → a person or group of people — check surrounding runes for characteristics

---

## 9. Numerological Context in Readings

### Position-Value System

Each rune in the Elder Futhark has a position value from 1 to 24:

| Pos | Rune | Pos | Rune | Pos | Rune | Pos | Rune |
|-----|------|-----|------|-----|------|-----|------|
| 1 | Fehu | 7 | Gebo | 13 | Eihwaz | 19 | Ehwaz |
| 2 | Uruz | 8 | Wunjo | 14 | Perthro | 20 | Mannaz |
| 3 | Ansuz | 9 | Hagalaz | 15 | Algiz | 21 | Laguz |
| 4 | Thurisaz | 10 | Nauthiz | 16 | Sowilo | 22 | Ingwaz |
| 5 | Raido | 11 | Isa | 17 | Tiwaz | 23 | Othala |
| 6 | Kenaz | 12 | Jera | 18 | Berkano | 24 | Dagaz |

### Calculating the Reading's Numerological Signature

1. Sum the position values of all drawn runes
2. If the sum is 9, 24, or 27: the reading carries special sacred significance
3. Reduce to a single digit by summing digits: e.g., 47 → 4+7 = 11 → 1+1 = 2
4. Cross-reference with the numerological meanings:

| Digit | Meaning | Runic Echo |
|-------|---------|------------|
| 1 | New beginnings, primal force, the source | Fehu — raw potential |
| 2 | Duality, partnership, polarity | Gebo — exchange |
| 3 | Odin's number, divine intervention, trinity | Ansuz — the god's breath |
| 4 | Structure, stability, foundation | Thurisaz — the gate/threshold |
| 5 | Change, challenge, human experience | Raido — the journey |
| 6 | Harmony, balance, illumination | Kenaz — the torch |
| 7 | Mystery, the unconscious, hidden knowledge | Perthro — the lot-cup |
| 8 | Cosmic order, cycles, completion | Wunjo/Jera — fulfillment |
| 9 | The sacred number, transformation, magic | Hagalaz — the transformative hail |

### Cross-Aett Correspondence

Runes in the same position within their aett share a resonance:

| Position | 1st Aett | 2nd Aett | 3rd Aett | Shared Theme |
|----------|----------|----------|----------|--------------|
| 1st | Fehu | Hagalaz | Tiwaz | Origin / Beginning force |
| 2nd | Uruz | Nauthiz | Berkano | Need / Primal drive |
| 3rd | Thurisaz | Isa | Ehwaz | Resistance / Stillness vs. Movement |
| 4th | Ansuz | Jera | Mannaz | Order / Human participation |
| 5th | Raido | Eihwaz | Laguz | Journey / Passage |
| 6th | Kenaz | Perthro | Ingwaz | Hidden / Potential |
| 7th | Gebo | Algiz | Othala | Connection / Protection |
| 8th | Wunjo | Sowilo | Dagaz | Fulfillment / Illumination |

If two or more runes from the same cross-aett position appear together, their shared theme is amplified and central to the reading.

---

## 10. Ethical Framework

### The Perthro Principle

When Perthro appears in a reading, it explicitly signals that the answer to the question **cannot be obtained** — "this cannot be known." This is not a failure of the reading but an honest communication from the runes. The reader must:

1. Acknowledge that the answer is unknowable at this time
2. Orient toward surrounding runes for contextual clues
3. Use approximate meanings derived from Perthro's name ("lot-cup," "mystery," "womb")
4. Engage intuition honestly — not forcing a definitive answer

### The Wyrd Protocol

When the Wyrd (blank) rune appears:

1. **In a past/foundation position**: Something in the querent's past is unknowable — possibly a hidden adoption, unknown parentage, or an event that was never revealed
2. **In a present position**: The current situation is in the hands of the gods — forces beyond human comprehension are at work
3. **In a future/outcome position**: The outcome cannot be known because it depends on factors not yet in motion
4. **In an advice position**: Surrender control — the querent must trust rather than act

### When to Refuse a Reading

A reader should decline to read when:
- The question seeks to violate another person's free will (e.g., "How can I make X love me?")
- The querent is in active crisis and needs professional help, not runes (e.g., suicidal ideation, acute medical emergency)
- The same question has been asked repeatedly in a short time, hoping for a different answer (the runes have already spoken)
- The reader is emotionally compromised and cannot be objective

### How to Deliver Challenging Readings

When the runes deliver a difficult message:
1. **State it directly but compassionately** — "The runes show a serious challenge here" rather than "Everything is fine, don't worry"
2. **Always provide the pathway** — Even Hagalaz, the most destructive rune, leaves water that nourishes new growth. Even Nauthiz, the rune of constraint, teaches what is truly needed. Every challenging rune contains the seed of its own resolution.
3. **Distinguish between fate and agency** — Urðr (what IS written) cannot be changed, but Verðandi (what is BECOMING) can be influenced, and Skuld (what MUST be) depends on the choices made now.
4. **Never predict certain death** — Even Eihwaz + Hagalaz + Ingwaz indicates a *possible* fatal outcome, not a *certain* one. Always use language like "the prognosis is very serious" or "extreme caution is warranted" rather than "you will die."

---

## 11. Seasonal and Lunar Context

### The Annual Runic Cycle (Aswynn)

The time of year adds context to any reading. Aswynn's annual runic cycle maps 24 runes onto 8 pagan festivals:

| Festival | Runes | Theme |
|----------|-------|-------|
| Spring Equinox | Tiwaz + Berkano + Ehwaz | Heavenly Father + Earth Mother → New Life |
| Beltane | Mannaz + Laguz + Ingwaz | Mind + Intuition → Sacred Union |
| Midsummer | Othala + Dagaz + Fehu | Óðinn + Baldr's death at peak of light + Freyja's abundance |
| Lammas | Ansuz + Uruz + Thurisaz | Óðinn's inspiration + primal rage + moderating force |
| Autumn Equinox | Kenaz + Raido + Gebo | Knowledge + Co-Knowledge → Balance |
| Samhain | Wunjo + Hagalaz + Nauthiz | Shamanic Óðinn + the Völva + Óðinn's intention |
| Winter Solstice | Isa + Jera + Eihwaz | Frozen stillness + year's turning + Yggdrasil sustaining life |
| Candlemas | Perthro + Algiz + Sowilo | Frigg/Norns + Erda/Valkyries + returning Sun |

If a rune from the current season's triad appears in a reading, it carries extra resonance — its energy is amplified by the seasonal current.

### Day of Week Considerations

| Day | Ruling Deity | Best Runes to Draw | Reading Focus |
|-----|-------------|-------------------|---------------|
| Tuesday | Týr | Tiwaz, justice/courage runes | Conflict resolution, legal matters, courage |
| Wednesday | Óðinn | Ansuz, wisdom/communication runes | Wisdom-seeking, messages, learning |
| Thursday | Þórr | Thurisaz, protection/strength runes | Protection, strength, breaking barriers |
| Friday | Freyja/Frigg | Berkano, Gebo, Laguz, love/fertility runes | Love, fertility, creativity |
| Saturday | Loki/Norns | Perthro, mystery/fate runes | Hidden matters, fate, karma |
| Sunday | Sunna/Sól | Sowilo, Dagaz, success/illumination runes | Success, clarity, breakthrough |
| Monday | Máni | Isa, Laguz, intuition/dream runes | Dreams, intuition, emotional matters |

---

## 12. Reading Structure Template

### Standard Output Format for Rune Readings

When presenting a rune reading, use this structure:

```
# 🔮 Rune Reading: [Question Summary]

**Spread Used:** [Name of spread, number of positions]
**Domain:** [Business / Personal/Love / Health / Spiritual / General]
**Date:** [Current date with seasonal note]

---

## The Draw

[For each position:]
**Position [N]: [Position Name]**
[Rune symbol] [Rune Name] — [Orientation]
[Rune Unicode Symbol]
*Position value: [1-24]*

---

## Individual Position Interpretations

[For each position, provide:]
- **Core meaning**: The fundamental rune concept
- **Orientation modifier**: How direct/mirrored/inverted changes the expression
- **Domain-specific meaning**: What this rune means in Business/Personal/Health context
- **Positional context**: How the spread position modifies the meaning
- **Adjacent rune influence**: How neighboring runes modify this one

---

## Critical Combinations Detected

[List any combinations from Section 7 that appear in this reading, with their specific meanings]

---

## Numerological Summary

- **Position value sum**: [Total] → reduces to [digit]
- **Cross-aett patterns**: [Any same-position-within-aett runes drawn together]
- **Sacred number resonance**: [If the sum or pattern matches 3, 9, 24, 27, 72, etc.]

---

## The Narrative

[The synthesized story of the reading — the central tension, the arc from past through present to future, the counsel the runes are offering. This is where all layers come together into a coherent message.]

---

## Counsel

[Direct, honest advice based on the reading. What should the querent do? What should they avoid? What is the path through the pattern the Norns are weaving?]
```

---

## 13. Advanced Techniques

### The Hagalaz Spread Technique

A unique method using Hagalaz as a structural framework for tracing connections between events:

**Method 1** (using the first variant of Hagalaz's shape):
- Place Hagalaz as the central rune
- Two runes: one to the right, one to the left of Hagalaz
- Hagalaz indicates directions of mutual influence between events

**Method 2** (using the second variant — the star/cross shape):
- Place additional runes along the branches/rays of Hagalaz
- Each branch traces a specific event and its connections to others

**Versatility:**
- Trace connections between mutually influencing events
- Identify connections that must be broken
- Find events participation in which should be declined
- Show the base and goal that can be reached, plus paths and means

The key insight: Hagalaz doesn't only mean destruction — it can serve as a structural map revealing the web of causality between events in the querent's life.

### Verification Readings

If a reading seems unclear or the querent needs clarification:

1. **Do NOT redraw the same question immediately** — the runes have spoken
2. **Draw ONE clarification rune** — asking "What do I need to understand about [specific position]?"
3. **The clarification rune does not replace the original** — it only adds context
4. **Maximum two clarification runes per reading** — beyond this, you are no longer reading but bargaining with the Norns

### Timed Readings

For questions about timing:
- Jera indicates cycles — the answer is "when the cycle completes"
- Dagaz indicates breakthrough — the answer is "suddenly, when you least expect it"
- Isa indicates delay — the answer is "not yet, and pushing will make it worse"
- Raido indicates movement — the answer is "soon, when the path opens"
- Nauthiz indicates necessity — the answer is "when you truly need it, not when you want it"

### Yes/No Questions

Runes are not naturally binary — they do not give simple yes/no answers. However, when a yes/no question is asked:

**Lean toward Yes:**
- Sowilo, Dagaz, Wunjo, Fehu, Jera, Gebo in the outcome position

**Lean toward No:**
- Isa, Nauthiz, Hagalaz reversed runes in the outcome position

**The Answer is Unknown:**
- Perthro, Wyrd in any position

**The Question is Wrong:**
- Eihwaz in the outcome position — the real question is not yes/no but "which path?"

---

## 14. Common Reading Scenarios

### "What does [person] feel about me?"
Use Three Rune Spread or Partner Spread.
- Look for person-identification runes (Berkano, Tiwaz, Laguz, Kenaz)
- Check for magical influence combinations (Perthro + Laguz)
- The psychological layer (Kys) is primary here — what internal dynamics are at play?

### "Will I get the job/contract?"
Use Three Rune Spread or Financial Resources.
- Check for Thurisaz + Ansuz (bureaucratic obstacles)
- Check for Perthro + Jera/Sowilo/Wunjo (destined work)
- Fehu in final position = the enterprise will be successful; in initial = must invest first

### "Is someone working against me?"
Use Seven Runes "Gypsy" Spread or Three Rune.
- Check for magical influence combinations
- Algiz upright = you know who it is; Algiz reversed = you don't see it
- Laguz reversed + destructive runes = active harmful techniques being used

### "What should I do about my health?"
Use Runic Cross (7 positions).
- ALWAYS check critical health combinations
- Uruz reversed = may need permanent care; Mannaz reversed + destructive = may lose the patient
- Note: rune readings complement but never replace medical advice

### "What is my spiritual path?"
Use "Truth" Spread, Nine Worlds Spread, or Karmic Spread.
- Ansuz indicates divine communication is available
- Eihwaz indicates a transitional/initiatory period
- Perthro indicates the path is hidden — trust intuition
- The mythological depth layer is primary here

---

## Sources & Cross-References

This protocol synthesizes and operationalizes knowledge from ALL reference documents in the skill:

- **rune-combinations-mantic.md** — Domain-specific meanings, critical combinations, person identification
- **rune-mantic-kys.md** — Psychological/advisory layer, Perthro Principle, Luck vs. Success, Hagalaz Spread Technique
- **rune-three-positions-bednenko.md** — Direct/mirrored/inverted system, graphic logic of positions
- **rune-numerology.md** — Position-value system, sacred numbers, cross-aett correspondences
- **runic-correspondences-cycle.md** — Annual runic cycle, seasonal context, Aswynn's festival correspondences
- **khrzhanovska-practical-runic.md** — 10 spread layouts, rune meditation questions, day-of-week correspondences
- **nordic-worldview.md** — Cyclic time, Norns as weavers, runes as forces of the weaving
- **norse-mythology-encyclopedia.md** — Deity correspondences, Nine Worlds context
- **runic-galdr.md** — Sound keys for chanting during readings (optional but powerful)
- **rune-interpretations.md** — Core meanings, Anglo-Saxon Rune Poem, correspondences
- **elder-futhark-deep-dive.md** — Detailed individual rune analyses
- **nine-worlds-yggdrasil-kaldera.md** — Nine Worlds Spread context
- **volva-seeress-tradition.md** — The völva as model for the reader's role
- **runic-scholarly-insights.md** — Advanced interpretive nuances
