Agent skill

unworld

Replace time with color chain derivations via seed chaining

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill unworld --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/ai-ml/unworld/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

<!-- 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

What's inside
Steps it walks through
  1. Overview
  2. Core Formula
  3. Why Replace Time?
  4. Derivation Chains
  5. 1. Color Chain
  6. 2. Triadic Chain
  7. 3. 3-MATCH Chain
  8. 4. Involution Chain
  9. 5. Best Response Chain
  10. Commands
  11. API
  12. Integration with 3-MATCH
  13. Integration with Involution
  14. Mathematical Foundation
Ships with 1 file
  • metadata.json
Commands it runs
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
More from claude-skill-registry
All skills →
About this skill
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.

Keep going