feat(cli): Add type search - #7
Merged
Merged
Conversation
philprime
added this pull request to stack #8
September 9, 2026 14:40
Traverse technology collection groups with bounded concurrency and return matching symbol names and paths in table or JSON form. Keep queries out of telemetry and provide actionable guidance when no symbols match.
philprime
force-pushed
the
philprime/feat/add-type-discovery
branch
from
September 9, 2026 14:42
9ff76b9 to
07747e8
Compare
philprime
force-pushed
the
philprime/feat/add-type-search
branch
from
September 9, 2026 14:42
4dd4b4e to
d1bae6c
Compare
philprime
removed this pull request from stack #8
September 9, 2026 15:02
philprime
enabled auto-merge (squash)
September 9, 2026 15:03
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.
Add
apple-docs types searchon top of the type discovery work in #6. Search walks a technology’s root DocC page and recursively linked collection groups, returning matching symbol names and paths without crawling every symbol page.Search Behavior
Traversal and Privacy
Collection pages are fetched in batches of six to bound concurrency and avoid an exhaustive symbol-page crawl. Search queries remain excluded from telemetry while result counts use an allowlisted metric.
Verification
make test.make analyzewith no violations.make build.TELEMETRY_DISABLED=true make test-integrationwith 7 live tests passing.