home / skills / jeremylongshore / claude-code-plugins-plus-skills / firecrawl-core-workflow-b
/plugins/saas-packs/firecrawl-pack/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-bReview the files below or copy the command above to add this skill to your agents.
---
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`.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.
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.
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.