You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
clara-rules - it's a forward-chaining rules in Clojure(Script)
About
Clara is a forward-chaining rules engine written in Clojure(Script) with Java interoperability. It aims to simplify code with a developer-centric approach to expert systems. See clara-rules.org for more.
Usage
Here's a simple example. Complete documentation is at clara-rules.org.
(nsclara.support-example
(:require [clara.rules :refer:all]))
(defrecordSupportRequest [client level])
(defrecordClientRepresentative [name client])
(defruleis-important"Find important support requests."
[SupportRequest (=:high level)]
=>
(println"High support requested!"))
(defrulenotify-client-rep"Find the client representative and send a notification of a support request."
[SupportRequest (= ?client client)]
[ClientRepresentative (= ?client client) (= ?name name)] ; Join via the ?client binding.=>
(println"Notify" ?name "that" ?client "has a new support request!"))
;; Run the rules! We can just use Clojure's threading macro to wire things up.
(-> (mk-session)
(insert (->ClientRepresentative"Alice""Acme")
(->SupportRequest"Acme":high))
(fire-rules))
;;;; Prints this:;; High support requested!;; Notify Alice that Acme has a new support request!
Building
Clara is built, tested, and deployed using Leiningen.
ClojureScript tests are executed via puppeteer.
This project welcomes contributions from the community. Before submitting a pull request, please review our contribution guide
Security
Please consult the security guide for our responsible security vulnerability disclosure process
License
Copyright (c) 2018, 2025 Oracle and/or its affiliates.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.