clade-core-workflow-b

Solid

Redirect to claude-embeddings-search for tool use (function calling) and agentic loop patterns with Claude. Use when looking for the secondary Anthropic workflow. Trigger with "anthropic tools", "claude function calling".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 97/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
91
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Anthropic Core Workflow B → Tool Use ## Overview This skill redirects to `clade-embeddings-search` which covers tool use (function calling), the agentic tool loop, and building Claude-powered agents. ## Prerequisites - Completed `clade-model-inference` - Understanding of JSON Schema for tool definitions ## Instructions ### Step 1: Use claude-embeddings-search instead This skill has been replaced. The secondary Anthropic workflow is tool use / function calling, covered in full by `clade-embeddings-search`. ### Step 2: Key topics covered there - Defining tools with JSON Schema input schemas - Sending messages with tools attached - Executing tool calls and returning results - Building an agentic loop that runs until Claude stops calling tools - Error handling for tool use edge cases ## Output - Redirected to `clade-embeddings-search` - Complete tool use patterns available there ## Error Handling | Issue | Solution | |-------|----------| | Skill not found | Run `clade-embeddings-search` directly | | Tool use errors | See tool validation patterns in that skill | ## Examples ```typescript // Use claude-embeddings-search for the full tool use guide const tools: Anthropic.Tool[] = [{ name: 'get_weather', description: 'Get weather for a city', input_schema: { type: 'object', properties: { city: { type: 'string' } }, required: ['city'], }, }]; const response = await client.messages.create({ model: 'claude-sonnet-4-20250514', max_tokens: 1024, tools, ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

clade-embeddings-search

Implement tool use (function calling) with Claude to let it execute actions, Use when working with embeddings-search patterns. query databases, call APIs, and interact with external systems. Trigger with "anthropic tool use", "claude function calling", "claude tools", "anthropic structured output with tools".

2,266 Updated today
jeremylongshore
AI & Automation Featured

anth-core-workflow-a

Build Claude tool use (function calling) workflows with the Messages API. Use when implementing tool use, function calling, agent loops, or building AI assistants that interact with external systems. Trigger with phrases like "claude tool use", "anthropic function calling", "claude tools", "agent loop anthropic", "tool_use blocks".

2,266 Updated today
jeremylongshore
AI & Automation Solid

clade-core-workflow-a

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".

2,266 Updated today
jeremylongshore
AI & Automation Listed

tool-use-architect

Design and implement Claude tool/function calling patterns with error handling, parallel execution, and validation. Based on Anthropic's Claude Cookbooks.

1 Updated today
Marine-softdrink524
AI & Automation Listed

tool-discovery

Use when user asks "what tools are available?", "is there a tool for...", "can Claude do...", "how can I...", mentions MCP servers, wants to discover capabilities, or seems uncertain about available integrations. Helps discover and search for tools, MCP servers, and plugins.

2 Updated yesterday
robertogogoni