feat: event_feed capability and agent_hints on fulfillment events - #673
Open
hemanth wants to merge 1 commit into
Open
feat: event_feed capability and agent_hints on fulfillment events#673hemanth wants to merge 1 commit into
hemanth wants to merge 1 commit into
Conversation
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.
Right now agents have no standard way to know what commerce events a business emits or how to receive them, leaving integrations wired up outside the protocol. Pairing discoverable feeds with per-event hints closes that gap and makes UCP events first-class for agentic workflows, without touching any required fields or existing transports.
event_feedon the business profile lets a business advertise a typed event stream (order updates, price changes, low stock). Agents read the profile, pick a transport (webhook/sse/poll), and subscribe.agent_hintsonfulfillment_eventlets a business attach advisory action suggestions to shipment events (e.g.notify_useron delay,escalateonundeliverable). Non-normative — the agent decides whether to act.Example
{ "event_feed": { "url": "https://store.example.com/ucp/events", "event_types": ["dev.ucp.order.shipped", "dev.ucp.order.status_changed"], "transports": ["sse", "poll"] } }{ "type": "failed_attempt", "agent_hints": [ { "action": "notify_user", "priority": "high" }, { "action": "escalate", "condition": "attempts > 2" } ] }Category