The directory tree IS the process state. A tiny library for filesystem-shaped agent processes.
Project description
pmstate
The directory tree IS the process state.
A tiny Python library for agent-driven processes that live on the filesystem. Each node in your process tree owns a slice of state on disk — an append-only event log or a JSON table. The agent navigates, reads, spawns, and prunes the same way a human navigates a project folder.
No DSL. No decorators. No compile step. Plain attrs-shaped values, plain
JSON on disk, and a four-tool surface any LLM harness can drive.
Why
Most agent frameworks treat process state as opaque blobs in a vector store
or workflow engine. pmstate flips it: the tree of folders and files is
the state. That means:
- An agent can
ls-style introspect what's happening at any depth. - Branches spawn and die at runtime — no recompile.
- Every event is a CloudEvents-shaped JSON line. Replayable, auditable, human-readable.
- A human can
cata log file and see exactly what the agent saw.
Install
pip install pmstate # core
pip install pmstate[claude-sdk] # with the Claude Agent SDK harness
Example: a procurement flow in 28 lines
from pmstate import Node, Log, Table, Tree
from pmstate import ClaudeHarness
def quote_view(events):
"""Vendor quotes received and pending approval."""
pending = [e for e in events if e["type"] == "quote.received"
and not any(a["data"]["quote_id"] == e["id"]
for a in events if a["type"] == "quote.approved")]
return {"pending_count": len(pending), "latest": pending[-1] if pending else None}
def procurement_rollup(children):
return {
"open_quotes": children["quotes"]["pending_count"],
"open_lpos": children["lpos"]["count"],
"blocked": children["quotes"]["pending_count"] > 5,
}
procurement = Node(
"procurement",
description="Vendor quotes, LPOs, approvals.",
reducer=procurement_rollup,
children=[
Node("quotes", state=Log("state/quotes.jsonl"), view=quote_view),
Node("lpos", state=Log("state/lpos.jsonl")),
Node("vendors", state=Table("state/vendors.json")),
],
)
tree = Tree("project_alpha", root=Node("active", children=[procurement]))
ClaudeHarness(tree).run()
That is the full procurement flow. One custom view, one reducer, three leaves.
The agent gets four tools (list_tree, get_state, find_state,
read_log), discovers the structure on its own, and answers questions like
"what's blocking us?" by reading the rolled-up state.
Concepts
- Node — a named position in the tree. May own
state(aLogorTable), aview(function: events → dict), areducer(function: children's views → dict), andchildren. - Log — append-only JSONL of CloudEvents-shaped events.
- Table — JSON document for slowly-changing reference data.
- Tree — the wrapper that gives you
spawn(parent, child)andprune(path)for runtime mutation. - Harness — adapter that wires the four agent tools into an LLM runtime.
v0.1 ships
ClaudeHarness; the surface is harness-agnostic.
Quickstart
A runnable end-to-end example lives at
examples/procurement/. After installing the
claude-sdk extra and setting ANTHROPIC_API_KEY:
git clone https://github.com/matshoppenbrouwers/pmstate
cd pmstate
uv sync --all-extras
uv run python -m examples.procurement.seed_data
uv run python examples/procurement/run.py "what is pending in procurement?"
The agent navigates the procurement subtree, calls the four pmstate tools, and answers from the rolled-up view. Costs a few cents per run.
Status
v0.1 alpha. Open but not supported. One user (Laterite). API will break without warning. PRs not yet accepted. Stars welcome.
License
MIT.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pmstate-0.1.0.tar.gz.
File metadata
- Download URL: pmstate-0.1.0.tar.gz
- Upload date:
- Size: 132.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfc14b03dcb6efbf1bd0165da5c63ab946c7baf9a6af57f1e6102f853cf06987
|
|
| MD5 |
7377054459612b3839940f1f5b70bf50
|
|
| BLAKE2b-256 |
fa1d4cb8b22f5aaf3c3504dc85fdb7b293ca5fb23ab3079316d28c9e82f872c4
|
File details
Details for the file pmstate-0.1.0-py3-none-any.whl.
File metadata
- Download URL: pmstate-0.1.0-py3-none-any.whl
- Upload date:
- Size: 21.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.9 {"installer":{"name":"uv","version":"0.11.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1e3fb9e8ee97a7a41789f22de965f12dc380719768f29355ddabbfef327ece4e
|
|
| MD5 |
f2087651f1213553e82fe33eba757d34
|
|
| BLAKE2b-256 |
d3beaca7ae4fe74557d1c616bd645df839fb3252ade1e2244f57b317d377deb7
|