unworld
Replace time with color chain derivations via seed chaining
Profile →npx skills add majiayu000/claude-skill-registry --skill unworld --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
<!-- Propagated to amp | Trit: 0 | Source: .ruler/skills/unworld --> <!-- Propagated to amp | Trit: 0 | Source: .ruler/skills/unworld --> # Unworld Skill: Replace Time with Derivation **Status**: ✅ Production Ready **Trit**: 0 (ERGODIC - derivational, not temporal) **Principle**: seed_{n+1} = f(seed_n, color_n) **Frame**: No external clock, only internal derivation --- ## Overview **Unworld** replaces temporal succession with derivational succession. There is no "time" - only seed-chaining where each state derives deterministically from the previous. ``` seed₀ → color₀ → seed₁ → color₁ → seed₂ → ... ``` The "next" is not temporal but **derivational**. ## Core Formula ```ruby # Seed chaining: derive next seed from current seed + color trit seed_{n+1} = (seed_n ⊕ (trit_n × γ)) × MIX mod 2⁶⁴ where: γ = 0x9E3779B97F4A7C15 (golden ratio) MIX = 0xBF58476D1CE4E5B9 (SplitMix64 multiplier) ⊕ = XOR ``` ## Why Replace Time? 1. **Determinism**: Given genesis seed, entire chain is determined 2. **Parallelism**: Any position computable without computing predecessors 3. **Verification**: Chain integrity verifiable by re-derivation 4. **Frame invariance**: No external clock → no observer-dependent
- Overview
- Core Formula
- Why Replace Time?
- Derivation Chains
- 1. Color Chain
- 2. Triadic Chain
- 3. 3-MATCH Chain
- 4. Involution Chain
- 5. Best Response Chain
- Commands
- API
- Integration with 3-MATCH
- Integration with Involution
- Mathematical Foundation
Full unworld (all chains) just unworld Individual chains just unworld-color # Single derivation stream just unworld-triadic # Three interleaved streams just unworld-match # 3-MATCH gadget sequence just unworld-involution # ι∘ι = id verification just unworld-nash # Best response → equilibrium Raw seed chaining just seed-chain seed=0x42D steps=10
What does the unworld skill do?
Replace time with color chain derivations via seed chaining
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill unworld --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.