Agent skill

julia-gay

Gay.jl integration for deterministic color generation. SplitMix64 RNG, GF(3) trits, and SPI-compliant fingerprints in Julia.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill julia-gay-plurigrid-asi-2 --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Version: 1.0.0
Path: skills/ai-ml/julia-gay-plurigrid-asi-2/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

# Julia Gay Skill **Trit**: +1 (PLUS - generative color computation) **Foundation**: Gay.jl + SplitMix64 + SPI ## Core Concept Gay.jl provides: - Deterministic color from seed + index - GF(3) trit classification - SPI-compliant parallel fingerprints - Wide-gamut color space support ## API ```julia using Gay # Color at index color = color_at(seed, index) # => (r=0.65, g=0.32, b=0.88) # Palette generation palette = Gay.palette(seed, 5) # Trit classification trit = Gay.trit(color) # => -1, 0, or +1 # XOR fingerprint fp = Gay.fingerprint(colors) ``` ## SPI Guarantees ```julia # Strong Parallelism Invariance @assert fingerprint(colors_thread1) ⊻ fingerprint(colors_thread2) == fingerprint(vcat(colors_thread1, colors_thread2)) ``` ## Ergodic Bridge ```julia using Gay: ErgodicBridge # Create time-color bridge bridge = create_bridge(seed, n_colors) # Verify bidirectionally verify_bridge(bridge) # Detect obstructions obstructions = detect_obstructions(seed, n_samples) ``` ## Canonical Triads ``` bisimulation-game (-1) ⊗ acsets (0) ⊗ julia-gay (+1) = 0 ✓ sheaf-cohomology (-1) ⊗ bumpus-narratives (0) ⊗ julia-gay (+1) = 0 ✓ spi-parallel-verify (-1) ⊗ triad-interleave (0) ⊗ julia-gay (+1) = 0 ✓

What's inside
Steps it walks through
  1. Core Concept
  2. API
  3. SPI Guarantees
  4. Ergodic Bridge
  5. Canonical Triads
  6. See Also
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the julia-gay skill do?

Gay.jl integration for deterministic color generation. SplitMix64 RNG, GF(3) trits, and SPI-compliant fingerprints in Julia.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill julia-gay-plurigrid-asi-2 --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