Add knos to .mcp.json so agents share one decision record - #1177
Closed
drexthealpha wants to merge 2 commits into
Closed
Add knos to .mcp.json so agents share one decision record#1177drexthealpha wants to merge 2 commits into
drexthealpha wants to merge 2 commits into
Conversation
jabrena/plinth runs more than one coding agent over the same tree. Agents do not see each other's decisions, so two of them can reach opposite conclusions about the same file in the same hour, and neither one knows. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Author
|
Closing this - it was the wrong approach. Sorry for the noise. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
jabrena/plinth runs more than one coding agent over the same tree. Agents do not
see each other's decisions, so two of them can reach opposite conclusions about
the same file in the same hour, and neither one knows.
What this adds
knosin added to the existing.mcp.json- a local MCP server (pip install knos, Python 3.10+).No network, no account, no model download; one SQLite file.
examples/knos-decisions.example.md- the shape of the record it writes,seeded with two rules taken from this repo's own CLAUDE.md, so the format is
visible without installing anything.
What it does
When one agent claims a piece of work, another agent asking about that topic is
told who holds it instead of being handed the answer. Claims lapse after 30
minutes, so a crashed agent cannot hold work forever.
Runtime note: the server needs Python 3.10+ and
pip install knos. Nothingelse in the repo depends on it - if it is absent, the example file still reads
normally and no other tooling changes.
Disclosure: I wrote knos. Happy to drop either half, or close this, if it is not
a fit.
🤖 Generated with Claude Code