Community Library of Executable Reasoning Kits
Clerk is a Python framework for multi-step LLM reasoning workflows with a React frontend. Define and execute modular, reusable reasoning workflows using Large Language Models.
from openclerk.loader import load_reasoning_kit
from openclerk.graph import run_reasoning_kit
kit = load_reasoning_kit("reasoning_kits/demo")
outputs = run_reasoning_kit(kit)pip install openclerkOr from source:
git clone https://github.com/simonweigold/clerk.git && cd clerk
just setupclerk list # List reasoning kits
clerk run demo # Run a kit
clerk web # Start web UI- User Guide - Getting started
- Integration Guide - Embedding Clerk
- Contributing - Development setup