openloops
Tells you what your Claude Code sessions were doing — and still tells you after the transcripts are gone.
Claude Code keeps a full JSONL transcript of every session, then garbage-collects it
after about a month. Meanwhile the thing you actually wanted from that session — what
it did, what it left for you, how to get back to it — was one paragraph at the end.
openloops reads the transcripts, writes one short dated markdown digest per session,
and keeps the digests. It is a retention device, not a dashboard.
No model is called. No network request is made. No account, no credentials, no configuration: it reads files you already have and writes files you already own.
There is a second, smaller thing in the box: ol owed lists the manual-task issues
your agents filed when they got blocked on you, and re-runs the verify predicate each
one carries before showing it — so an ask you discharged out of band reads as done
instead of haunting the list for months. That half does need gh, and it is the only
part that does. See what you owe your agents.
Install
pip install openloops
That puts an ol command on your PATH. Python 3.10+.
Quick start
CLI
ol # sync, then show what your sessions left open
ol owed # what you still owe your agents, re-checked before it prints
ol ls --state all # every digest, newest first
ol ls --confidence high # drop the ones open only because nothing said otherwise
ol show 2b1f # one digest, by session id or a unique prefix
ol status # where the digests are, how many, how stale the cache is
ol install-job # run the sync every 15 minutes (macOS launchd)
Python API
import openloops
openloops.sync() # read transcripts → write digests
for row in openloops.ls(state="open"): # what your sessions left open
print(row["session"], row["title"])
print(openloops.show("2b1f")["text"]) # one digest, in full
report = (
openloops.owed()
) # open `manual-task` issues, each re-checked against the world
print(report["counts"]) # {'open': 8, 'discharged': 1, 'unknown': 0, ...}
What a digest says — and what it never says
A digest is a dated record of what one session said. It carries the session's last turn, the prompt that provoked it, a context-compaction summary if the session made one, and any pull-request links the session recorded for itself. Every heading carries the timestamp of the thing under it.
It never says that anything is currently true. There is no "still open", no "more to
do", no "waiting on you" — because openloops has checked nothing against the world, and
a snapshot presented as a live fact is worse than no snapshot at all. The front matter
says verified: false for exactly that reason.
This is the constraint the whole design is arranged around. A tool that quietly tells you a loop is open when you closed it out of band destroys the count, and the count is the product.
open/ and archive/ are loop state, never process state
Digests are filed under open/ or archive/ by how the session's own last turn
read — not by whether a claude process is running. Five rules decide it, and the
digest always prints which one fired and what cues it saw, so you can disagree with it:
| Rule | Reads as |
|---|---|
| the last turn is a usage-limit or API-error notice | open — it was cut off |
| the transcript stops before the assistant's turn completed | open |
| the closing line is a question put to you | open |
| the latest cue in the closing lines defers something | open |
| the latest cue in the closing lines declares it finished | archive |
| nothing decided it, but the session's own recap does | either |
| nothing decided it at all | open, marked low confidence |
archive is earned, open is the default. A session only reaches archive by
saying it finished. Against hand-labelled sessions the cue rules never produced a false
archive but caught only about half the genuinely finished ones — and that is the right
direction to be wrong in, because a false archive buries a loop this tool exists to
surface, while a false open only lengthens a list already sorted by recency.
Conflicts resolve at sentence granularity, and inside a sentence an open cue always beats a close cue. Real closing paragraphs carry both kinds: "say the word and I'll remove it. Nothing is blocking; safe to close" is finished, and "you're safe to exit … the two threads waiting for you are" is not — the last cue-bearing sentence decides those. But "Needs you (nothing blocking, all tracked): the #146 decision" puts the close cue inside a parenthetical of the sentence that hands work back, so within one sentence the asymmetry decides instead of position.
Expect most sessions to land in open/. That is what agentic sessions do, and a split
that came out balanced would be a split that was lying. ol ls --confidence high drops
the ones that are open only because nothing said otherwise.
If open ever came to mean "a process is running", this would be a session dashboard.
It is not one, and claude already has that view.
Where things are stored
~/.local/share/openloops/digests/{source}/open/{session}.md
/archive/{session}.md
~/.local/state/openloops/sync-state.json ← a cache, not data
{source} is this machine. Two machines syncing digests into one git repository never
write the same path, so there is no merge to reconcile — the directory layout is the
answer to cross-machine sync. The label seeds from the machine's short hostname and is
then sticky, remembered in the state directory: macOS renames a host that collides on
a network, and a label that drifted would silently fork the store into two copies. Every
ol sync prints the label it is writing under, and OPENLOOPS_SOURCE overrides it.
The cache is deliberately somewhere else. Deleting it re-reads every transcript and must produce byte-identical digests; deleting the digests loses whatever the transcripts no longer hold. Those are very different operations and they should not live in the same folder.
Override with OPENLOOPS_DATA_DIR, OPENLOOPS_STATE_DIR, OPENLOOPS_SOURCE.
The two seams
Both are one keyword argument, and both default to something that already works:
openloops.sync(
transcript_source=my_sessions, # any Mapping[str, Session]
digests_store=my_store, # any MutableMapping[str, str]
)
These two are the digest path's. The obligation reader has its own pair on the same
pattern — issues_source= (defaults to a gh search) and run_predicate= (defaults to
a time-bounded subshell) — and with both injected it needs no network and no gh, which
is how the whole of it is tested.
transcript_source= defaults to a direct reader of Claude Code's on-disk layout.
digests_store= defaults to a dol store over a directory of markdown files, with its
encoding pinned to UTF-8 and its delete made a real delete. Point it at an S3-backed
store, or at a git-synced directory shared between machines, and nothing else changes.
Pass state_dir= too when you swap a seam in a test: the change-detection cache is
separate from both, and left alone it would record your fixture's revisions in the real
one.
Keeping it up to date
ol install-job # a launchd StartInterval agent, every 15 minutes
ol job-status # installed? loaded? when did it last actually write?
ol uninstall-job
It is a periodic job, not a daemon, and that is a decision rather than an
implementation detail: a tick that crashes is repaired by the next one, whereas a
resident process that dies leaves its last output behind with nothing scheduled to
correct it. ol job-status reports when a tick last wrote, because "the job is
registered" and "the job is working" are not the same claim.
The installer is macOS-only. On Linux, put the same command in a systemd user timer or
a crontab line — openloops itself is cross-platform.
Nothing leaves without being scrubbed
Transcripts are the highest-entropy secret source on a developer machine: pasted
tokens, .env contents, tracebacks full of absolute paths. A digest store can be a
synced git repository, so a written digest is an export surface, and the discipline
belongs before the first byte is written rather than before the first push.
- Absolute paths under your home directory are rewritten to
~-relative. - Credential-shaped text raises. It is never silently redacted, because a silent redaction teaches nobody that a secret was there. That session is skipped, the run says so and exits non-zero, and the error names the pattern class and offset without ever quoting the match.
Why not just read the transcripts, or use claude itself?
claude shows you your live sessions, which is a different question — and a better
answer to it than this could be. The transcripts themselves answer the question
openloops answers, right up until they are deleted. A digest is a few hundred bytes
and outlives the megabyte it came from.
There is one caveat worth knowing before you read a digest as a diary: a Claude Code session is not a sitting. Sessions get resumed, so a single session can span days, and a digest keyed on one is a digest of a thread of work rather than of an afternoon.
What you owe your agents — and why the count has to be re-checked
When an agent gets blocked on something only you can do — a secret it cannot write, a
permission it does not have, a decision that is yours — the ask usually dies in a final
message nobody re-reads. The fix is not a new database: it is a manual-task label on
an issue in the affected repo, which outlives the session and is queryable from a
terminal or a phone with every session stopped.
ol owed lists those issues. What it adds over one gh query is the part that decides
whether the count is worth anything:
ol owed # list them, and re-check each one against the world
ol owed --no-verify # list them, executing nothing
ol owed --owners acme,widgets
Obligations get discharged out of band. Somebody adds a deploy key in a web UI, pays an invoice, answers in chat. None of that emits an event anyone is listening to, so the issue sits open for months describing something that was done in five minutes. A stale row annoys; a phantom row destroys the count, and the count is the whole product.
So each obligation carries its own answer, in its body, as a shell command whose exit status is the question:
**Verify:** `gh secret list --repo OWNER/REPO --json name -q '.[].name' | grep -qx PYPI_PASSWORD`
and ol owed runs it before showing you the row. Three states come back, never two:
| state | means |
|---|---|
open |
no predicate at all, or the predicate ran and returned non-zero |
done |
the predicate returned 0 — the ask is finished, the issue is merely still open |
? |
nothing could be checked: no gh, no network, a timeout, a malformed predicate |
? is the important one. A tool that reports "nothing owed" because it failed to
check is worse than no tool, so unknown never collapses into either of the others —
not into open, and not into done. If the query itself fails you get owed ? and the
reason, never a count.
Nothing is ever written. A passing predicate is evidence, not authority: ol owed
does not close, reopen, relabel or comment on anything, and it never will. It shows you
the command, its exit status and what it printed, and you decide. There is also no local
copy of any of it — no store, no schema, no history, no event log. The label is the
record, and openloops is a query over it.
The part you should know before you run it
Evaluating a predicate means executing text out of a GitHub issue body. That is a real capability, and it is bounded in five ways, all of them visible:
- a predicate runs only for owners you configured (
--owners, orOPENLOOPS_OWNERS;trusted_owners=in Python, which defaults to the owners you searched — so widening the search never quietly widens what runs); - the command is printed next to its verdict, in full and never abbreviated, so nothing executes invisibly and you can disagree with the answer;
ol owed --no-verifylists without executing anything — every row that has a predicate then reads?, because that is what is true about it;- every evaluation is time-bounded, and a timeout is
?rather than an answer; run_predicate=replaces the evaluator entirely, andissues_source=the reader.
The default is to check, and that is a deliberate choice rather than an oversight: not
checking has a silent failure mode (a count quietly full of things you finished weeks
ago) and checking has a loud one (a command you can see on screen). One honest limit —
predicates are POSIX shell, so on a shell that cannot parse one the row reads open.
That is the safe direction to be wrong in, and it is why the exit status is always
shown.
The name
Two live collisions, both deliberate, both worth knowing before you search for it:
- OpenLoops is an established particle-physics one-loop amplitude library (openloops.hepforge.org). It is not on PyPI, and it is what a web search will find first.
- openloops is also a browser-history tool that groups your browsing into what you were trying to do — an adjacent product using the same metaphor, in a different distribution channel.
Neither blocks pip install openloops. The command is ol because a read path that
costs eighteen characters to reach is a read path that does not get reached.
Design tests
These are tests in the suite, not aspirations:
- A digest is derived, never authored. Delete the digest store and the cache, sync
again, and every digest whose transcript still exists comes back byte-for-byte.
Digests whose transcripts have since been collected are retained — that is the
point of the tool — and
ol statuscounts them separately. - The suite passes with no network, no credentials, and no
~/.claudepresent. import openloopsdoes not import the CLI library. The core has no opinion about how it is called.- Nothing in this repository carries an absolute home path or credential-shaped text — checked mechanically, by the same code that scrubs your digests.
- No surface exposes an operation that writes. Enforcement is by omission: there is
no
close, nocomment, noPOST. A test walks the source and fails the build if one appears. unknownnever becomesopenand never becomesdischarged, and a listing that failed prints?rather than a count. Both are tested directly, because they are the two ways a tool like this becomes a liar.
License
Apache-2.0.
Release files for openloops 0.1.5
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| openloops-0.1.5.tar.gz | 102.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| openloops-0.1.5-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 175.4 kB
Release files / openloops-0.1.5.tar.gz
| Download URL | openloops-0.1.5.tar.gz |
|---|---|
| Size | 102.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
75299d5d59dfb523c23c5f464e7b44d0ce72043774cf0df26cc3f7183623149c
|
|
BLAKE2b-256 checksum How to use checksums |
9391d6c31882d0956cd0c4baec23002b84a30f364e005d883df2c97c915e543b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / openloops-0.1.5-py3-none-any.whl
| Download URL | openloops-0.1.5-py3-none-any.whl |
|---|---|
| Size | 73.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
b47c782800a68cdc38d6857412be4607191e4614151f3b2e0f17408d1e669236
|
|
BLAKE2b-256 checksum How to use checksums |
e6eb8e2ec74514c83d79fc6a012591e84508c878a2ee416d33f8713a1b8bb8d2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.12.6 {"installer":{"name":"uv","version":"0.12.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|