CID: QmcWhw6wbHr1GDmorM2KDz8S3yCGTfjuyPR6y8khS2tvko Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
654 B
Common Lisp
22 lines
654 B
Common Lisp
; identity-cat recipe
|
|
; Applies the identity effect to the foundational cat image
|
|
; Demonstrates: SOURCE → EFFECT → output
|
|
|
|
(recipe "identity-cat"
|
|
:version "1.0"
|
|
:description "Apply identity effect to cat - output equals input"
|
|
:owner "@giles@artdag.rose-ash.com"
|
|
|
|
; Registry
|
|
(asset cat
|
|
:cid "QmXrj6tSSn1vQXxxEY2Tyoudvt4CeeqR9gGQwSt7WFrhMZ"
|
|
:url "https://rose-ash.com/content/images/2026/01/cat.jpg")
|
|
|
|
(effect identity
|
|
:cid "QmcWhw6wbHr1GDmorM2KDz8S3yCGTfjuyPR6y8khS2tvko"
|
|
:url "https://github.com/gilesbradshaw/art-dag/tree/main/effects/identity")
|
|
|
|
; DAG: source → effect
|
|
(-> (source cat)
|
|
(effect identity)))
|