Agent DailyAgent Daily

Skills & Tools

MCP servers, integrations, and tool-use patterns for agents

Build a playbook about Skills & Tools

Save articles from this feed, then generate a personalized implementation guide

See a sample →
79 results
VIDbeginner
Claude Code on desktop

Anthropic has launched Claude Code in desktop applications as a research preview feature. This enables users to run multiple local and remote code execution environments directly from their desktop. The feature allows developers to write, test, and execute code seamlessly within the Claude interface on desktop platforms.

AnthropicMar 18, 2026
VIDbeginner
Claude Agent Skills Explained

Agent Skills are organized folder structures that encapsulate specialized expertise and knowledge that Claude can automatically invoke when relevant to a user's task. These skills enable Claude to access domain-specific tools, knowledge bases, and capabilities without explicit user instruction. Skills are designed to be modular, reusable, and automatically triggered based on task context and relevance.

AnthropicMar 18, 2026
RELintermediate
[Release] anthropics/claude-code v2.1.77: v2.1.77

Claude Code v2.1.77 introduces significant improvements to token limits for Claude Opus and Sonnet models (up to 128k), enhances sandbox filesystem controls with `allowRead` settings, and fixes numerous critical bugs affecting bash commands, memory management, API tracking, and terminal UI interactions. The release also improves performance with faster startup times and session resumption, better plugin validation, and refined agent communication workflows.

ashwin-antMar 17, 2026
RELintermediate
[Release] anthropics/claude-code v2.1.76: v2.1.76

Claude Code v2.1.76 introduces MCP elicitation support for interactive structured input, new hooks for intercepting responses, and the `/effort` slash command for model effort control. The release includes significant bug fixes for deferred tools losing schemas after compaction, plan mode re-approval issues, voice mode input handling, and Remote Control session stability. Performance improvements include optimized worktree startup, better background agent handling, and improved model fallback notifications.

ashwin-antMar 14, 2026
RELintermediate
[Release] openclaw/openclaw v2026.3.8-beta.1: openclaw 2026.3.8-beta.1

OpenClaw v2026.3.8-beta.1 introduces backup and verification CLI commands, configurable Talk mode silence timeouts, improved web search capabilities with Brave LLM Context support, macOS remote gateway token handling, and numerous fixes across Android, Telegram, Matrix, browser CDP, and model compatibility. Key enhancements include ACP provenance metadata tracking, TUI agent workspace inference, and WCAG AA-compliant light theme detection for terminals.

steipeteMar 14, 2026
TUTintermediate
Extended thinking Feb 2025 • Thinking Use Claude's extended thinking for transparent step-by-step reasoning with budget management.

This cookbook demonstrates Claude 3.7 Sonnet's extended thinking feature, which provides transparent step-by-step reasoning with budget management. Extended thinking enables Claude to show its internal reasoning process through thinking content blocks before delivering final answers. The guide covers setup, basic examples, streaming with thinking, token counting, redacted thinking, and error handling with practical Python code examples.

Mar 8, 2026
TUTintermediate
Parallel tool calls on Claude 3.7 Sonnet Mar 2025 • Tools Enable parallel tool calls on Claude 3.7 Sonnet using batch tool meta-pattern workaround.

Claude 3.7 Sonnet may not make parallel tool calls by default even when enabled. This cookbook demonstrates a workaround using a "batch tool" meta-pattern that wraps multiple tool invocations, encouraging the model to call multiple tools simultaneously in a single response. By introducing a batch_tool that accepts an array of tool invocations, developers can improve latency and efficiency by processing multiple tool calls in parallel rather than sequentially.

Mar 8, 2026
TUTintermediate
Speculative prompt caching May 2025 • Responses Reduce time-to-first-token by warming cache speculatively while users formulate their queries.

Speculative prompt caching is a technique that reduces time-to-first-token (TTFT) by warming up Claude's cache while users are still formulating their queries. Instead of waiting until a user submits their question to load context into the cache, the system begins cache warming immediately when the user starts typing. This cookbook demonstrates the pattern using SQLite source code as example context, showing how to implement it with the Anthropic Python SDK using async operations and prompt caching controls.

Mar 8, 2026
TUTintermediate
Memory & context management with Claude Sonnet 4.6 May 2025 • Tools Agent Patterns Build AI agents with persistent memory using Claude's memory tool and context editing.

This cookbook demonstrates how to build AI agents with persistent memory using Claude's memory tool and context editing capabilities. It addresses challenges of long-running agents losing learned patterns between sessions and context window overflow by implementing cross-conversation learning and automatic context management. The guide covers practical implementations for use cases like code review assistants, research assistants, and customer support bots, with setup instructions and best practices for memory security and organization.

Mar 8, 2026
TUTintermediate
The chief of staff agent Sep 2025 • Claude Agent SDK Agent Patterns Build multi-agent systems with subagents, hooks, output styles, and plan mode features.

This cookbook article introduces the Claude Agent SDK for building multi-agent systems, using a Chief of Staff agent for a startup as the primary example. It demonstrates key features including persistent memory via CLAUDE.md files, bash tool execution for Python scripts, and coordination of specialized subagents. The article progressively builds a comprehensive agent system that aggregates insights from multiple domains to provide executive summaries and actionable recommendations for a CEO managing a $10M Series A startup.

Mar 8, 2026
TUTbeginner
The one-liner research agent Sep 2025 • Claude Agent SDK Agent Patterns Build a research agent using Claude Code SDK with WebSearch for autonomous research.

This cookbook teaches how to build a research agent using Claude Agent SDK with WebSearch tool for autonomous information gathering and synthesis. The guide demonstrates creating a functional research agent in just a few lines of code, then progresses to production improvements including conversation memory, system prompts for specialized behavior, and multimodal research capabilities. The agent autonomously decides when and how to search, follows promising leads, and synthesizes findings without predefined workflows.

Mar 8, 2026
TUTintermediate
Building custom Skills for Claude Oct 2025 • Skills Create, deploy, and manage custom skills extending Claude with specialized organizational workflows.

This cookbook guide teaches developers how to create, deploy, and manage custom skills for Claude that extend its capabilities with organization-specific workflows and domain knowledge. Custom skills are specialized expertise packages bundled as markdown files, scripts, and resources that codify organizational knowledge, ensure consistency, and automate complex workflows while maintaining privacy. The guide covers skill architecture, SKILL.md requirements, progressive disclosure for token optimization, and provides utility functions for skill management including creation, listing, and deletion.

Mar 8, 2026
TUTintermediate
Claude Skills for financial applications Oct 2025 • Skills Build financial dashboards and portfolio analytics using Claude's Excel, PowerPoint, PDF skills.

This cookbook teaches how to build financial dashboards, portfolio analytics, and automated reporting workflows using Claude's Excel, PowerPoint, and PDF skills. It covers three main use cases: creating comprehensive financial models with formulas and charts in Excel, generating executive presentations from financial data, and automating multi-format reporting pipelines. The guide includes setup instructions, data loading examples, and helper functions for working with the Anthropic SDK to create professional financial documents directly through Claude's interface.

Mar 8, 2026
TUTintermediate
Low latency voice assistant with ElevenLabs Nov 2025 • Integrations Build a low-latency voice assistant using ElevenLabs for speech-to-text and text-to-speech combined with Claude.

This cookbook demonstrates building a low-latency voice assistant by combining ElevenLabs (speech-to-text and text-to-speech) with Claude for intelligent responses. The guide covers installation, API setup, and crucially, latency optimization techniques including Claude's streaming API and sentence-by-sentence TTS synthesis. Performance measurements show streaming reduces perceived latency by ~31% compared to non-streaming approaches, with TTS first-chunk delivery in 0.39 seconds.

Mar 8, 2026
TUTintermediate
The site reliability agent Feb 2026 • Claude Agent SDK Agent Patterns Build an incident response agent with read-write MCP tools for autonomous diagnosis, remediation, and post-mortem documentation.

This cookbook demonstrates building an autonomous SRE incident response agent using the Claude Agent SDK with read-write MCP tools for safe infrastructure access. The agent can investigate incidents by querying metrics and logs, diagnose root causes, apply remediations by editing configs and restarting services, and document post-mortems. The pattern uses a subprocess-based MCP server with scoped tool access, clear tool descriptions, and human-in-the-loop workflows to enable autonomous yet controlled incident response.

Mar 8, 2026
TUTbeginner
Introduction to Claude Skills Create documents, analyze data, automate workflows with Claude's Excel, PowerPoint, PDF skills.

This guide introduces Claude Skills, specialized capability packages that enable document creation, data analysis, and workflow automation through Excel, PowerPoint, and PDF generation. Skills use a three-tier progressive loading model (metadata → full instructions → linked files) to optimize token usage and efficiency. The tutorial covers environment setup, API configuration, skill discovery, and practical quick-start examples for Excel, PowerPoint, and PDF workflows.

Mar 8, 2026
TUTintermediate
Giving Claude a crop tool for better image analysis Give Claude a crop tool to zoom into image regions for detailed analysis of charts, documents, and diagrams.

This cookbook demonstrates how to build a crop tool for Claude to analyze images with greater detail by zooming into specific regions. The tool uses normalized coordinates (0-1) to let Claude request cropped sections of charts, documents, and diagrams without needing to know pixel dimensions. An agentic loop handles tool calls iteratively until Claude provides a final answer, enabling precise analysis of small text, chart comparisons, and technical details.

Mar 8, 2026
TUTintermediate
Tool search with embeddings Scale Claude applications to thousands of tools using semantic embeddings for dynamic tool discovery.

This cookbook demonstrates how to scale Claude applications from dozens to thousands of tools using semantic embeddings for dynamic tool discovery. Instead of front-loading all tool definitions (which consumes context and increases latency), the approach provides Claude with a single tool_search tool that returns relevant capabilities on demand, reducing context usage by 90%+. The guide walks through implementing client-side semantic search using SentenceTransformer embeddings to match user queries with appropriate tools from large libraries, making it practical for production applications managing extensive tool ecosystems.

Mar 8, 2026
TUTintermediate
Programmatic tool calling (PTC) Reduce latency and token consumption by letting Claude write code that calls tools programmatically in the code execution environment.

Programmatic Tool Calling (PTC) enables Claude to write and execute code that calls tools directly within the code execution environment, eliminating round-trips through the model for each tool invocation. This approach significantly reduces latency and token consumption, especially when dealing with large datasets or sequential tool dependencies. The cookbook demonstrates PTC using a team expense management API scenario where Claude analyzes employee expenses across multiple tool calls, filters irrelevant data programmatically, and identifies budget overages without excessive context window usage.

Mar 8, 2026
VIDintermediate
"okay, but I want Gemini3 to perform 10x for my specific use case" - Here is how

This content discusses strategies for optimizing Gemini 3 performance for specific use cases, achieving 10x improvements. It references prompt engineering best practices and introduces the Superdesign agent as a tool for implementation. The video likely covers techniques for tailoring large language models to particular applications through effective prompting and agent-based workflows.

AI JasonMar 8, 2026