Triadic interleave of Gay.jl, Rama, and Zig for GF(3)-conserved builds.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add plurigrid/asi --skill rama-gay-zig --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Rama Gay Zig?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/plurigrid-rama-gay-zig-asi)More formats (shields.io, HTML) on the badges page.
# rama-gay-zig
Triadic interleave of Gay.jl, Rama, and Zig for GF(3)-conserved builds.
## Overview
Combines three ecosystems with perfect GF(3) conservation:
| Component | Trit | Role |
|-----------|------|------|
| Gay.jl | -1 | Color/SPI source (validation) |
| Rama | 0 | Topology coordinator (ergodic) |
| Zig | +1 | Build executor (generation) |
**Sum: (-1) + (0) + (+1) = 0** ✓
**Origin**: PR #37 (closed, consolidated into main via #42)
## Semantic Interleave
```
Gay.jl (color) ──► Rama (topology) ──► Zig (build)
│ │ │
▼ ▼ ▼
Validate Coordinate Generate
(MINUS) (ERGODIC) (PLUS)
```
## Babashka Bridge
```clojure
#!/usr/bin/env bb
(require '[babashka.process :refer [shell]])
(def gay-color (splitmix64 1069))
(def rama-topology {:dataflow :pstate :depot :query})
(def zig-target "aarch64-macos")
(defn triadic-build [seed]
(let [color (splitmix64 seed)
trit (mod color 3)]
(case trit
0 {:action :coordinate :tool :rama}
1 {:action :generate :tool :zig}
2 {:action :validate :tool :gay})))
```
## Rama Topology
```clojure
;; Rama dataflow with Gay.jl coloring
(defmodule GayColoredTopology [setup topologies]
(declare-depot setup *colors :random)
(<<sources topologies
"color-source"
(source> *colors :> *color)
(splitmix64> *color :> *hue)
(|hash> *hue :trit :> *trit)))
```
## Zig Build Integration
```zig
// build.zig.zon with Gay.jl seed
.{
.name = "rama-gay-zig",
.version = "0.4.0",
.dependencies = .{
.gay_colors = .{
.seed = 0x42D, // 1069
.golden = 0x9e3779b97f4a7c15,
},
},
}
```
## Interactome
```mermaid
graph LR
subgraph bmorphism
GAY[Gay.jl]
end
subgraph redplanetlabs
RAMA[Rama]
end
subgraph ziglang
ZIG[Zig]
end
GAY -->|color seed| RAMA
RAMA -->|topology| ZIG
ZIG -->|build artifact| GAY
```
## GF(3) Trit
**Trit: 0** (ERGODIC) - Triadic coordination
## Related Skills
- `gay-julia` - Gay.jl integration
- `zig-programming` - Zig expertise
- `clojure` - Babashka/Rama
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!