A set of rules for adding a shared knowledge base to several coding agents, including Hermes CLI, Claude Code, cloud agents, and OpenClaw. The knowledge base contains fixes and longer technical references.
A guide for searching and contributing to a shared engineering knowledge base. It separates short failure reports called lessons from longer implementation references.
Turn shot-plan.json into one renderable HyperFrames composition (compositions/index.html). Everything stays in the HF ecosystem — HTML is the source of truth; a single paused GSAP timeline carries all motion; the engine seeks it. Category-specific build rules live in categories/ /module.md; this file is the shared…
Turn a request into a shot-plan.json for a short (3–30s) design-led motion graphic. You run in two parts around the asset-sourcing step: Part 1 (plan) before sourcing, Part 2 (design) after. You do NOT write composition code — that's the Builder. Schema: references/shot-plan-ir.md.
Agent definitions are data, not code. Each JSON file in this directory defines an AI agent's identity, what data it watches, and what reports it produces. The seed script (pnpm seed) reads all .json files from this directory and inserts them into D1.
How an agent finds these surfaces without being told: the API catalog, DNS-based discovery, an agent-skills index, and the places people actually look.
Two retrieval backends: a lexical index built at compile time that needs no account, and Cloudflare AI Search for hybrid semantic search when you want it.
Use INSTEAD OF the built-in Explore agent for any "where is X / which files do Y / how is Z wired" question in this repo. Returns file paths and one-line excerpts, never file dumps. Read-only. Unlike Explore it already knows this monorepo's layout, its boundary rules, and which paths are deny-listed, so it does not…
Use INSTEAD OF the built-in Plan agent to design an implementation approach in this repo - new endpoint, new Worker, new package, schema change, refactor spanning workspaces. Returns a step-by-step plan naming real files. Read-only; proposes, never edits. Unlike Plan it already carries this repo's architectural…
Use PROACTIVELY before opening a PR or after a batch of edits: runs the repository verification gate (pnpm run ci - lint, format, check-types, types-check, boundaries, test, build) and reports ONLY failures that need a decision. Read-only - never auto-fixes, never edits files, and keeps verbose OXC/TypeScript/runner…
Agent Hospital is a multi-agent, self-evolving system built by [[org:wisdom-pan]] that simulates a complete clinical environment. By utilizing LLMs as autonomous agents, the system models the interactions between patients, nurses, and doctors to facilitate the treatment process. The platform exposes both a cli and a…
Agent Laboratory is an autonomous research workflow designed to assist human researchers by automating repetitive tasks such as literature reviews, experiment execution, and report writing. Built by [[org:samuelschmidgall]], the system utilizes a multiagent architecture to facilitate collaboration across the research…
The AI co-scientist is a multi-agent, self-evolving system built by [[org:the-swarm-corporation]] to augment the process of [[domain:scientificdiscovery]]. By utilizing a generate, debate, and evolve methodology, the system assists researchers in formulating novel hypotheses and research proposals. It is available as…
Project-local Claude Code subagents that wrap pieces of .brain/HARNESS.md. The main thread delegates to these so it doesn't have to re-load harness rules every turn.
Drives a feature's golden path + one error path through the LIVE app using the Playwright CLI (a throwaway Node script run headless), screenshots each step, and writes a verification doc to .brain/features/ /verifications/ .md. Replaces writing per-feature e2e specs. Use for any user-visible feature/flow before…
Builds and changes UI in this repo — routes, components, marketing surfaces, forms, tables, empty/loading/error states. Carries the frontend rules, the craft moves and the anti-slop tells so the mistakes are not made in the first place, and self-measures with design:audit before returning. Use for ANY user-visible…