'Redirect to claude-model-inference for Messages API streaming,
Scanned 9/2/2026
Install to Claude Code
npx -y skills add jeremylongshore/tons-of-skills-marketplace --skill clade-core-workflow-a --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Clade Core Workflow A?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jeremylongshore-clade-core-workflow-a-4334a869)More formats (shields.io, HTML) on the badges page.
---
name: clade-core-workflow-a
description: 'Redirect to claude-model-inference for Messages API streaming,
vision, and structured output patterns.
Use when looking for the primary Anthropic workflow.
Trigger with "anthropic workflow", "claude main workflow".
'
allowed-tools: Read
version: 1.0.0
license: MIT
author: Jeremy Longshore <jeremy@intentsolutions.io>
tags:
- saas
- anthropic
- claude
compatibility: Designed for Claude Code
---
# Anthropic Core Workflow A → Model Inference
## Overview
This skill redirects to `clade-model-inference` which covers streaming, vision, structured output, and all Messages API patterns.
## Prerequisites
- Completed `clade-install-auth` setup
- `ANTHROPIC_API_KEY` configured
## Instructions
### Step 1: Use claude-model-inference instead
This skill has been replaced. The primary Anthropic workflow is the Messages API, covered in full by `clade-model-inference`.
### Step 2: Key topics covered there
- Streaming responses with `client.messages.stream()`
- Vision — sending images to Claude
- Structured JSON output via system prompts
- Multi-turn conversations
- All Messages API parameters
## Output
- Redirected to `clade-model-inference`
- All Messages API patterns available there
## Error Handling
| Issue | Solution |
|-------|----------|
| Skill not found | Run `clade-model-inference` directly |
## Examples
```typescript
// Use claude-model-inference for the full Messages API guide
import Anthropic from '@claude-ai/sdk';
const client = new Anthropic();
const stream = client.messages.stream({
model: 'claude-sonnet-4-20250514',
max_tokens: 1024,
messages: [{ role: 'user', content: 'Hello!' }],
});
```
## Resources
- [Messages API](https://docs.anthropic.com/en/api/messages)
- [Streaming](https://docs.anthropic.com/en/api/messages-streaming)
## Next Steps
Run `clade-model-inference` for the complete guide.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!