The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Workfile listing page.
The repository is the database.
@illodev/workfile is a repository-native protocol for coordinating Work, Docs,
History and durable project Memory between humans and software agents.
Markdown files in the repository are canonical. The CLI, HTTP API and local UI use the same core services, collection registry, index and validation rules. No exclusive state is kept in the browser or in a database.
Work, Docs, History and Memory share the common
ProjectRecordindex. The core, CLI, HTTP server and MCP runtime are authored in TypeScript and distributed as compiled ESM with public declarations. The local UI is precompiled and included in the package, and semantic search runs on-device through the optional@illodev/workfile-search-localworkspace package.
Try the live demo — it replays this repository's own workspace: the real cards, releases, incidents and learnings of Workfile's development. Mutations work per browser session and reset on reload.
https://github.com/user-attachments/assets/c9cd3035-6729-4cda-9172-984829ab5dbc
|
In production |
Workfile — dogfooding: every release is planned and recorded in this repo's own .project/
|
Workfile records work. It does not configure agents.
The two get confused because both live next to the same repository. Ecosystem configurators — gentle-ai is a good example — install a persona, curated skills, model routing, MCP servers and review gates into the agents you already use, across many agents at once. Their question is how your agent works. Workfile's question is what was done, who holds it and on what evidence, and its answer is Markdown files that outlive the agent, the session and this package.
They compose. A well-configured agent still needs somewhere durable to write down what it did.
What is here, and is not a configurator's job:
workfile doctor when malformed. No exclusive state in a
browser, a database or ~/.config. Remove the package and the records stay
readable.CARD_CLAIM_OWNER_MISMATCH
instead of quietly accepting it — a guarantee no sentence in a prompt can make.review is not done. done requires evidence from somewhere the code
actually ran. A merge is not evidence.What is deliberately absent: Workfile does not install or update agents, ship a
persona, route models or curate a skill catalogue. It syncs its own protocol into
the instruction files an agent already reads (workfile agents sync) and exposes
every operation over MCP — vendor neutral, but a server, not an ecosystem.
Every workfile … command in this README requires the package to be installed —
pnpm dlx / npx one-offs run a command and discard the binary afterwards:
wf is an alias, not a rename: both names reach the same entry point, and the
help and error hints answer in whichever one you typed. Keep the long form in
anything generated or shared. wf only resolves once the package is installed,
and an unrelated wf exists on the registry — so npx wf would fetch someone
else's tool where npx workfile fails outright.
pnpm dlx @illodev/workfile init is fine for one-shot initialization, but keep the
package as a devDependency afterwards: that is what makes the project* scripts that
init adds to package.json resolve. That prefix is an npm script namespace — pnpm project opens the UI, pnpm project:doctor runs the checks — and has nothing to do
with the old binary name.
The published surface exposes JavaScript and declarations through conditional package exports. TypeScript consumers receive typed configuration, workspace, record, search and integration contracts from the root package and every documented subpath:
The CLI and UI do not require TypeScript in consuming projects. React, Primer, Vite and the
UI type packages are build-only dependencies; the installed package serves bundled browser
assets from dist/ui.
A project is discovered through project.config.mjs and normally stores protocol-owned
files under .project/:
Minimal configuration — a plain object, not defineProject(...). The loader
applies defineProject itself, and an import here is a bare specifier the file
can only resolve with node_modules present, which breaks the two consumers
that run without one: a pnpm dlx-initialized workspace before the package is
installed, and the generated CI job's npx run on a clean clone. The JSDoc
annotation keeps editor typing without a runtime import:
Project-specific areas, paths and vocabularies are resolved at runtime and exposed through the effective schema. The eight Work statuses and the schema-v2 memory collection semantics remain protocol contracts.
Cards are managed Markdown records under .project/cards/. The Work module provides
hierarchy, dependencies, claims, scope, status transitions, archives, assets and
conflict-aware writes.
Docs combines two sources without copying existing documentation:
PATH-* IDs and remain read-only through the protocol..project/docs/ with stable DOC-NNNN IDs, typed
frontmatter and revision-aware mutations.Managed documents are read recursively, so they can be grouped in folders — including
folders you create by hand. IDs stay global and sequential: a folder is organization,
not identity. New documents follow docs.layout (kind, the default, groups them by
document kind; flat writes them to the managed root) and --folder overrides it.
The doctor detects broken local links, unresolved related or superseded records, missing scope paths and stale review/source relationships.
History uses atomic change fragments rather than asking multiple branches or agents to
edit one shared CHANGELOG.md.
Unreleased fragment:
A release consumes selected fragments, moves them beneath the release directory and
creates a canonical REL-NNNN record. Public or internal changelogs are derived output.
Release versions can use semver, calendar or freeform validation according to
configuration. Fragments and releases participate in the same workfile search and backlink
graph as cards, docs and memory.
Memory is a set of typed, atomic and lifecycle-aware records rather than a single growing conversation transcript:
| Collection | Prefix | Purpose |
|---|---|---|
| Learnings | LRN | Reusable observations with confidence and occurrence signals |
| Decisions | ADR | Proposed, accepted, rejected or superseded decisions |
| Incidents | INC | Operational events, severity, timing and corrective actions |
| Conventions | CONV | Durable rules followed by humans and agents |
| Context | CTX | Useful but potentially expiring project state |
The doctor checks invalid lifecycle states, missing graduation/supersession targets, expired context and incomplete incident resolution metadata.
Every module normalizes its files as ProjectRecord entries through a common collection
registry. The derived process-local index provides:
source: links and local Markdown links;Canonical state always remains on disk. The server cache is short-lived, invalidatable and fully rebuildable.
The initializer can run interactively or deterministically in automation. It detects the package manager, monorepo folders, likely card areas, documentation sources, existing agent environments and CI providers. A dry run exposes the exact filesystem plan.
The generated project.config.mjs exports a plain object, so a workspace initialized via
pnpm dlx remains loadable before the package is installed locally. Existing files are not
overwritten unless --force is explicit. .project/.cache/ is added to .gitignore; all
canonical protocol files remain tracked.
The UI ships with a demo mode for static hosting (Vercel, GitHub Pages, any file server).
npm run build:demo builds the UI with an in-memory API that replays a snapshot of a seeded
workspace: every view works and mutations behave normally for the session, then reset on
reload. The repository includes a vercel.json, so importing it into Vercel deploys the
demo with zero configuration.
Regular builds tree-shake the demo layer and snapshot out of the bundle.
Releases publish from CI via npm trusted publishing (OIDC) — no npm token is stored in the repository. The circuit:
workfile changelog release <version> and workfile changelog render --write.npm version <version> then git push && git push --tags.
The version hook carries every packages/* package inside the same bump —
workspace packages always ship the core's version.Release workflow verifies the tag matches package.json (and that no
workspace version drifted), runs check:release (build, typechecks, tests,
audit and a packaged-tarball smoke) with pnpm, and publishes the core and
every workspace package with the npm CLI under latest.There is no prerelease channel: every published version is one npm install
away, and a v*-rc.* tag fails the release rather than publishing. That is a
consequence of trusted publishing rather than a preference — OIDC authorizes
npm publish and no other registry write, so CI cannot move a dist-tag off a
release candidate once it has been set.
Canonical instructions and workflows live under .project/agents/. Compact managed blocks
are synchronized into supported environments without replacing unrelated user content:
Managed blocks carry the package version and a SHA-256 digest. agents check and
workfile doctor report missing, unmanaged or stale generated instructions. Agent context is
bounded and prioritizes the selected card, direct relationships, active conventions,
unresolved incidents and non-expired context instead of loading all workfile memory.
Workfile includes a local, dependency-free MCP server using UTF-8,
newline-delimited JSON-RPC over stdio. It delegates every operation to the same core
services used by the CLI and HTTP API, speaks both the modern (2026-07-28) and legacy
(2025-11-25) protocol revisions, and exposes 30 tools, four resources and three
prompts. Mutation tools disappear entirely in --read-only mode.
Point a client at it without installing anything. This is the invocation the
official registry publishes for
io.github.illodev/workfile, and what most clients will build for you from
that listing:
mcp there is a subcommand, not a binary: npx resolves the bin whose name
matches the package and hands it everything that follows. Append --root PATH
when the client starts somewhere other than the workspace — it searches
upwards for .project/ otherwise — and --read-only to serve the read tools
alone, with every mutation refused.
With the package installed, the same server is a subcommand away:
For Claude Code the same surface ships as a plugin — the MCP server plus
/claim, /context, /next and /done commands, a skill, and hooks that
turn card claims into an executable guard rail — with no generated files
committed to the repository:
The full contract — tool inventory, resources, prompts, process hygiene and the
plugin's surface — is documented in docs/mcp.md.
The server is listed on Glama, which builds it in a container and inspects the capabilities it reports:
Lexical search remains deterministic and local. Hosts may inject an optional semantic provider programmatically; Workfile never selects a vendor or sends repository content over the network by itself.
@illodev/workfile-search-local runs embeddings on-device (onnxruntime-web,
ONNX on CPU, Xenova/multilingual-e5-small quantized) — repository content
never leaves the machine. Declare it in project.config.mjs with a guarded
import, because the config must also load where the package cannot resolve
(the generated CI job runs npx on a clean clone):
Know the cost model before wiring it: the first hybrid search embeds every
uncached candidate record — minutes of sustained CPU on a few-thousand-record
workspace, triggered by whichever surface searches first (CLI, board UI, or
the MCP server an agent loads). The provider caps ONNX at half the cores by
default, persists per batch so an interrupted pass resumes instead of
restarting, and reports progress on stderr; sizing search.maxProviderRecords
to your corpus makes every record eligible. Details and options in
packages/search-local/README.md.
The adapter boundary makes external data disclosure an explicit host decision and keeps the canonical Markdown/index implementation provider-independent.
Programmatic hosts can group approved semantic search and health adapters in a small, vendor-neutral registry:
The registry is accepted by the MCP server and doctor APIs. It is intentionally limited in the current RC: vendor-specific issue trackers, deployment systems and credentials are not part of the canonical package. The boundary can mature from real integrations without committing the schema to GitHub, GitLab, Jira or a deployment provider.
CI files use the same managed-file contract and can be generated for GitHub Actions, GitLab CI or a generic shell runner:
Templates run both the workfile doctor and agent synchronization check against the pinned Workfile version.
The v1 .planning system can be planned and applied with deterministic collision checks:
Valid legacy cards and assets become canonical v2 Work records. Old proposals, changelogs,
learnings and malformed records are preserved under .project/sources/legacy-planning/
rather than being silently reinterpreted with an incompatible schema. Every applied
migration writes .project/migrations/legacy-planning.json with source, destination, digest
and result metadata.
Commands return stable machine-readable errors with --json. A stale revision exits with
code 3; configuration errors exit with code 2; validation and not-found errors exit
with code 1. The complete command surface is documented in
docs/cli.md.
workfile ui --read-only --host 0.0.0.0 --allowed-host board.example.com serves the same
board as a thing people read: every mutating route answers 409 WORKSPACE_READ_ONLY and
the UI drops its editing affordances. There is still no authentication of its own, so put
a reverse proxy that authenticates in front of anything published this way — see
docs/security.md.
workfile ui starts the local server, normally at http://127.0.0.1:4747. The versioned
/api/v2/* surface covers the workspace, unified search, and every collection — cards,
docs, changelog (including release preview/assembly/render), memory lifecycle, agents and
CI sync. Managed record reads expose an ETag, writes accept If-Match, and errors use
stable codes. The endpoint reference lives in docs/http-api.md.
Navigation is a collapsible sidebar grouped by domain:
Health issues can navigate to records in any domain. Runtime configuration drives card
areas, change vocabularies and memory collection statuses; these values are not compiled
into the views. File links open the local editor, or the repository web UI when the
server provides a repoUrl (as the hosted demo does).

The Overview answers "how are we doing" in a sentence chosen worst-first — doctor errors, hanging claims, colliding scopes, blocked cards, work in flight — above the trail of every move the agents wrote while you were away.
| Explorer with the inspector open | Gantt timeline |
|---|---|
![]() | ![]() |
| History with releases | Memory (dark theme) |
|---|---|
![]() | ![]() |

Workflow reads the collections into one graph instead of four lists: the first row of toggles selects them, the second selects relation types. A relation declared in frontmatter draws a solid edge and an ID written into a sentence a dashed one, because a link in prose is a weaker claim than a field and should not look equally solid. Prose scanning is off by default — it is 294 of this workspace's 742 edges.
The repository is a pnpm workspace: the root is a private shell that holds the
version and delegator scripts, while everything published lives under
packages/ — the core in packages/workfile, providers
like packages/search-local beside it, all shipping
in version lockstep. pnpm is pinned via the packageManager field
(corepack enable picks it up automatically):
pnpm run check compiles the TypeScript runtime and declarations, checks the strict public
consumer contract, typechecks and bundles the React UI, and runs the complete test suite.
pnpm run smoke:package packs and installs the actual tarball in a temporary project before
exercising initialization, all four domains, MCP and the packaged UI — the smoke installs
with npm on purpose, exercising the npm consumer path.
prepack rebuilds the runtime declarations and UI so a future published package contains
only compiled runtime artifacts under dist/, never development TypeScript or a copied UI
source tree.
.d.ts declarations for the public package and subpath exports;docs/getting-started.md — install, initialize and the
daily loop.docs/cli.md — complete CLI reference for every module.docs/http-api.md — endpoint reference, conventions and errors.docs/mcp.md — MCP server contract: tools, resources, prompts.docs/security.md — threat model of the local server,
request guard, asset handling and what is deliberately out of scope.docs/ui.md — the interface: its build, the zero-dependency
guarantee and how the shadcn migration coexists with the design system.docs/SPEC.md — the normative protocol specification: data model,
record contracts, revision semantics and the MCP integration contract.