feat(error-tracking): add --state, --team, --assignee filters to issues search#541
Merged
platinummonkey merged 1 commit intoMay 30, 2026
Conversation
…es search Exposes new SDK filter params from PRs #1568 and #1480: - --state: OPEN, ACKNOWLEDGED, RESOLVED, IGNORED, EXCLUDED - --team <UUID>: filter by team UUID assignee - --assignee <UUID>: filter by user UUID assignee Co-Authored-By: Claude <noreply@anthropic.com>
4f6e0de
into
chore/upgrade-dd-sdk-to-master
7 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.
Summary
Exposes new filter parameters on
pup error-tracking issues searchfrom SDK PRs #1568 and #1480.Changes
src/commands/error_tracking.rs— addstate,team,assigneeparams toissues_search; map state string →IssueStateenum; accept team/assignee as UUIDs; update all existing call sites to passNonefor new paramssrc/main.rs— add--state,--team,--assigneeoptional args toErrorTrackingIssueActions::Search; thread through to dispatch calldocs/COMMANDS.md— document new flagsNew flags
These are independent of the existing
--track/--personamutual exclusion.Testing
test_issues_search_with_state— happy path with state=OPENtest_issues_search_invalid_state— rejects unknown state valuestest_issues_search_invalid_team_uuid— rejects non-UUID team inputtest_issues_search_invalid_assignee_uuid— rejects non-UUID assignee inputtest_error_tracking_clap_state_accepted— clap accepts--statealongside--track🤖 Generated with Claude Code
Generated by Claude Code