feat(core): add firecrawl developer search provider - #46534
Closed
erikengervall wants to merge 1 commit into
Closed
erikengervall wants to merge 1 commit into
erikengervall wants to merge 1 commit into
Conversation
erikengervall
force-pushed
the
erik/firecrawl-developer-search
branch
3 times, most recently
from
September 13, 2026 15:41
e8c7dfc to
54cc636
Compare
Second Firecrawl provider that passes categories: ["developer"] to the same firecrawl_search call, searching an index of GitHub issues, merged pull requests, READMEs and docs instead of the open web. Shares the execute path with the existing provider, and works without an API key. Co-authored-by: Cursor <cursoragent@cursor.com> Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
erikengervall
force-pushed
the
erik/firecrawl-developer-search
branch
from
September 14, 2026 17:18
54cc636 to
2d0ddd6
Compare
6 tasks
Contributor
Author
|
Superseded by #49176, which rebuilds this as a separate, connection-gated |
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.
Issue for this PR
None. This is a follow-up to #41042, which added the Firecrawl web search provider.
Type of change
What does this PR do?
Adds a second Firecrawl provider that sends
categories: ["developer"]on the samefirecrawl_searchcall. That searches an index of GitHub issues, merged PRs, READMEs and docs rather than the open web, so asking about a library's retry behaviour returns that library's own docs page instead of a blog post about it.It is the same execute path as the existing provider with one extra argument, so the
firecrawlprovider is unchanged, and it still works without an API key.One change outside the provider: the label helpers were refactored since #41042 and the TUI now capitalises the provider id, so
firecrawl-developerwould render as "Firecrawl-developer". I added a small override map for that.Happy to redo this as a separate tool rather than a provider if you would prefer that shape.
How did you verify your code works?
bun typecheckinpackages/core,packages/tui,packages/session-uibun run testinpackages/core(websearch tests) andpackages/tui(tool-display, plus a new case for the label)Screenshots / recordings
No UI change beyond the provider name in the picker and tool title.
Checklist