Add Firecrawl skill for web scraping, search, and content extraction#19
Open
leonardogrig wants to merge 2 commits intoWordPress:trunkfrom
Open
Add Firecrawl skill for web scraping, search, and content extraction#19leonardogrig wants to merge 2 commits intoWordPress:trunkfrom
leonardogrig wants to merge 2 commits intoWordPress:trunkfrom
Conversation
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Add required WordPress 6.9+ and PHP 7.2.24+ compatibility markers to SKILL.md frontmatter, matching the repo's contract requirements. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the If you're merging code through a pull request on GitHub, copy and paste the following into the bottom of the merge commit message. To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
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.
I'm Leo, dev rel at Firecrawl. The agent-skills collection already covers WordPress development patterns well, but agents often need to pull in web content too: docs, changelogs, API references. Adding Firecrawl here so WordPress developers get a clean way to search, scrape, and extract web data as LLM-friendly markdown.
If you need help with the integration, extra API credits for the community, or anything else, feel free to reach out.
What this adds
A new
firecrawlskill that gives AI assistants the ability to search the web, scrape pages, and extract clean markdown content via the Firecrawl CLI. This adds a web data layer that complements the existing WordPress-focused skills.Files:
skills/firecrawl/SKILL.md- Main skill instructions: CLI usage, search/scrape/map commands, parallelization, output organizationskills/firecrawl/references/install.md- Installation, authentication, and troubleshooting referenceWhy this matters for Agent Skills
The existing skills are excellent at teaching AI assistants how to build WordPress. But many WordPress development tasks also require pulling in information from the web: reading documentation, checking API references, researching plugin approaches, or looking up code examples.
Firecrawl fills the gap between "the agent knows WordPress patterns" and "the agent can fetch live web content." When an AI assistant needs to check the latest WordPress docs, scrape a plugin's changelog, or search for a Gutenberg deprecation notice, this skill gives it a structured way to do that.
What it adds:
.firecrawl/to keep agent context cleanExample usage
Setup
Auth errors are handled in
references/install.mdwith browser-based and manual API key options.Follows repo conventions
skills/firecrawl/alongside the existing 13 skillsname,description, andcompatibilityfieldsreferences/subdirectory (matching the pattern used by other skills)skillpack-build.mjs- no changes to build/install scripts needed