home / skills / jeremylongshore / claude-code-plugins-plus-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-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: 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`.

Overview

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.

How this skill works

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.

When to use it

  • You need a lightweight follow-up workflow after a primary automation completes.
  • You want optimized, lower-complexity processing that complements Core Workflow A.
  • You must run secondary tasks triggered by phrases like "instantly secondary workflow" or "secondary task with instantly".
  • You want structured success/error reporting from the Instantly API.
  • You already have authentication configured via instantly-install-auth.

Best practices

  • Ensure instantly-install-auth is completed and valid API credentials are available before running the workflow.
  • Run Core Workflow A first when the use case requires a primary flow; use this skill for complementary steps.
  • Validate API responses and include retry logic for transient network or rate-limit errors.
  • Log inputs and outputs for each of the three stages (setup, process, complete) to aid debugging.
  • Keep this workflow focused on secondary responsibilities to maintain performance and clarity.

Example use cases

  • Post-processing leads or items created by the primary workflow: enrich, tag, and confirm completion.
  • Running a quick optimized job after a standard process to prepare data for downstream systems.
  • Triggering complementary automation when users request a secondary task via chat or API command.
  • Validating and packaging Instantly API responses into a concise success/error summary for monitoring.

FAQ

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.