Add developer-index and research-index session skills - #201
Merged
Conversation
There was a problem hiding this comment.
All reported issues were addressed across 7 files
Reply with feedback, questions, or to request a fix.
Fix all with cubic | Re-trigger cubic
There was a problem hiding this comment.
All reported issues were addressed across 4 files (changes from recent commits).
Reply with feedback, questions, or to request a fix.
Fix all with cubic | Re-trigger cubic
They belong with the CLI, not the build skills repo. Developer hits use the live id prefix for kind; search-papers hits are paperId, primaryId, ids, title, abstract, and score.
Quick start, --help instead of option tables, and a Done when line, while keeping the live id-prefix and paperId response shapes.
Max17190
force-pushed
the
feat/session-index-skills
branch
from
August 20, 2026 19:16
6ebab9d to
3c9202d
Compare
5 tasks
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.
Why
The developer and research index skills were sitting in
firecrawl/skills, which is the build repo. They are session skills (answer a question now), so they belong next tofirecrawl developerandfirecrawl research.Summary
firecrawl-developer-indexandfirecrawl-research-indexas standalone CLI skills, registered in the Claude plugin lists.firecrawl/firecrawl-searchto those skills instead of embedding the recipes in web search.idprefix for kind (notypefield);search-papershits carrypaperId,primaryId,ids,title,abstract, andscore.firecrawl/skillson Move index skills out of the build repo and align developer search with the live wire skills#11Test Plan
npx skills add firecrawl/cli@firecrawl-developer-indexand@firecrawl-research-indexinstallfirecrawl developer "retry backoff" --limit 2 --jsonresults haveid,url,passagesand notypefirecrawl research search-papers "CRISPR base editing" --limit 2 --jsonresults havepaperId,primaryId,ids,title,abstract,scorefirecrawl developer --helpno longer claims atypefieldfirecrawl-searchdescription no longer claims paper search as its jobSummary by cubic
Adds
firecrawl-developer-indexandfirecrawl-research-indexas standalone session skills and makesfirecrawl-searchweb-only. This clarifies routing for coding and paper queries and aligns response shapes with production..claude-plugin/marketplace.jsonand.claude-plugin/plugin.json, adds SKILL docs, and updatesfirecrawl-search/firecrawldocs to point to the new skills and use shorter triggers.typefield; infer kind from theidprefix (doc:,issue:,pull_request:,readme:). Required: update any parsers that readtype; CLI help insrc/index.tsnow documents the prefix.search-papersreturnspaperId,primaryId,ids,title,abstract, andscore. Required: ensure clients read these fields.firecrawl-searchno longer claims to hit the paper index;--categories researchis a website filter only, and--categories developerjust weighs developer hits in the same web call. Required: callfirecrawl research/firecrawl-research-indexfor papers andfirecrawl-developer-indexfor library/API/error/bug questions.Written for commit 3c9202d. Summary will update on new commits.