Clade core workflow a
Skill jeremylongshore/claude-code-plugins-plus-skills/skills/.curated/clade-core-workflow-a
425 plugins, 2,810 skills, 200 agents for Claude Code. Open-source marketplace at tonsofskills.com with the ccpi CLI package manager.
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill clade-core-workflow-aAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
'Redirect to claude-model-inference for Messages API streaming,
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.9 KB, 347 tokens by cl100k_base, as published. Nobody here has run it
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-authsetup ANTHROPIC_API_KEYconfigured
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
// 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
Next Steps
Run clade-model-inference for the complete guide.