-
Notifications
You must be signed in to change notification settings - Fork 0
Phase 1: Storage foundation for org-workspace messaging #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
plur9
wants to merge
17
commits into
main
Choose a base branch
from
phase1-foundation
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
1c4f272
chore: add org-workspace dependency, pytest config, test scaffolding
f92c726
feat: extract shared config module — single source for settings, trus…
41e1cf5
feat: add message store — org-workspace backed message CRUD with File…
d7c98b6
feat: implement agent inbox store with full task lifecycle
0bccfbb
refactor: extract shared _refresh_node, fix agent inbox review issues
66cc704
feat: add task governor — trust tiers, per-sender budgets, rate limiting
c04f8e0
fix: make check_and_record atomic, add queue depth check, fix config …
72dfd68
feat: consolidate relay to single lib/relay.py — fix auth leak, -h co…
294e797
refactor: rewire all hooks to use lib modules — remove duplicated cod…
9bf051d
test: add integration tests — message-to-task flow, governance blocks…
c7c9e49
docs: update module manifest, agent specs, and CLAUDE.md to match v0.…
b4fdc34
chore: cleanup — remove legacy files, add contacts template, update R…
6b8767d
fix: governor concurrency — atomic writes, reload-inside-lock for all…
4959f37
fix: remove workspace exposure, add ID monotonic counter, validate pr…
f838631
docs: fix stale references, add migration guide, update module.yaml f…
11b53dc
fix: address iteration 2 review — stale settings example, governor re…
b2d234c
docs: add Phase 1 implementation plan
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| web: python lib/datacore-msg-relay.py | ||
| web: python -m lib.relay --host |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The documented
contacts.yamlstructure here uses a top-levelcontacts:mapping, but the new template/migration guide uses a top-levelactors:list withid,name, andtrust_tier. This mismatch will confuse users and implementers; update the example/schema to matchtemplates/contacts.yamlandUPGRADING.md.