feat(core): catalog plugin resource events - #1184
Merged
dcramer merged 1 commit intoAug 2, 2026
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
dcramer
force-pushed
the
codex/resource-event-catalog
branch
from
August 2, 2026 02:51
568f4c8 to
0d11df2
Compare
dcramer
force-pushed
the
codex/resource-event-catalog
branch
from
August 2, 2026 03:31
0d11df2 to
c423920
Compare
dcramer
changed the base branch from
main
to
codex/fix-participation-elaboration-eval
August 2, 2026 03:31
dcramer
marked this pull request as ready for review
August 2, 2026 04:06
dcramer
force-pushed
the
codex/resource-event-catalog
branch
from
August 2, 2026 04:26
c423920 to
a23f94b
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit a23f94b. Configure here.
dcramer
changed the base branch from
codex/fix-participation-elaboration-eval
to
main
August 2, 2026 04:30
dcramer
force-pushed
the
codex/resource-event-catalog
branch
from
August 2, 2026 04:31
a23f94b to
db2d33c
Compare
dcramer
changed the base branch from
main
to
codex/fix-participation-elaboration-eval
August 2, 2026 04:31
dcramer
changed the base branch from
codex/fix-participation-elaboration-eval
to
main
August 2, 2026 05:06
dcramer
force-pushed
the
codex/resource-event-catalog
branch
from
August 2, 2026 05:06
db2d33c to
7aee0d0
Compare
dcramer
changed the base branch from
main
to
codex/fix-participation-elaboration-eval
August 2, 2026 05:06
dcramer
changed the base branch from
codex/fix-participation-elaboration-eval
to
main
August 2, 2026 05:34
dcramer
force-pushed
the
codex/resource-event-catalog
branch
from
August 2, 2026 05:34
7aee0d0 to
794a0d3
Compare
dcramer
changed the base branch from
main
to
codex/fix-participation-elaboration-eval
August 2, 2026 05:34
dcramer
merged commit Aug 2, 2026
5dde433
into
codex/fix-participation-elaboration-eval
40 of 44 checks passed
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.

Plugins can now declare structured resource types with supported and suggested events. Core derives each plugin's namespace, validates published and selected events against the active runtime catalog, and exposes
searchResourceEventTypesso the agent can discover the event capabilities that are actually enabled.Temporary resource watches now use the same
namespace + resource type + identifier + event typecontract.watchResourceEventsvalidates selections against the catalog, reports its expiry, and supports exact cancellation by watch ID. GitHub and Vercel publishers are migrated to the contract; GitHub additionally publishes exact-issue and repository-wide issue events.This is a hard cutover from
provider/resourceRef. Existing short-lived Redis watch records remain under the old prefix and expire naturally rather than being migrated. This PR does not add durable event-task persistence or execution; that work will build on this catalog in a separate PR.Refs #1174