home / skills / jeremylongshore / claude-code-plugins-plus-skills / instantly-core-workflow-b
/plugins/saas-packs/instantly-pack/skills/instantly-core-workflow-b
This skill helps you execute the Instantly secondary workflow B, validating setup and returning API results.
npx playbooks add skill jeremylongshore/claude-code-plugins-plus-skills --skill instantly-core-workflow-bReview the files below or copy the command above to add this skill to your agents.
---
name: instantly-core-workflow-b
description: |
Execute Instantly secondary workflow: Core Workflow B.
Use when implementing secondary use case,
or complementing primary workflow.
Trigger with phrases like "instantly secondary workflow",
"secondary task with instantly".
allowed-tools: Read, Write, Edit, Bash(npm:*), Grep
version: 1.0.0
license: MIT
author: Jeremy Longshore <[email protected]>
---
# Instantly Core Workflow B
## Overview
Secondary workflow for Instantly. Complements the primary workflow.
## Prerequisites
- Completed `instantly-install-auth` setup
- Familiarity with `instantly-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 Instantly 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
- [Instantly Documentation](https://docs.instantly.com)
- [Instantly API Reference](https://docs.instantly.com/api)
## Next Steps
For common errors, see `instantly-common-errors`.This skill executes the Instantly secondary workflow called Core Workflow B. It complements the primary workflow by handling lower-complexity, optimized tasks and returning structured results from the Instantly API. Use it to run secondary automation steps, validate outputs, and produce a success or error summary.
The skill assumes prior setup of authentication and familiarity with Core Workflow A. It runs three stages: setup (load credentials and configuration), process (invoke Instantly API endpoints and perform the secondary task logic), and complete (collect results, validate responses, and emit success or error details). Outputs include the API response payload and a clear status summary.
What prerequisites are required?
Complete the instantly-install-auth setup, have valid API credentials, and be familiar with Core Workflow A.
How do I recover from errors?
The workflow returns error details; implement retry logic for transient errors and consult Instantly API docs for specific error codes.