Firecrawl monitor
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-monitorAssembled 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 creating, listing, updating, running, or inspecting Firecrawl monitors through ArkSpace web_monitor routing.
SKILL.md
2.0 KB, as published. Nobody here has run it
Firecrawl Monitor
Use Firecrawl Monitor as a CLI-backed web_monitor provider when the user wants recurring scrapes or crawls with change checks.
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_monitor
Set up Firecrawl:
python3 <installed-arkspace-path>/scripts/arkspace.py provider setup firecrawl --wizard
Helper Script
Create a monitor:
python3 <installed-arkspace-path>/scripts/arkspace.py monitor create --provider firecrawl \
--name "Blog" \
--schedule "every 30 minutes" \
--page "https://example.com/blog" \
--goal "Alert when a new blog post is published." \
--output json
List monitors:
python3 <installed-arkspace-path>/scripts/arkspace.py monitor list --provider firecrawl --limit 20 --output json
Run a monitor immediately:
python3 <installed-arkspace-path>/scripts/arkspace.py monitor run --provider firecrawl <monitor-id> --output json
Routing Notes
- Use
registry/web-monitor-providers.yamlbefore execution. - Start with explicit user confirmation before creating, updating, deleting, or triggering monitors.
- Firecrawl monitors are recurring external jobs; summarize the schedule and target before executing mutations.