From asi
Generates free monad structures from functor signatures for DSLs, effects, and interpreters. Useful for functional programming in Haskell or Julia.
npx claudepluginhub plurigrid/asi --plugin asiThis skill uses the workspace's default tool permissions.
> Free structure generation from signatures
Provides expert Haskell guidance on advanced type systems like GADTs/type families, pure functional design, STM/async concurrency, and Cabal/Stack projects.
Provides expert Haskell guidance on advanced type systems (GADTs, type families), pure functional design, concurrency (STM, async), performance tuning, Cabal/Stack builds, and Aeson/Megaparsec parsing.
Integrates polynomial functors, dependent lenses, free monads, and cofree comonads to model patterns running on matter (e.g., programs on OS, rules on players) for dynamical systems.
Share bugs, ideas, or general feedback.
Free structure generation from signatures
Trit: +1 (PLUS)
Color: #D82626 (Red)
Role: Generator/Creator
Free monads generate structure from a functor signature:
data Free f a
= Pure a -- Leaf (return)
| Roll (f (Free f a)) -- Node (bind)
Universal property: Free f is left adjoint to forgetful functor U.
data Cofree f a = a :< f (Cofree f a)
-- Head (extract) and infinite tail (duplicate)
| Free | Cofree |
|---|---|
| Producer (effects) | Consumer (contexts) |
| Programs | Interpreters |
| Syntax | Semantics |
Pattern (Free) ────runs-on────→ Matter (Cofree)
↓ ↑
Program Environment
↓ ↑
Effects Handlers
# Free monad for color stream generation
struct ColorFree{A}
tag::Symbol # :pure or :roll
value::Union{A, Tuple{UInt64, ColorFree{A}}}
end
# Generate free color structure
function free_color_stream(seed::UInt64, n::Int)
if n == 0
ColorFree(:pure, seed)
else
next_seed = splitmix64(seed)
ColorFree(:roll, (seed, free_color_stream(next_seed, n-1)))
end
end
# Interpret to actual colors
function interpret(free::ColorFree, palette)
if free.tag == :pure
return []
else
(seed, rest) = free.value
color = gay_color(seed)
[color; interpret(rest, palette)]
end
end
data Freer f a where
Pure :: a -> Freer f a
Impure :: f x -> (x -> Freer f a) -> Freer f a
Benefits:
-- 1. Define signature functor
data MusicF next
= Note Pitch Duration next
| Rest Duration next
| Chord [Pitch] Duration next
| Par (Free MusicF ()) (Free MusicF ()) next
-- 2. Free monad gives DSL
type Music = Free MusicF
-- 3. Smart constructors
note :: Pitch -> Duration -> Music ()
note p d = liftF (Note p d ())
-- 4. Programs are data
melody = do
note C4 quarter
note E4 quarter
note G4 half
sheaf-cohomology (-1) ⊗ kan-extensions (0) ⊗ free-monad-gen (+1) = 0 ✓
temporal-coalgebra (-1) ⊗ dialectica (0) ⊗ free-monad-gen (+1) = 0 ✓
three-match (-1) ⊗ unworld (0) ⊗ free-monad-gen (+1) = 0 ✓
# Generate free structure from signature
just free-gen MusicF
# Interpret free structure
just free-interpret music.free synth
# Generate color stream
just free-color-stream $GAY_SEED 100
# Lift effect to free monad
just free-lift effect
-- Algebraic effects as free monads
data Effect =
| State s
| Reader r
| Writer w
| Async
| Error e
type Eff effs = Freer (Union effs)
-- Handlers interpret effects
runState :: s -> Eff (State s ': effs) a -> Eff effs (a, s)
This skill connects to the K-Dense-AI/claude-scientific-skills ecosystem:
category-theory: 139 citations in bib.duckdbmonads: 13 citations in bib.duckdbThis skill maps to Cat# = Comod(P) as a bicomodule in the equipment structure:
Trit: 1 (PLUS)
Home: Presheaves
Poly Op: ⊗
Kan Role: Lan_K
Color: #4ECDC4
The skill participates in triads satisfying:
(-1) + (0) + (+1) ≡ 0 (mod 3)
This ensures compositional coherence in the Cat# equipment structure.