Claude doesn't know your business. Yet.

Clayworks teaches Claude Code your company's context, your processes, and your voice so every answer is actually useful.

For business owners, practice managers, operations directors, marketing directors, and team leads who run Claude on their own — not with a developer.

practice@dental-clinic — claude
$ claude
Build me a client intake form for my dental practice that follows our HIPAA workflow.
Loaded CLAUDE.md
Loaded HIPAA workflow notes
Loaded Voice samples (last 12 patient comms)
Drafting form using your real fields...
New Patient Intake
Dr. Lee Dental Practice · Last edited by Cynthia, 9/14
Jane Smith
MM / DD / YYYY
(555) 123-4567
Select from your plan list...
Briefly describe the reason for today's appointment...

With Clayworks installed: Claude knows your business while it builds.

LITE: the free foundation

LITE is the free foundation. MIT-licensed, available on GitHub, installs in one command. It's the starting point if you want to see what Claude Code can do with the right configuration before paying anything.

What's in it

Install

Plugin marketplace

/plugin marketplace add clayboicardi/clayworks-lite
/plugin install clayworks-lite@clayworks-lite

git clone

git clone https://github.com/clayboicardi/clayworks-lite.git
cd clayworks-lite
./install.sh           # macOS / Linux / Git Bash
.\install.ps1          # Windows PowerShell 5.1+

Full docs, source, and design rationale at github.com/clayboicardi/clayworks-lite.

The bundle: the system I actually run

You're not buying a tool to help you write code. You're buying a system that manages an AI developer. The CLI is the chat interface for the contractor — you give a brief, you evaluate the work, you adjust. If you've ever hired a contractor (a cleaning service, an accountant, an IT consultant), you already know the skill.

You can build all of this yourself from the LITE patterns. The bundle ships one hardened version, with the rationale for every decision documented inline. Hiring a developer to build an equivalent CC operator system runs into tens of thousands of dollars. Clayworks is a one-time purchase of mine for a fraction of that.

What's not in LITE

Clayworks is primarily for internal tools, back-office automation, and work you already do. If you want to ship a side venture with the same tools, it works for that too.

Get launch and update notifications

Drop your email and which tier you're interested in. You'll hear from me when the bundle ships, when v1.x updates land, and when the early-adopter window is closing.

Pricing

A Claude power-user workshop runs around $800. An AI workflow consultant charges $150 an hour. An AI agency engagement starts at $5,000. Clayworks is $49, one time.

LITE is free and stays free. The bundle is a one-time purchase with an early-adopter rate for the first 30 days. Free updates through v1.x.

LITE

Free
Free forever, no signup

The free foundation. Install via plugin marketplace or git clone. Use it commercially, modify it, redistribute it.

Get LITE on GitHub →

One payment. No subscription. Uses your existing Claude Pro or Max plan.

Done-for-you services

If you'd rather have someone execute, these options are available on request. Book a discovery call to start a conversation.

Install acceleration sprint $499

Focused sprint to get the bundle deployed and working in your existing setup.

Full custom setup sprint $1,500

End-to-end install plus customization to your specific stack and workflow.

Monthly retainer $399/mo

Ongoing operator support: advisory, troubleshooting, configuration updates.

Common questions

Wait — I don't write code. Will this actually work for me?

If you can open a file, paste text, and run Claude Code, you can install Clayworks. There's no coding step. The setup guide is eleven lines.

If you've ever hired a contractor — a cleaning service, an accountant, an IT consultant — you already know the skill: you give a brief, you evaluate the work, you adjust. Claude Code is the chat interface for an AI developer who works the same way.

If you manage a team instead of hiring contractors, it's the same skill — brief, evaluate, adjust.

If you get stuck, the system walks you through it.

Is my business data safe?

Clayworks isn't designed to collect user data of any kind. If you want to know what's shared with Anthropic during your Claude Code sessions, their Privacy Policy is the authoritative source.

I built Clayworks to enhance your Claude Code usage. I don't want your information. Ever. For how clayboicardi.com itself handles the little it collects, see the Privacy Policy.

Why I built Clayworks

I built every component of Clayworks one piece at a time, for a live need in my own business. The CLAUDE.md template is the configuration I actually use. The hooks have run thousands of times. If Claude updates its behavior, I update the bundle.

Most similar systems are specialized tools, narrow and one-purpose, sometimes built as quick exposure grabs. Clayworks is the opposite. A plug-and-play system designed to be functional for virtually any use case, enhancing what you already do and unlocking what you've been meaning to build.

Who built this

I'm @clayboicardi on GitHub. I'm not a developer. Six months before launching Clayworks LITE, I didn't know what GitHub was. The system you're looking at is what let me ship real work anyway.

I run this stack every day on my own machine. It's not a thought experiment. It's the system I actually use to do work I would otherwise have to pay a developer thousands of dollars for.

Other public work

Acknowledgments

The pattern of organizing Claude Code operations around persistent memory, structured hooks, and multi-AI orchestration didn't emerge in isolation. Tools and people whose work informed this kit:

Tooling

  • Anthropic. Claude Code itself, plus the superpowers skill collection that anchors a lot of LITE's structural assumptions.
  • Plastic Labs. Honcho, the user-modeling layer that taught me to separate facts about the project from facts about the user.
  • Gentleman-Programming. Engram, the cross-model persistent memory plugin.
  • nyldn. Octo (claude-octopus) — its multi-AI orchestration shaped the bundle's early routing pattern. Octo has since been retired from my stack; orchestration now runs on a homegrown multi-provider fan-out (multi-ask) layered over per-provider bridge scripts.

Community

Glossary

Every dotted-underlined term on this page links here. If a phrase didn't land in context, look it up. No need to memorize anything — the system is designed to compensate for what you don't know yet, while you stay in control of the work.

Claude Code
Claude Code is Anthropic's command-line tool. You install it once, then chat with Claude inside your terminal. Unlike a web chat, Claude Code can read files on your machine, edit them, and run shell commands you've authorized. It's the engine Clayworks builds operator scaffolding around.
MIT-licensed
MIT is one of the most permissive open-source licenses. If something is MIT-licensed, you can copy it, modify it, sell it, embed it in your own work — anything you want, as long as you keep the copyright line that names the original author. No money owed, no permission needed.
shell scripts
A shell script is a plain text file that contains commands your computer's terminal (the "shell") runs in order. Files ending in .sh are shell scripts. They automate sequences of steps you'd otherwise type by hand. The LITE installer (install.sh) is a shell script.
config files
Config files (short for "configuration") store the settings a program uses. When you install software, it often creates config files in standard locations. You can edit them with any text editor. Claude Code's main config files live in your home directory under ~/.claude/.
CLAUDE.md
CLAUDE.md is the rules-of-engagement document Claude Code reads at the start of every session. It can contain your identity, behavioral rules, project-specific context, anything you want Claude to consistently know. The LITE kit includes a starter template; the paid bundle includes the full production version with rationale for every rule.
hook
Hooks are Claude Code's extension mechanism. Specific moments in the session (like "user submitted a prompt" or "session is ending") are events you can hook into. You point a hook at a script; when the event fires, the script runs. The LITE kit ships annotated examples for all 8 hook events.
Engram
Engram (by Gentleman-Programming) is a Claude Code plugin that adds persistent memory. You tell Claude "remember this", Engram stores it locally, and the next session can recall it via search. Engram is free and runs entirely on your machine. The LITE memory-routing skill helps you decide what goes here vs other memory layers.
Honcho
Honcho (by Plastic Labs) is a Claude Code plugin focused on user modeling. While Engram remembers facts about your project, Honcho remembers facts about you. Over time it builds a profile of how you work and Claude can tailor its behavior. Honcho costs about $2-3/month after a $100 credit.
SQLite
SQLite is the most-used database in the world. It's not a service you run; it's just a single file format that programs read and write to. The LITE Nudge skill uses a SQLite file to store the reminders you set, because no setup means it works for anyone immediately.
JSON
JSON (JavaScript Object Notation) is a way of writing structured data in plain text. It's used everywhere modern software talks to itself: config files, API responses, the messages Claude Code's hooks pass back and forth. It's simple enough to read by eye and strict enough that programs don't get confused.
settings.json
settings.json is the single most important configuration file Claude Code reads. It controls which hooks are wired up, what commands the model is allowed to run, environment variables it has access to, and which plugins it loads. The LITE kit ships an example settings.json that shows a working hook composition you can adapt.
observability stack
An observability stack is the set of tools that surface what a software system is actually doing, so you can debug it without guessing. The paid Clayworks bundle ships a three-tier observability stack for Claude Code: per-prompt outcomes grading (was this answer good?), end-of-session structure check (did the system stay coherent?), and end-of-session memory consolidation (what should we remember from this session?).

Contact