"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 complete pipeline from idea to implementation to learning. Write your skills once, deploy to Claude Code, OpenCode, Cursor, Codex, and Amp.
Portable knowledge β 33 skills (31 active, 2 deprecated) covering workflows, engineering standards, and language expertise. Build once, deploy to five 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.
Spec-first pipeline β Ideas are shaped into bounded specs before any code is written. Every change flows: Idea β Spec β Tasks β Code β Learnings. Nothing gets lost.
Profile-based agents β Three functional profiles 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.
Session 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's commands form a three-phase workflow that mirrors how good software gets built:
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β PHASE 1: SHAPE β
β β
β /idea β /brainstorm β /shape β SPEC β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β PHASE 2: BUILD β
β β
β /breakdown β /implement β /ship β /release β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β PHASE 3: LEARN β
β β
β /housekeeping β /reflect β /wrap β
β β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
Transform raw ideas into implementable specs with clear boundaries.
| Command | What It Does |
|---|---|
/idea |
Quick capture of rough ideas into .agents/ideas/ |
/brainstorm |
Deep exploration of a problem space |
/shape |
Rigorous shaping into bounded spec (what's IN and OUT) |
/strategy |
Discover and document strategic direction |
Decompose specs into atomic tasks and execute with specialized agents.
| Command | What It Does |
|---|---|
/breakdown |
Split spec into agent-sized atomic tasks |
/implement |
Execute tasks 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 session |
/wrap |
Session summary: what shipped, what's pending, what's next |
CLI commands that support the workflow pipeline:
| 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 task |
Manage project tasks (list, show, update, archive) |
loaf spec |
Manage spec lifecycle |
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 four 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 session 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 |
|---|---|
shape |
Shaping ideas into bounded specs |
breakdown |
Decomposing specs into atomic tasks |
implement |
Starting task or spec implementation |
ship |
Reviewing, verifying, and landing one PR |
release |
Publishing a version from already-landed work |
brainstorm |
Deep exploration of a problem space |
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) |
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 |
wrap |
Optional end-of-conversation checkpoint: shipped, pending, next |
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 |
Note: council-session skill renamed to council for consistency. Removed skills: resume-session, reference-session.
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. Re-run with --upgrade to update. 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