Agent skill

epistemic-arbitrage

Propagator-based parallel structure for exploiting knowledge differentials across domains using local scoped propagators and SplitMixTernary RNG.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill epistemic-arbitrage --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/analysis/epistemic-arbitrage/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

# Epistemic Arbitrage: Propagator-Based Knowledge Synthesis Epistemic arbitrage exploits **knowledge differentials** between domains. When concept A in domain X is well-understood, but its isomorphic counterpart A' in domain Y is mysterious, we can **arbitrage** by transferring understanding. ## Core Architecture ### Propagator Networks (Radul/Sussman) A propagator network consists of: ``` ┌─────────┐ ┌─────────────┐ ┌─────────┐ │ Cell A │────▶│ Propagator │────▶│ Cell B │ │ (known) │ │ (transfer) │ │(derived)│ └─────────┘ └─────────────┘ └─────────┘ ``` - **Cells**: Containers for partial information - **Propagators**: Functions that combine/transform information - **Merging**: Monotonic accumulation (information only increases) ### SplitMixTernary RNG For parallel propagation with determinism: ```ruby class SplitMixTernary GOLDEN = 0x9e3779b97f4a7c15 # Golden ratio constant def initialize(seed) @state = seed end def next_ternary # Advance state (SplitMix64) @state = (@state + GOLDEN) & 0xFFFFFFFFFFFFFFFF z = @state z = ((z ^ (z >> 30)) * 0xbf58476d1ce4e5b9) & 0xFFFFFFFFFFFFFFFF z = ((z ^ (z >> 27)) * 0x94d049bb133111eb) & 0xFFFFFFFFFFFFFFFF z = z ^ (z >> 31) # Map to ternary: -1,

What's inside
Steps it walks through
  1. Core Architecture
  2. Propagator Networks (Radul/Sussman)
  3. SplitMixTernary RNG
  4. Arbitrage Patterns
  5. Pattern 1: Domain Transfer
  6. Pattern 2: Dual Discovery
  7. Pattern 3: Triangle Arbitrage
  8. Local Scoped Propagators
  9. Scoping for Parallelism
  10. Parallel Arbitrage Network
  11. Integration with Music Topos
  12. With World Broadcast
  13. With Synadia
  14. With Glass Bead Game
Ships with 1 file
  • metadata.json
Commands it runs
just arbitrage               # Run arbitrage network
just arbitrage-domains a b   # Arbitrage between specific domains
just propagator-network      # Visualize propagator network
just knowledge-flow          # Show knowledge flow diagram
More from claude-skill-registry
All skills →
About this skill
What does the epistemic-arbitrage skill do?

Propagator-based parallel structure for exploiting knowledge differentials across domains using local scoped propagators and SplitMixTernary RNG.

How do I install it?

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