Agent skill
julia-gay
Gay.jl integration for deterministic color generation. SplitMix64 RNG, GF(3) trits, and SPI-compliant fingerprints in Julia.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/julia-gay-plurigrid-asi-2
Metadata
Additional technical details for this skill
- trit
- 1
- bundle
- core
- version
- 1.0.0
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
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
# Strong Parallelism Invariance
@assert fingerprint(colors_thread1) ⊻ fingerprint(colors_thread2) ==
fingerprint(vcat(colors_thread1, colors_thread2))
Ergodic Bridge
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 ✓
See Also
gay-mcp- MCP server for color generationtriad-interleave- 3-stream schedulingworld-hopping- Badiou possible world navigation
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?