Update package.json version to 1.8.0 and revise documentation (skills/firecrawl-cli/SKILL.md) to replace usages of --persistent-session with --profile. Adjust examples and the options list to reflect the new flag name; no functional code changes.
Allow scraping multiple URLs concurrently and save each result to .firecrawl/. Adds handleMultiScrapeCommand and urlToFilename helper in src/commands/scrape.ts to run concurrent scrapes, write outputs to .firecrawl/, emit progress/errors, and exit non-zero if all fail. Update CLI in src/index.ts to accept multiple positional URLs and --url, deduplicate inputs, infer formats from positional args or flags, and route single-URL requests to the existing handler. Update README.md and skills/firecrawl-cli/SKILL.md to document multiple-URL usage and examples.
Introduce a new CLI command to pull the authenticated FIRECRAWL_API_KEY into a local .env file. Adds src/commands/env.ts which implements handleEnvPullCommand(options) — it gets the API key (via getApiKey or ensureAuthenticated), and creates/updates/appends the FIRECRAWL_API_KEY line in the target env file, with an --overwrite flag to replace an existing key. Also registers the command in src/index.ts with options (-f/--file and --overwrite). This provides a convenient way for developers to sync their API key into project .env files.
Bump plugin version to 1.0.7 and overhaul the firecrawl CLI skill docs to emphasize minimizing tool calls. Add a new “Core Principle: Minimize Tool Calls” section recommending default stdout output (no -o) and show good/bad examples; introduce a Quick research workflow that recommends using search --scrape for one-call results; clarify when to use -o (large outputs, persistence, batch jobs) and update numerous command examples accordingly. Also reorganize guidance for reading saved files (use grep/incremental reads for large files), recommend --scrape for most searches, and clean up various sample commands and file-naming suggestions.