feat: server-side search, parallel space traversal, and --assignee filter#15
Merged
isaacrowntree merged 1 commit intomainfrom Apr 14, 2026
Merged
feat: server-side search, parallel space traversal, and --assignee filter#15isaacrowntree merged 1 commit intomainfrom
isaacrowntree merged 1 commit intomainfrom
Conversation
…lter Search improvements (supersedes #9 and #10): - Level 0: server-side search via ClickUp's search= query param — finds tasks in a single API call regardless of update recency - Level 5: parallel space traversal with bounded parallelism (5 workers) when progressive drill-down finds nothing — discovers folders, folderless lists, and fetches tasks concurrently across all spaces - --assignee flag: filter by team member (name, username, numeric ID, or "me"). Resolves via exact match, substring match, or current user. Ambiguous matches error with candidates. Works alongside --space/--folder. - Query is now optional when --assignee is provided Includes 8 new tests for assignee resolution and server-side search. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This was referenced Apr 14, 2026
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
search=query param for single-API-call name matching — finds tasks regardless of update recency--assigneeflag: filter by name, username, numeric ID, or"me". Ambiguous matches error with candidates. Works alongside--space/--folder--assigneeis providedSupersedes #9 and #10 — rebuilt on the apiv2 architecture with tests and review feedback addressed.
Test plan
go build ./...passesgo test ./...— 8 new tests for assignee resolution + server-side search🤖 Generated with Claude Code