Free Monad Generation Skill (PLUS +1)
/plugin marketplace add plurigrid/asi/plugin install plurigrid-asi-skills@plurigrid/asiThis skill inherits all available tools. When active, it can use any tool Claude has access to.
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)