Agent skill

world-hopping

Badiou-inspired possible world navigation using triangle inequality constraints, event ontology, and truth procedures for traversing mathematical possibility space.

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/ai-ml/world-hopping/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

# World Hopping: Possible World Navigation World hopping is the art of navigating between **possible worlds** in mathematical/musical/philosophical space. Based on Badiou's ontology and Kripke semantics, with triangle inequality as the fundamental constraint. ## Possible Worlds A **possible world** W is a configuration of: ```ruby class PossibleWorld attr_reader :seed, :epoch, :state, :invariants, :accessibility def initialize(seed:, epoch: 0) @seed = seed # Ontological identity @epoch = epoch # Temporal position @state = compute_state # Current configuration @invariants = [] # What persists across transitions @accessibility = {} # Which worlds are reachable end def compute_state rng = SplitMixTernary.new(@seed + @epoch) { color: SeedMiner.color_at(@seed, @epoch), mathematician: select_mathematician(rng), operation: select_operation(rng), polarity: [:positive, :negative, :neutral][rng.next_ternary + 1] } end end ``` ## Accessibility Relations ### Modal Logic Foundation - **Reflexive**: Every world can reach itself (∀W: W → W) - **Symmetric**: If W₁ → W₂ then W₂ → W₁ (reversible hops) - **Transitive**: If W₁ → W₂ → W₃ then W₁ → W₃ (composable paths) ### Accessibility Matrix ```ruby

What's inside
Steps it walks through
  1. Possible Worlds
  2. Accessibility Relations
  3. Modal Logic Foundation
  4. Accessibility Matrix
  5. Badiou's Event Ontology
  6. Being (L'être)
  7. Event (L'événement)
  8. Truth (La vérité)
  9. Triangle Inequality Hopping
  10. Distance Metric
  11. Triangle Inequality Constraint
  12. World Hopping Moves
  13. 1. SLIDE: Adjacent World
  14. 2. LEAP: Distant World
Ships with 1 file
  • metadata.json
Commands it runs
just world-hop from to           # Hop between worlds
just world-graph                 # Visualize accessibility graph
just world-distance w1 w2        # Calculate world distance
just shortest-path w1 w2         # Find optimal hop sequence
just event-trigger site name     # Create and trigger event
More from claude-skill-registry
All skills →
About this skill
What does the world-hopping skill do?

Badiou-inspired possible world navigation using triangle inequality constraints, event ontology, and truth procedures for traversing mathematical possibility space.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill world-hopping --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