home / skills / jeremylongshore / claude-code-plugins-plus-skills / firecrawl-core-workflow-b

This skill helps orchestrate FireCrawl secondary workflow B, delivering completed executions, API results, and clear success or error insights.

npx playbooks add skill jeremylongshore/claude-code-plugins-plus-skills --skill firecrawl-core-workflow-b

Review the files below or copy the command above to add this skill to your agents.

Files (1)
SKILL.md
1.5 KB
---
name: firecrawl-core-workflow-b
description: |
  Execute FireCrawl secondary workflow: Core Workflow B.
  Use when implementing secondary use case,
  or complementing primary workflow.
  Trigger with phrases like "firecrawl secondary workflow",
  "secondary task with firecrawl".
allowed-tools: Read, Write, Edit, Bash(npm:*), Grep
version: 1.0.0
license: MIT
author: Jeremy Longshore <[email protected]>
---

# FireCrawl Core Workflow B

## Overview
Secondary workflow for FireCrawl. Complements the primary workflow.

## Prerequisites
- Completed `firecrawl-install-auth` setup
- Familiarity with `firecrawl-core-workflow-a`
- Valid API credentials configured

## Instructions

### Step 1: Setup
```typescript
// Step 1 implementation
```

### Step 2: Process
```typescript
// Step 2 implementation
```

### Step 3: Complete
```typescript
// Step 3 implementation
```

## Output
- Completed Core Workflow B execution
- Results from FireCrawl API
- Success confirmation or error details

## Error Handling
| Aspect | Workflow A | Workflow B |
|--------|------------|------------|
| Use Case | Primary | Secondary |
| Complexity | Medium | Lower |
| Performance | Standard | Optimized |

## Examples

### Complete Workflow
```typescript
// Complete workflow example
```

### Error Recovery
```typescript
// Error handling code
```

## Resources
- [FireCrawl Documentation](https://docs.firecrawl.com)
- [FireCrawl API Reference](https://docs.firecrawl.com/api)

## Next Steps
For common errors, see `firecrawl-common-errors`.

Overview

This skill executes FireCrawl secondary workflow Core Workflow B to handle follow-up or complementary automation tasks alongside the primary pipeline. It is designed for teams that already completed initial setup and want an optimized, lower-complexity route for secondary use cases. Use it to run discrete post-processing jobs, API interactions, or optimized completion steps tied to FireCrawl flows.

How this skill works

The skill runs a three-step secondary workflow: setup, process, and completion. It performs lightweight orchestration against the FireCrawl API, gathers results, and returns a success confirmation or structured error details. It assumes valid API credentials and familiarity with the primary FireCrawl workflow for smooth integration.

When to use it

  • You need a lower-complexity follow-up job after the primary FireCrawl workflow.
  • You want to offload secondary tasks like post-processing, status updates, or compact API calls.
  • You already completed FireCrawl install and authentication and want a complementary step.
  • You need an optimized route for routine or repeated secondary tasks.
  • You want structured success/error output for downstream automation.

Best practices

  • Ensure firecrawl-install-auth is completed and credentials are valid before triggering the workflow.
  • Familiarize yourself with Core Workflow A to understand shared assumptions and input formats.
  • Validate inputs and expected API response shapes to simplify error handling.
  • Log both success confirmations and error details for reliable observability and retries.
  • Use this workflow for targeted secondary tasks rather than heavy primary orchestration.

Example use cases

  • Run a post-processing pass that normalizes outputs produced by the primary workflow.
  • Trigger a compact status update sequence to external systems after main job completion.
  • Execute optimized API interactions for routine maintenance or cleanup tasks.
  • Recover from a minor error by rerunning only the secondary steps without redoing the entire pipeline.
  • Integrate with CI/CD or monitoring systems to confirm end-state and emit structured results.

FAQ

What prerequisites are required before using this skill?

Complete the installation and authentication step and ensure API credentials are configured. Familiarity with Core Workflow A is recommended.

How are errors returned?

The skill returns structured error details alongside success confirmations to enable automated recovery and retries.