firecrawl-ninja

firecrawl-ninja is a skill for Claude Code, Codex from fabricioctelles/jump-skills. It costs 42 tokens per session (2,217 once invoked), scanned A, original, MIT.

A routing skill for Firecrawl, a service that searches, reads, and extracts information from websites and documents. It selects one of many specialized Firecrawl skills for the task.

In plain words
What is it for?
Use it for Firecrawl-related web scraping, research, extraction, or document parsing tasks.
Why use it?
It helps choose the appropriate web-scraping or research workflow instead of deciding manually which Firecrawl capability to use.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it for Firecrawl-related web scraping, research, extraction, or document parsing tasks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/fabricioctelles/jump-skills/firecrawl-ninja
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add fabricioctelles/jump-skills --skill firecrawl-ninja
Clone the repo
git clone --depth 1 https://github.com/fabricioctelles/jump-skills

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for firecrawl-ninja

README.md
[![agentmods](https://agentmods.dev/badge/skills/fabricioctelles/jump-skills/firecrawl-ninja/github.svg)](https://agentmods.dev/skills/fabricioctelles/jump-skills/firecrawl-ninja)
Your own site
<a href="https://agentmods.dev/skills/fabricioctelles/jump-skills/firecrawl-ninja"><img src="https://agentmods.dev/badge/skills/fabricioctelles/jump-skills/firecrawl-ninja/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for firecrawl-ninja

Your own site · 80×15
<a href="https://agentmods.dev/skills/fabricioctelles/jump-skills/firecrawl-ninja"><img src="https://agentmods.dev/badge/skills/fabricioctelles/jump-skills/firecrawl-ninja.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,217 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.02217
Opus 5 $0.00021 $0.01108
Sonnet 5 $0.00008 $0.00443
Haiku 4.5 $0.00004 $0.00222

Measured 12d ago against content hash 4e6d4aeb5414, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

firecrawl-ninja scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

ninjas/firecrawl-ninja/SKILL.md · 139 lines

How it starts

The opening of the file, as written. The whole thing — 139 lines — stays where its author put it; the contents beside it link to each section on GitHub.

firecrawl-ninja

Jump Skill — Intelligent router for 33 specialized Firecrawl skills.

Purpose

This skill routes Firecrawl tasks to the most relevant specialized skill:

  1. Analyze the task context
  2. Route to the best matching skill
  3. Load full instructions on-demand
  4. Execute with specialized knowledge

Firecrawl Keyless (API V2)

As of V2, the Firecrawl API is keyless — no account, no signup, no API key required.

Aspect Detail
Free endpoints /scrape, /search, /interact, /parse
Limit 1,000 credits/month per developer (automatic, per IP)
Requirements None — zero config
When to use API key Higher limits, additional endpoints, or unattended connections

Quick Start (no API key)

# Install CLI
npm install -g firecrawl

# Use directly — works without configuration
firecrawl scrape "https://example.com"
firecrawl search "my query"
firecrawl parse document.pdf

MCP (Model Context Protocol)

  • Keyless: https://mcp.firecrawl.dev/v2/mcp
  • With API key: https://mcp.firecrawl.dev/YOUR_API_KEY/v2/mcp

The keyless endpoint exposes only Search, Scrape, and Parse. Use an API key for the full tool surface.

Skill Catalog

Core

Skill Path Description
firecrawl {{JUMP_SKILLS_DIR}}/repos/firecrawl-ninja/skills/skills/core/firecrawl/ Main entry point — search, scrape, and interact with the web.
firecrawl-agent {{JUMP_SKILLS_DIR}}/repos/firecrawl-ninja/skills/skills/core/firecrawl-agent/ Autonomous multi-page extraction into structured JSON.
firecrawl-crawl {{JUMP_SKILLS_DIR}}/repos/firecrawl-ninja/skills/skills/core/firecrawl-crawl/ Bulk-extract many pages from one site or section.
firecrawl-developer-index {{JUMP_SKILLS_DIR}}/repos/firecrawl-ninja/skills/skills/core/firecrawl-developer-index/ Search issues, PRs, READMEs, and documentation.
firecrawl-download {{JUMP_SKILLS_DIR}}/repos/firecrawl-ninja/skills/skills/core/firecrawl-download/ Save a site or section as local files.
firecrawl-interact {{JUMP_SKILLS_DIR}}/repos/firecrawl-ninja/skills/skills/core/firecrawl-interact/ Drive a live browser: click, fill forms, log in, paginate.
firecrawl-map {{JUMP_SKILLS_DIR}}/repos/firecrawl-ninja/skills/skills/core/firecrawl-map/ Discover and list a site's URLs with search filtering.
firecrawl-monitor {{JUMP_SKILLS_DIR}}/repos/firecrawl-ninja/skills/skills/core/firecrawl-monitor/ Alert on web changes via webhook or email.
firecrawl-parse {{JUMP_SKILLS_DIR}}/repos/firecrawl-ninja/skills/skills/core/firecrawl-parse/ Convert local files (PDF, DOCX, XLSX) to markdown.
firecrawl-research-index {{JUMP_SKILLS_DIR}}/repos/firecrawl-ninja/skills/skills/core/firecrawl-research-index/ Search Firecrawl's research paper index.
firecrawl-scrape {{JUMP_SKILLS_DIR}}/repos/firecrawl-ninja/skills/skills/core/firecrawl-scrape/ Extract a URL's content as clean markdown.
firecrawl-search {{JUMP_SKILLS_DIR}}/repos/firecrawl-ninja/skills/skills/core/firecrawl-search/ Web search with full page content.

Read the full file on GitHub · 139 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 139 lines · 42 tokens per session scan A 4e6d4aeb5414

Subscribe to this mod's changes

firecrawl-ninja is a skill published in the GitHub repository fabricioctelles/jump-skills (28 stars, last pushed 2d ago), licensed MIT. It adds 42 tokens to every session and 2,217 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

drawio-aws

Use when the user asks for an AWS architecture diagram — VPC/networking, event-driven, landing zone, multi-AZ, serverless pipeline, or any diagram built with AWS service icons. Builds with the declarative layout engine using ground-truth mxgraph.aws4 stencils, validates (stencils/colors/nesting/geometry), runs a…

sparklabx/drawio-ai-kit · 94 tokens

ovh

OVHcloud infrastructure integration for managing instances, Kubernetes clusters, networks, and object storage via CLI and Terraform.

Arvo-AI/aurora · 24 tokens

scaleway

Scaleway cloud integration for managing instances, Kapsule Kubernetes clusters, object storage, and managed databases via CLI and Terraform.

Arvo-AI/aurora · 29 tokens

ak-cloud-deploy

Deploy an Agent Kernel project to AWS, Azure, or GCP using Terraform modules, or to any Kubernetes cluster (on-prem, baremetal, EKS) using the official Helm chart. Supports serverless and containerized modes for all three clouds. AWS supports execution modes (restsync, restasync, async, stream), queue-based scalable…

yaalalabs/agent-kernel · 146 tokens

isaac-automator

Deploy and operate a cloud Isaac Workstation with Isaac Automator: provision a GPU VM running Isaac Sim, Isaac Lab, and/or Isaac Lab Arena on AWS, GCP, Azure, or Alibaba Cloud, connect to it, move data in and out, control cost with stop/start, repair, import existing deployments, and destroy. Use when the user wants a…

isaac-sim/IsaacAutomator · 123 tokens

cloud-iam-deep

GCP/AWS/Azure cloud exploitation -- Cloud Functions, Firestore, Cloud Run, S3, MinIO, Blob Storage, SA keys.

uphiago/recon-skills · 35 tokens