AgentSkillsCN

clojure-guardrails

Clojure 中使用 Malli 的 Guardrails 库参考文档。适用于处理 `>defn`、`>defn-`、`>def`、`>fdef` 宏,以及 gspec 语法或函数校验场景。当引入 Guardrails 库(`com.fulcrologic.guardrails.malli`)、使用带有 `=>` 运算符的函数规范,或对 Clojure 中的运行时校验存在疑问时,此功能将自动触发。

SKILL.md
--- frontmatter
name: clojure-guardrails
description: Reference for Guardrails library with Malli in Clojure. Use when working with `>defn`, `>defn-`, `>def`, `>fdef` macros, gspec syntax, or function validation. Triggers on guardrails imports, `com.fulcrologic.guardrails.malli`, function specs with `=>` operator, or questions about runtime validation in Clojure.

Clojure Guardrails (Malli)

Detection

Check if guardrails is in use:

bash
grep -r "guardrails.enabled" deps.edn shadow-cljs.edn 2>/dev/null

Setup

deps.edn:

clojure
{:deps {com.fulcrologic/guardrails {:mvn/version "1.2.16"}
        metosin/malli             {:mvn/version "0.20.0"}}
 :aliases {:dev {:jvm-opts ["-Dguardrails.enabled=true"]}}}

See https://clojars.org/com.fulcrologic/guardrails for the latest version.

Enable at runtime: -Dguardrails.enabled=true

Import

clojure
(require '[com.fulcrologic.guardrails.malli.core :refer [>defn >defn- >def >fdef | ? =>]])

Core Macros

MacroPurpose
>defnDefine function with inline spec
>defn-Private function with spec
>defRegister malli schema
>fdefDeclare spec without body
?Nilable shorthand [:maybe schema]
|"Such that" constraints
=>Separates args from return

Gspec Syntax

code
[arg-specs* (| arg-preds+)? => ret-spec (| ret-preds+)?]

Basic:

clojure
(>defn add [a b]
  [:int :int => :int]
  (+ a b))

With constraints:

clojure
(>defn ranged-rand [start end]
  [:int :int | #(< start end)
   => :int | #(>= % start) #(< % end)]
  (+ start (long (rand (- end start)))))

Nilable:

clojure
(>defn find-user [id]
  [:int => (? :map)]
  (get users id))

Multi-arity:

clojure
(>defn greet
  ([name]
   [:string => :string]
   (str "Hello, " name))
  ([greeting name]
   [:string :string => :string]
   (str greeting ", " name)))

Variadic:

clojure
(>defn sum [x & more]
  [:int [:* :int] => :int]
  (apply + x more))

Map schemas:

clojure
(>defn process-user [user]
  [[:map [:name :string] [:age :int]] => :string]
  (str (:name user) " is " (:age user)))

Schema Registry

This is an optional feature.

clojure
(require '[com.fulcrologic.guardrails.malli.registry :as gr.reg])

;; Register schemas
(>def :user/name :string)
(>def :user/age :int)
(>def :user/record [:map :user/name :user/age])

;; Use in functions
(>defn get-user [id]
  [:int => (? :user/record)]
  (lookup id))

Detailed Reference

See gspec-syntax.md for complete syntax documentation.