Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add plurigrid/asi --skill geiser-chickengit clone --depth 1 https://github.com/plurigrid/asiWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/plurigrid/asi/geiser-chicken)<a href="https://agentmods.dev/skills/plurigrid/asi/geiser-chicken"><img src="https://agentmods.dev/badge/skills/plurigrid/asi/geiser-chicken.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00031 | $0.01462 |
| Opus 5 | $0.00015 | $0.00731 |
| Sonnet 5 | $0.00006 | $0.00292 |
| Haiku 4.5 | $0.00003 | $0.00146 |
Grade A, and why
geiser-chicken scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 178 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Geiser/Chicken Scheme: 3-Coloring Skill
Geiser is the Emacs mode for Scheme REPLs. This skill provides:
- Chicken Scheme SplitMix64 implementation
- 3-coloring via ternary output (-1, 0, +1)
- crdt.el sexp manipulation
- Penrose diagram ASCII generation
Chicken Scheme SplitMix64
;;; chicken_splitmix.scm
(define GOLDEN #x9E3779B97F4A7C15)
(define MIX1 #xBF58476D1CE4E5B9)
(define MIX2 #x94D049BB133111EB)
(define MASK64 #xFFFFFFFFFFFFFFFF)
(define (make-splitmix64 seed)
(let ((state (bitwise-and seed MASK64)))
(lambda ()
(set! state (bitwise-and (+ state GOLDEN) MASK64))
(let* ((z state)
(z (bitwise-and (* (bitwise-xor z (arithmetic-shift z -30)) MIX1) MASK64))
(z (bitwise-and (* (bitwise-xor z (arithmetic-shift z -27)) MIX2) MASK64)))
(bitwise-xor z (arithmetic-shift z -31))))))
(define (splitmix-ternary rng)
;; Map u64 to {-1, 0, +1}
(- (modulo (rng) 3) 1))
(define (color-at seed index)
(let ((rng (make-splitmix64 seed)))
(do ((i 0 (+ i 1))) ((= i index))
(rng))
(let ((h (rng)))
(list (+ 10 (* (/ (bitwise-and h #xFF) 255.0) 85)) ; L
(* (/ (bitwise-and (arithmetic-shift h -8) #xFF) 255.0) 100) ; C
(* (/ (bitwise-and (arithmetic-shift h -16) #xFFFF) 65535.0) 360))))) ; H
3-Coloring for Graphs
;;; 3-color a graph using SplitMixTernary
(define (graph-3-color vertices edges seed)
(let ((rng (make-splitmix64 seed))
(colors (make-hash-table)))
;; Assign initial colors
(for-each
(lambda (v)
(hash-table-set! colors v (splitmix-ternary rng)))
vertices)
;; Verify no adjacent same-color (greedy fix)
(let loop ((changed #t))
(when changed
(set! changed #f)
(for-each
(lambda (e)
(let ((c1 (hash-table-ref colors (car e)))
(c2 (hash-table-ref colors (cadr e))))
(when (= c1 c2)
(hash-table-set! colors (cadr e) (modulo (+ c2 1) 3))
(set! changed #t))))
edges)))
colors))
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 178 lines · 31 tokens per session scan A 557345667f57
geiser-chicken is a skill published in the GitHub repository plurigrid/asi (62 stars, last pushed 2mo ago), licensed MIT. It adds 31 tokens to every session and 1,462 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-01.
Other skills, from other repositories
matlab
Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.
ast-grep
Guide for writing ast-grep rules to perform structural code search and analysis. Use when users need to search codebases using Abstract Syntax Tree (AST) patterns, find specific code structures, or perform complex code queries that go beyond simple text search. This skill should be used when users ask to search for…
platform-detection
Identify a .NET project's test platform, framework, command mode, and SDK-style vs classic project system. Use only for "which test platform/framework?", "VSTest or MTP?", or "what runner does this project use?", including bridge settings, UseVSTest opt-outs, and incompatible or conflicting VSTest/MTP configuration.…
unity-version-split
Split a C# file into Unity 6.5+ and pre-Unity 6.5 variants. Use when a file needs different implementations for different Unity versions due to API changes (e.g., EntityId vs int, GetEntityId vs GetInstanceID).
omh-rust
This is a Hermes-native rust workflow skill.
axiom-concurrency
Use when writing ANY async code, actors, threads, or seeing ANY concurrency error. Covers Swift 6 concurrency, @MainActor, Sendable, data races, async/await patterns.