"Why have just a slice when you can get the whole loaf?"
Loaf is an opinionated agentic framework that gives AI coding assistants structured knowledge, enforced tool boundaries, and a coherent workflow from idea to implementation to learning. Write your skills once, deploy to Claude Code, OpenCode, Cursor, Codex, and Amp.
Portable knowledge β Skills cover workflows, engineering standards, and language expertise. Build once, deploy to supported AI coding tools without rewriting anything.
Project journal model β A single SQLite-backed journal captures decisions and progress across every conversation, project-scoped and correlated by an opaque harness id. There is no session entity to open or close, so concurrent conversations across branches and worktrees stay conflict-free. Handoff artifacts live separately in .agents/handoffs/. Work survives context loss, compaction, and /clear.
Change-first workflow β The Loaf Flow is pitch β shape β implement β ship β release. /pitch authors a problem-space brief; /shape bounds a Change under docs/changes/YYYYMMDD-slug/ (promoting a capture in place when needed). loaf change check validates the contract before implementation, review, and shipping.
Profile-based agents β Functional profiles are defined by tool access, not job titles. A Smith with python-development skills becomes a backend engineer; the same Smith with infrastructure-management becomes a DevOps engineer. Skills determine what an agent knows; the profile determines what it can touch.
Conversation continuity β Pick up exactly where you left off with full traceability. The project journal captures decisions and progress in SQLite; a derived, ephemeral digest (latest wrap + recent branch entries + open tasks) is emitted at conversation start. Explicit transfer packets live in .agents/handoffs/ until housekeeping deletes them after deprecation.
Hooks as quality gates β Two hook types: enforcement hooks (pre-commit secrets scanning, pre-push linting) block bad commits automatically; skill instruction hooks inject context at tool invocation time. Language-aware and automatic.
Loaf keeps intent, implementation, and learning connected:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β PITCH AND SHAPE β
β β
β /pitch β brief β /shape β Change (or /bootstrap) β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β IMPLEMENT AND SHIP β
β β
β /implement β review β /ship β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β RELEASE AND PRESERVE β
β β
β /release Β· journal Β· /reflect Β· optional /wrap β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Discover the problem, author a brief, then bound an implementable Change (or bootstrap a project from a pitched BRIEF).
| Command | What It Does |
|---|---|
/pitch |
Human problem-discovery: authors a change brief.md or project docs/BRIEF.md |
/idea |
Quick capture of rough ideas for later triage / pitch / shape |
/shape |
Create or promote docs/changes/YYYYMMDD-slug/ into a bounded contract (shape.md + tasks/) |
/bootstrap |
Populate operating docs; with source: pitch, gap-interview and series-prep captured changes |
/strategy |
Discover and document strategic direction |
Implement a coherent Change through contained branches and pull requests, review the result, and land it deliberately.
| Command | What It Does |
|---|---|
/breakdown |
Decompose existing spec or task records when that compatibility workflow is in use |
/implement |
Execute a Change or compatible task/spec record with orchestrated agent delegation |
/ship |
Review, verify, and land one PR |
/release |
Publish a version from already-landed work |
Integrate outcomes into strategic knowledge.
| Command | What It Does |
|---|---|
/housekeeping |
Review and archive or delete lifecycle-complete artifacts |
/reflect |
Integrate learnings into strategic documents |
/handoff |
Package context for another agent, branch, task, or future conversation |
/wrap |
Optional checkpoint for synthesis that is not otherwise derivable from the journal |
CLI commands that support the workflow:
| Command | What It Does |
|---|---|
loaf build |
Build all targets after modifying skills/agents |
loaf install |
Install to detected AI tools |
loaf config check |
Validate project config and installed Loaf-managed hooks |
loaf check |
Run enforcement hooks manually |
loaf project |
Manage durable project identity (show, rename, move) |
loaf change |
Scaffold, validate, and inspect Change artifacts |
loaf task |
Manage project tasks (list, show, update, archive) |
loaf spec |
Manage existing spec records retained for compatibility |
loaf kb |
Knowledge base management |
loaf journal |
Project journal: log, recent, search, show, context, export |
loaf housekeeping |
Review and archive agent artifacts |
loaf release |
Publish a release: version bump, changelog, tag, and release artifacts |
Loaf uses functional profiles defined by mechanically enforced tool boundaries β not role titles, not domain labels. What an agent can do is fixed by its profile. What it knows comes from skills loaded at spawn time.
| Profile | Role | Tool Access | What It Does |
|---|---|---|---|
| Smith | Implementer | Full write | Forges code, tests, config, and docs. Speciality determined by skills. |
| Sentinel | Reviewer | Read-only | Watches, guards, and verifies. Cannot modify what it reviews β by design. |
| Ranger | Researcher | Read + web | Scouts far, gathers intelligence, reports structured findings. |
| Librarian | Librarian | Read + Edit (.agents/) | Tends the project journal and durable .agents/ artifacts, including wrap checkpoints. Does not forge code or scout. |
The main conversation is the Warden β it coordinates and delegates but never implements directly. See SOUL.md for the full fellowship identity.
Skills you invoke directly to drive work forward.
| Skill | Activates When |
|---|---|
pitch |
Human problem-discovery; authors a brief at change or project scale |
shape |
Shaping a brief or raw ask into a bounded Change |
breakdown |
Decomposing existing compatible spec/task records |
implement |
Implementing a Change or compatible task/spec record |
ship |
Reviewing, verifying, and landing one PR |
release |
Publishing a version from already-landed work |
research |
Investigating questions, comparing options |
strategy |
Discovering or updating strategic direction |
architecture |
Creating Architecture Decision Records |
idea |
Quick capture of ideas for later evaluation |
triage |
Review and process intake queue (sparks + raw ideas); may hand to pitch or shape |
reflect |
Integrating learnings into strategic docs |
housekeeping |
Reviewing and archiving agent artifacts |
handoff |
Creating disposable transfer packets in .agents/handoffs/ |
bootstrap |
Bootstrapping new or existing projects (series-prep after pitched BRIEF) |
wrap |
Optional end-of-conversation checkpoint: shipped, pending, next |
Explore and brainstorm are agent techniques (not user slash entry); agents reach for them when direction is undecided β human entry intent routes to /pitch.
Background skills that activate automatically during agent coordination and project management.
| Skill | Activates When |
|---|---|
orchestration |
Journal continuity, delegating agents, Linear integration |
council |
Multi-perspective deliberation during complex decisions |
knowledge-base |
Managing project knowledge files |
loaf-reference |
Looking up which CLI command to use |
Background knowledge that activates automatically to enforce quality.
| Skill | Activates When |
|---|---|
foundations |
Writing code β style, naming, TDD, verification, code review |
git-workflow |
Branching, commits, PRs, squash merges |
debugging |
Diagnosing failures, tracking hypotheses, flaky tests |
security-compliance |
Threat modeling, secrets management, compliance checks |
documentation-standards |
ADRs, API docs, changelogs, Mermaid diagrams |
Domain expertise that loads based on project context.
| Skill | Activates When |
|---|---|
typescript-development |
TypeScript, React, Next.js, Tailwind, Vitest |
python-development |
FastAPI, Pydantic, pytest, async patterns |
ruby-development |
Rails 8, Hotwire, Minitest |
go-development |
Go services, concurrency, testing |
interface-design |
UI/UX, accessibility (WCAG 2.1), design systems |
database-design |
Schema design, migrations, query optimization |
infrastructure-management |
Docker, Kubernetes, CI/CD, Terraform |
power-systems-modeling |
Thermal rating models, conductor physics |
Build once, deploy everywhere. Skills are the universal layer; profiles and hooks adapt per target.
| Target | Profiles | Skills | Hooks | Status |
|---|---|---|---|---|
| Claude Code | β | β | β | Primary |
| OpenCode | β | β | β | Full support |
| Cursor | β | β | β | Full support |
| Codex | β | β | Fallback | Skills + opt-in basic command policy |
| Amp | β | β | β | Skills + runtime plugin |
brew tap levifig/tap
brew install loafHomebrew installs the native loaf binary plus Loaf's packaged content under the tap-managed prefix. Use brew upgrade loaf after releases.
/plugin marketplace add levifig/loafUpdates happen automatically via plugin marketplace. Commands are scoped under loaf: (e.g., /loaf:implement).
npx github:levifig/loaf installDetects installed tools, lets you select targets, and installs pre-built distributions. To bring an existing installation current afterwards, run loaf upgrade β it syncs every installed harness from anywhere, and refreshes project files only inside a Loaf repo. Codex's optional outside-sandbox policy is explicit: loaf install --to codex --codex-basic-commands installs only centrally classified basic command leaves with absolute executable prefixes; unclassified and operator commands remain gated. Other harness adapters are not implied by this policy.
Projects created with the older TypeScript runtime can keep using their existing .agents/ Markdown files after installing the native Go runtime. If no SQLite database exists yet, Loaf runs supported task, spec, report, journal, and housekeeping commands in markdown-only compatibility mode.
Use this sequence when you are ready to adopt SQLite-backed state:
loaf state status
loaf migrate markdown --dry-run
loaf migrate markdown --apply
loaf state statusThe dry run counts importable artifacts and skipped files without creating a database. The apply step imports .agents/ Markdown into the XDG data-home SQLite database without rewriting the source Markdown files. Loaf uses one global SQLite file and partitions rows by stable project ID, so multiple projects share the same database path while project queries stay isolated. Project IDs are not bound to the checkout path or friendly name; use loaf project rename <name> for display names and loaf project move --from <old-path> after moving a checkout. Newer graph-oriented commands such as loaf idea, loaf spark, loaf tag, loaf bundle, and loaf link require initialized SQLite state; run loaf state init for a fresh project or loaf migrate markdown --apply for an existing Markdown project.
Loaf keeps recovery claims explicit. local_rollback is the default same-data-home snapshot for local corruption rollback; project-scoped replay remains the ordinary migration rollback path; and external_disaster_copy is an operator-selected non-temporary external destination that may help with data-home or device loss but does not prove physical off-device durability. Every backup reports its resolved destination, checksum, SQLite validity, journal retrieval readiness, recovery readiness, and latest canonical journal watermark. device_loss_protected remains false because selecting a path is not evidence that it is remote or durable.
Create and verify backups with loaf state backup, loaf state backup --to /absolute/external/directory, and loaf state backup verify <backup>. Use loaf state backup restore <backup> --to /absolute/empty/rehearsal/loaf.sqlite for an isolated disposable rehearsal; the command proves an exact copy, integrity, foreign-key, schema, project, journal, search-parity, and watermark match without opening or mutating the live database.
Activating a verified copy is a manual, quiesced operator procedure, not an automated restore command:
- Stop or terminate every Loaf process, harness, background writer, and related service, then verify universal quiescence before any quarantine or activation step. Loaf has no automated live mutation lease and makes no concurrent-restore claim.
- Verify the durable backup and complete the isolated disposable rehearsal, then create and retain a preserve-current backup before changing the live data home.
- While all writers remain quiesced, move the old main database and any matching
-waland-shmsidecars together into a durable quarantine. Never mix sidecars from different database files, and never move only the main file when a sidecar belongs to it. - Install the verified copy at the resolved live database path with mode
0600, start current Loaf, and runloaf state doctor,loaf state status, and a known journal retrieval check. - If validation fails, quiesce again and activate the preserve-current copy using the same procedure; do not continue with concurrent writers.
Install locations:
| Target | Location |
|---|---|
| OpenCode | ~/.config/opencode/ or ~/.opencode/ |
| Cursor | ~/.cursor/ |
| Codex | $CODEX_HOME/skills/ or ~/.codex/skills/ |
| Amp | ~/.amp/ plus configured skill/plugin locations |
Claude Code only.
Recommended MCP Servers: Linear (issue tracking). Optional: Serena (semantic editing for large codebases β most code intelligence is now built into Claude Code's native LSP). Not bundled β loaf install will detect and recommend missing MCPs.
LSP Servers: gopls, pyright, typescript-language-server, solargraph
git clone https://github.com/levifig/loaf.git
cd loaf
npm install
npm run buildSee AGENTS.md for development guidelines.
npm run typecheck # Type check
npm run test # Run tests
loaf build # Build all targets (after initial npm run build)
loaf install --to all # Install to detected toolsTesting locally:
- Claude Code:
/plugin marketplace add /path/to/loaf - Others:
loaf install --to all(afternpm link)
MIT