skills

作者 AI-Builder-Club已验证

Codebase harness + loop engineer

1,193
Stars
154
Forks
Python
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/AI-Builder-Club/skills

快速入门

使用 skills 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Become a Top 1% AI Builder — AI Builder Club

AI Builder Club — Skills

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):

  • Codebase harness — make any repo agent-ready (run, test, verify, ship — including an isolated cloud box per agent so loops ship code in parallel).
  • Loops — spin up compounding agent loops on a shared, file-based knowledge base.

Plus standalone utility skills:

  • agent-context-audit — audit your agent context (CLAUDE.md, codebase docs, skills, tool/MCP designs) against Anthropic's Claude 5 context-engineering guidance — finds overconstraint, conflicting instructions, redundancy, stale facts, and missing gotchas; reports findings with concrete rewrites, then applies approved fixes.
  • Open agent teams — delegate tasks to any CLI agent (claude, codex, grok, aider, …) running in a detached tmux session, with a race-safe done-signal protocol, multi-turn iteration, and a CLAUDE.md delegation-rules template (coordinator/executor roles).
  • SEO growth — where to point SEO effort, as two playbooks: a cold start with no rankings and no authority, and an existing site with data. Distilled from two content properties we run in production — including the emerging-term method that took a brand-new pillar page to the site's #1 clicked page in 7 days, and the failures that cost us a head term. Ships a loop template so it can run on a schedule.
  • Visual flow GIF — turn an article, workflow, or architecture into a static PNG + animated GIF flow diagram (JSON spec → local Python/Pillow renderer).

Loop engineer & Codebase harness

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:

  1. Triggers: cron, webhook, an incident, or another agent wakes the loop at the right time.
  2. A file + logging structure: the shared memory loops read and write → the loops skills.
  3. Tools & connectors: so the agent can do real work (your skills/MCPs).
  4. A codebase harness: so the agent can run, test, and verify its own work → the 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:

The loop engineer: how to design compounding agent loops

Install

/plugin marketplace add AI-Builder-Club/skills
/plugin install skills@ai-builder-club

One plugin, all the skills below.

The two entry points

/setup-codebase-harness — make a code repo agent-ready

Run 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 brain

Run 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.

The skills (when to use which)

Codebase harness — make a repo agent-ready

SkillUse it when…
setup-codebase-harnessOnboarding a repo to agent-driven dev — the master that orchestrates the four below.
dev-local-setupYou need a one-command local dev stack (scripts/dev-local.sh up).
e2e-setupThe repo has no (or weak) e2e — add a real per-PR test gate.
crabbox-setupLoops 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-setupMake 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

SkillUse it when…
new-loopYou want a new loop/workstream the agent owns (bootstraps the knowledge base on first run).

Visuals — turn source material into diagrams

SkillUse it when…
visual-flow-gifYou want an article, workflow, or architecture turned into a static PNG + animated GIF flow diagram (JSON spec → Python/Pillow renderer).

Context — keep your agent context sharp

SkillUse it when…
agent-context-auditAuditing a repo's agent context (CLAUDE.md, docs, skills, tool/MCP designs) against Anthropic's Claude 5 context-engineering guidance — finds overconstraint, conflicts, redundancy, stale facts, and missing gotchas; reports findings with rewrites, then applies approved fixes.

Delegation — run other agents as executors

SkillUse it when…
open-agent-teamsYou want to delegate work to any CLI agent (claude, codex, grok, pi, opencode) in an observable, detached tmux session — start, wait, iterate, and stop via the bundled tdel helper. Ships a CLAUDE.md delegation-rules template (coordinator vs executor) in references/.

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.

Requirements

  • Claude Code (the skills assume it).
  • git. That's the only hard dependency for the knowledge base + harness.
  • The harness skills want the code repo they ship into to be a git repo with a working build/test setup. They use Codex for review if available, and degrade gracefully if not.
  • crabbox-setup (optional, for parallel cloud boxes) needs the crabbox CLI + a provider (Daytona: daytona CLI / DAYTONA_API_KEY).
  • open-agent-teams needs tmux, plus whichever CLI agents you delegate to on your PATH (claude, codex, grok, pi, opencode, …).

Repo layout

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/)
    ├── agent-context-audit/          (context) — audit CLAUDE.md/docs/skills/tools vs Claude 5 guidance
    ├── seo-growth/                   (growth) — cold-start + existing-site SEO playbooks
    └── open-agent-teams/             (delegation) — any CLI agent in tmux  (scripts/tdel · references/CLAUDE.delegation-template.md)

Go deeper

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.

Join AI Builder Club

Join AI Builder Club

Built by Jason Zhou (AI Jason).

常见问题

What is skills?

skills is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by AI-Builder-Club. Codebase harness + loop engineer. It has 1,193 GitHub stars.

Is skills safe to use?

Yes. skills passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install skills?

Clone the repository with "git clone https://github.com/AI-Builder-Club/skills" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is skills written in?

skills is primarily written in Python. It is open-source under AI-Builder-Club on GitHub, so you can review or fork the full source.

Are there alternatives to skills?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh skills against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情