-
Notifications
You must be signed in to change notification settings - Fork 0
feat(extension): bound native messaging host authority #82
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
Draft
seonghobae
wants to merge
31
commits into
main
Choose a base branch
from
feat/native-messaging-host-authority
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.
Draft
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
afea70b
test(extension): require native messaging host authority
seonghobae 6502448
test(extension): prove native host grant cannot mint agent authority
seonghobae 6390465
feat(extension): enforce native messaging host allow-list
seonghobae 9b2bbb7
style(extension): apply canonical rustfmt
seonghobae 28593cf
test(extension): cover numeric native host names
seonghobae 1c32eff
test(extension): bound native messaging host identity
seonghobae 4ed1ac2
fix(extension): bound native messaging host identity
seonghobae a0b1020
Merge protected main into native messaging authority
seonghobae 8da1772
test(extension): expose native messaging authority identities
seonghobae 427d2f3
feat(extension): expose native messaging authority identities
seonghobae f6e0314
Merge branch 'main' into feat/native-messaging-host-authority
seonghobae ad1ece9
test(core): align native messaging Agent request scope
seonghobae 2d16411
test(core): require standard native messaging host errors
seonghobae c639cd7
fix(core): expose standard native messaging host errors
seonghobae c4bad34
merge(main): reconcile native messaging host authority
seonghobae 48521b2
docs(changelog): record native messaging authority
seonghobae cdf9daa
docs: mark merged MCP foundation as protected-main truth
seonghobae 810d3fb
docs: preserve exact origin-grant changelog wording
seonghobae ddb79fa
Merge remote-tracking branch 'origin/main' into pr82
seonghobae 79d8c85
merge(main): reconcile native messaging host authority
seonghobae f5776f5
feat(extension): bound native messaging framing
seonghobae 89fe04b
test(native-messaging): require exact manifest access policy
seonghobae 5c50ab5
test(native-messaging): defer manifest policy to canonical descendant
seonghobae 9652e62
test(docs): pin full Chromium native-messaging source identity
seonghobae f850eb4
test(ddd): require extension adapter bounded context
seonghobae ca2ea5a
refactor(ddd): isolate extension adapter context
seonghobae 1ca7ca9
test(ddd): register extension bounded context
seonghobae 0572357
build: lock extension bounded context
seonghobae 12360a6
fix(build): restore pinned registry checksums
seonghobae 90c4e9a
test(extension): keep moved host bounds lint-clean
seonghobae cec5992
chore(extension): adopt current protected main without product-tree c…
seonghobae 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| [package] | ||
| name = "originweave-extension" | ||
| description = "OriginWeave Extension Policy bounded context and Chromium extension adapter contracts." | ||
| version.workspace = true | ||
| edition.workspace = true | ||
| rust-version.workspace = true | ||
| license.workspace = true | ||
| authors.workspace = true | ||
| repository.workspace = true | ||
| homepage.workspace = true | ||
| publish = false | ||
|
|
||
| [lib] | ||
| path = "src/lib.rs" | ||
|
|
||
| [dependencies] | ||
| originweave-core = { path = "../originweave-core" } | ||
|
|
||
| [lints] | ||
| workspace = true |
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 |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| //! Extension Policy bounded context for Chromium-compatible extension integration. | ||
| //! | ||
| //! This crate owns Chrome-specific extension adapter vocabulary and authority checks. | ||
| //! Stable browser/session/action contracts remain in `originweave-core`; this context | ||
| //! depends inward on those contracts without exporting Chromium adapter types back into core. | ||
|
|
||
| #![forbid(unsafe_code)] | ||
| #![deny(missing_docs)] | ||
|
|
||
| use originweave_core::ExtensionId; | ||
|
|
||
| mod native_messaging; | ||
| pub use native_messaging::*; |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.