User scenario
I want to browse Partiful events from the CLI before I know an event ID, then mark an event as interested or RSVP through the commands that already exist.
Problem
The current explore command only performs actions against an already-known event ID. It supports RSVP and interest, but it cannot browse the discovery feed, show sections, paginate, or discover regions. An agent cannot reproduce the first half of the Explorer journey and must obtain links elsewhere.
Verified product and API facts
Authenticated probes confirmed that getDiscoverFeed returns events plus a cursor and that getDiscoverSections is reachable. The existing focused RSVP/interest test suite passed 64 tests during this investigation. Current source on origin/main contains no Explorer feed integration.
No mutation was performed while probing discovery.
Proposed experience
partiful explore list
partiful explore list --cursor <cursor>
partiful explore trending
partiful explore regions
partiful explore list --region seattle --date this-weekend
partiful schema explore.list
The first implementation should mirror only filters and sections proven by current API responses. JSON output should include normalized event summaries, section/source metadata, and an opaque next cursor. Human output should avoid exposing raw internal IDs when a public event URL is sufficient.
Scope boundaries
- Do not advertise arbitrary full-text search, radius search, ranking explanations, or recommendation controls until verified.
- Treat cursors as opaque.
- Preserve event visibility and location privacy. Approximate locations must not be promoted to exact addresses.
- Browsing is read-only. Existing RSVP and interest commands remain separate mutations with their current confirmation behavior.
- Do not add a local recommendation engine or scraper when the canonical discovery feed works.
Discovery needed
Capture the complete request and response contracts for getDiscoverFeed and getDiscoverSections, including section identifiers, region inputs, filters, pagination termination, event visibility, location fields, and empty-feed behavior. Verify whether trending and regions are first-class operations or sections within the same response before fixing command names.
Acceptance criteria
Related work
#76 discovers known Mutuals inside a visible event roster. This issue discovers events themselves before the caller has an event ID. Existing RSVP and interest commands cover the action after discovery, not feed browsing.
User scenario
I want to browse Partiful events from the CLI before I know an event ID, then mark an event as interested or RSVP through the commands that already exist.
Problem
The current
explorecommand only performs actions against an already-known event ID. It supports RSVP and interest, but it cannot browse the discovery feed, show sections, paginate, or discover regions. An agent cannot reproduce the first half of the Explorer journey and must obtain links elsewhere.Verified product and API facts
Authenticated probes confirmed that
getDiscoverFeedreturns events plus a cursor and thatgetDiscoverSectionsis reachable. The existing focused RSVP/interest test suite passed 64 tests during this investigation. Current source onorigin/maincontains no Explorer feed integration.No mutation was performed while probing discovery.
Proposed experience
The first implementation should mirror only filters and sections proven by current API responses. JSON output should include normalized event summaries, section/source metadata, and an opaque next cursor. Human output should avoid exposing raw internal IDs when a public event URL is sufficient.
Scope boundaries
Discovery needed
Capture the complete request and response contracts for
getDiscoverFeedandgetDiscoverSections, including section identifiers, region inputs, filters, pagination termination, event visibility, location fields, and empty-feed behavior. Verify whether trending and regions are first-class operations or sections within the same response before fixing command names.Acceptance criteria
events: []and no next cursor.explore rsvpandexplore interestedbehavior remains backward-compatible.Related work
#76 discovers known Mutuals inside a visible event roster. This issue discovers events themselves before the caller has an event ID. Existing RSVP and interest commands cover the action after discovery, not feed browsing.