Firecrawl interact
ArkSpace is a creative workspace for orchestrating agent skills, roles, and workflows across Claude Code and Code
npx -y skills add arch3rPro/ark-space --skill firecrawl-interactAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use when interacting with a Firecrawl scraped page session by scrape ID, including prompt-driven actions, Playwright code, or stopping an interact session.
SKILL.md
2.1 KB, as published. Nobody here has run it
Firecrawl Interact
Use Firecrawl Interact as a scrape-bound web_interact helper when the user has already scraped a page with Firecrawl and wants to ask questions, click, inspect, or run code against that live page context.
Source References
- Official CLI:
https://github.com/firecrawl/cli - Firecrawl OpenClaw guide:
https://docs.firecrawl.dev/quickstarts/openclaw - OpenClaw tool guide:
https://docs.openclaw.ai/tools/firecrawl
Before Use
Resolve the installed ArkSpace package root before running commands. Replace <installed-arkspace-path> with the directory two levels above this loaded SKILL.md, such as /Users/<user>/.claude/plugins/cache/ark-space/ark-space/0.1.2. Use the installed package path, not a repository-relative command.
Check configuration:
python3 <installed-arkspace-path>/scripts/arkspace.py provider check firecrawl --capability web_interact
Set up Firecrawl:
python3 <installed-arkspace-path>/scripts/arkspace.py provider setup firecrawl --wizard
Helper Script
Prompt against a scraped page:
python3 <installed-arkspace-path>/scripts/arkspace.py interact run --provider firecrawl \
--scrape-id <scrape-id> \
--prompt "click the pricing tab and summarize the visible plans" \
--output json
Run code against a scraped page:
python3 <installed-arkspace-path>/scripts/arkspace.py interact run --provider firecrawl \
--scrape-id <scrape-id> \
--code "await page.title()" \
--language node \
--output json
Stop an interact session:
python3 <installed-arkspace-path>/scripts/arkspace.py interact stop --provider firecrawl --scrape-id <scrape-id>
Routing Notes
- Use
firecrawl-browserfor a new browser session or simple remote browser commands. - Use this skill only when the interaction is tied to a Firecrawl scrape ID or the previous Firecrawl scrape session.