Loading repository data…
Loading repository data…
AI-Builder-Club / repository
Codebase harness + loop engineer
A Claude Code plugin marketplace of the skills we share at AI Builder Club for building loop engineers: agents that get triggered on their own, pick up work, ship it, verify it, and log what they learned, so the work compounds without you prompting every step. It's the productized version of the setup my team runs in production.
Two flagship skill sets (more to come):
Plus standalone utility skills:
The shift: you stop prompting a coding agent task-by-task, and start designing loops.
A loop is an agent that wakes up on a trigger (a cron, a webhook, an incident, another agent), does some investigation and work, and writes what it found and did into a shared, file-based memory. Next run it reads that memory and keeps going. The real power is compounding: many loops (support, SEO, product, ads) read and write the same folders, so a friction the support loop logs can get picked up by the product loop, and a keyword the ads loop finds can feed the SEO loop. One shared brain, many loops.
Building one comes down to four ingredients:
loops skills.codebase-harness skills.This single skills plugin ships both sets — giving you #2 and #4, plus the
scaffolding to add the rest.
Want the full walkthrough of the concept and how my team designs compounding loops? Watch the video:
/plugin marketplace add AI-Builder-Club/skills
/plugin install skills@ai-builder-club
One plugin, all the skills below.
/setup-codebase-harness — make a code repo agent-readyRun it in the code repo your agents work in, so they can run, test, and verify their own work. It orchestrates the harness skills below — pull in only what the repo needs.
/new-loop — build your shared brainRun it where your agent's memory should live. First run bootstraps the knowledge base
(creates ARCHITECTURE.md, LOG.md, the signals/ docs/ domains/ folders, and a knowledge-base
section in your CLAUDE.md); then it scaffolds the loop, does one real test run, and logs it.
Run it again any time to add another loop.
Codebase harness — make a repo agent-ready
| Skill | Use it when… |
|---|---|
setup-codebase-harness | Onboarding a repo to agent-driven dev — the master that orchestrates the four below. |
dev-local-setup | You need a one-command local dev stack (scripts/dev-local.sh up). |
e2e-setup | The repo has no (or weak) e2e — add a real per-PR test gate. |
crabbox-setup | Loops ship code in parallel — give each agent its own isolated cloud stack (one laptop can't run N). The cloud counterpart to dev-local. |
verifier-setup | Make a repo's work verifiable — scaffolds a repo-specific /verify skill (a fresh sub-agent drives the app, captures screenshot/video proof, opens the PR with it embedded). Ensures dev-local + the browser driver exist first. |
Loops — the shared knowledge base
| Skill | Use it when… |
|---|---|
new-loop | You want a new loop/workstream the agent owns (bootstraps the knowledge base on first run). |
Visuals — turn source material into diagrams
| Skill | Use it when… |
|---|---|
visual-flow-gif | You want an article, workflow, or architecture turned into a static PNG + animated GIF flow diagram (JSON spec → Python/Pillow renderer). |
After setup, each session the agent reads CLAUDE.md + the relevant domain README, does work,
writes artifacts, and appends to LOG.md. For code changes it works in an isolated worktree and verifies via /verify before shipping.
git. That's the only hard dependency for the knowledge base + harness.crabbox-setup (optional, for parallel cloud boxes) needs the crabbox CLI + a provider
(Daytona: daytona CLI / DAYTONA_API_KEY).skills/ a Claude Code plugin (also a marketplace)
├── .claude-plugin/
│ ├── marketplace.json marketplace: ai-builder-club
│ └── plugin.json plugin: skills (source ".")
└── skills/ top-level skills
├── new-loop/ (loops) — + references/: ARCHITECTURE · LOG · KNOWLEDGE_SETUP · CLAUDE.template
├── setup-codebase-harness/ (harness) — orchestrator
├── dev-local-setup/ (harness)
├── e2e-setup/ (harness)
├── crabbox-setup/ (harness) — isolated cloud box per agent
├── verifier-setup/ (harness) — generates a repo's /verify skill (assets/verify.template.md)
└── visual-flow-gif/ (visuals) — JSON spec → PNG + GIF (scripts/ assets/ references/)
These skills get you the structure. If you want to learn how to actually build agents and run compounding loops for your own business, that's what I go deep on inside AI Builder Club: weekly live builder workshops, courses on production AI agents, AI coding beyond the basics, and building your first LLM apps, plus a community of people building the same way.
Built by Jason Zhou (AI Jason).