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

This skill executes the CodeRabbit secondary workflow B to complement primary tasks and deliver structured results from the API.

npx playbooks add skill jeremylongshore/claude-code-plugins-plus-skills --skill coderabbit-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: coderabbit-core-workflow-b
description: |
  Execute CodeRabbit secondary workflow: Core Workflow B.
  Use when implementing secondary use case,
  or complementing primary workflow.
  Trigger with phrases like "coderabbit secondary workflow",
  "secondary task with coderabbit".
allowed-tools: Read, Write, Edit, Bash(npm:*), Grep
version: 1.0.0
license: MIT
author: Jeremy Longshore <[email protected]>
---

# CodeRabbit Core Workflow B

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

## Prerequisites
- Completed `coderabbit-install-auth` setup
- Familiarity with `coderabbit-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 CodeRabbit 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
- [CodeRabbit Documentation](https://docs.coderabbit.com)
- [CodeRabbit API Reference](https://docs.coderabbit.com/api)

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

Overview

This skill executes CodeRabbit secondary workflow Core Workflow B. It complements the primary workflow by handling secondary use cases, optimized for lower complexity and faster execution. Use it to run follow-up automation steps that rely on prior setup and valid API credentials.

How this skill works

The skill runs three staged steps: setup, process, and complete. It calls CodeRabbit API endpoints to perform the secondary task, collects results, and returns a success confirmation or structured error details. It expects prior installation/auth setup and familiarity with Core Workflow A so context and credentials are already configured.

When to use it

  • When implementing a secondary use case that complements the primary workflow
  • To offload lower-complexity tasks for optimized performance
  • When you already completed coderabbit-install-auth and Core Workflow A
  • During multi-step automation pipelines that require a follow-up execution
  • For scripted or CI-driven tasks triggered by developer intent

Best practices

  • Ensure API credentials are configured and validated before running the workflow
  • Run Core Workflow A first if the secondary workflow depends on its outputs
  • Wrap calls in retries and exponential backoff for transient API errors
  • Log each stage (setup, process, complete) with timestamps and returned status
  • Validate outputs from CodeRabbit API and normalize error objects for consistent handling

Example use cases

  • Post-deployment verification steps after a primary automation run
  • Automated clean-up or optimization tasks triggered by a CI pipeline
  • Secondary data processing that enriches results produced by Core Workflow A
  • Gatekeeper checks that run only after initial workflows confirm success
  • Lightweight maintenance tasks scheduled or invoked on-demand

FAQ

What prerequisites are required?

You need coderabbit-install-auth completed, valid API credentials configured, and familiarity with Core Workflow A if the workflows are chained.

What does the skill return on completion?

It returns the Core Workflow B execution result: API responses, a success confirmation, and structured error details if applicable.