From asi
Generates 3^d parallel color mining streams via split-mix ternary operations over GF(3), ensuring conservation and triadic balance (MINUS/ERGODIC/PLUS). Use /color-mining for mine/verify/balance/status.
npx claudepluginhub plurigrid/asi --plugin asiThis skill uses the workspace's default tool permissions.
Split-mix ternary parallel color mining using GF(3) conservation. Achieves 3^d parallelism with perfect triadic balance.
Generates deterministic color palettes from seeds using SplitMix64, GF(3) trits, and MCP for reproducible results. Outputs CSS hex from OkLCH; useful for design systems and visualizations.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Split-mix ternary parallel color mining using GF(3) conservation. Achieves 3^d parallelism with perfect triadic balance.
Split-Mix Ternary: A maximally parallel color operation where:
| Trit | Name | Hue Range | Role | Mining Function |
|---|---|---|---|---|
| -1 | MINUS | 180-300° (cold) | Validator | Verify mined results |
| 0 | ERGODIC | 60-180° (neutral) | Coordinator | Aggregate & balance |
| +1 | PLUS | 0-60°, 300-360° (warm) | Generator | Execute mining ops |
/color-mining [depth] [operation]
depth: Mining depth (1-10), determines parallelism as 3^doperation: One of mine, verify, balance, status# Mine with 27 parallel streams (depth 3)
/color-mining 3 mine
# Verify conservation across all streams
/color-mining 4 verify
# Show mining status
/color-mining status
The skill spawns 3^d parallel Task agents, each assigned a unique path through the ternary tree. Conservation is verified at every level.
;; Core split-mix algorithm
(defn split-mix-mine [depth seed]
(let [streams (generate-ternary-paths depth)
colors (map path->color streams)]
(pmap mine-with-color (zip streams colors))))
[Coordinator: ERGODIC]
/ | \
[MINUS] [ERGODIC] [PLUS]
validate coordinate generate
/ | \ / | \ / | \
... ... ... ... ... ...
← 3^d parallel mining streams →
At every node in the mining tree:
Σ(sibling_trits) ≡ 0 (mod 3)
This ensures:
Colors mined satisfy:
Author: Split-Mix Ternary Protocol GF(3) Conservation: Guaranteed Max Parallelism: 3^10 = 59,049 streams