MeshWorld India LogoMeshWorld.
Back to Tags
Topic View

#Agent Skills.

Explore Agent Skills articles, tutorials, guides, and code examples on MeshWorld India. Learn best practices, get practical tips, and level up your Agent Skills skills.

18 posts
Dec 2025 – Mar 2026
Filed under this topic
How to Build and Publish a Vercel Agent Skill
AI5 min read

How to Build and Publish a Vercel Agent Skill

Stop writing complex wrappers. Learn how to define, test, and publish a Vercel Agent Skill using the standard npx skills CLI and simple Markdown.

Using Vercel Skills in AI SDK: Build Smarter Applications
AI5 min read

Using Vercel Skills in AI SDK: Build Smarter Applications

Stop using monolithic prompts. Learn to programmatically inject modular Vercel Agent Skills into AI SDK workflows to build smarter, more focused applications.

Intro to Vercel Agent Skills: Replace Messy System Prompts
AI5 min read

Intro to Vercel Agent Skills: Replace Messy System Prompts

Explore Vercel's Agent Skills ecosystem. Replace messy, copy-pasted system prompts with structured, version-controlled Markdown files for better AI agents.

Practical Vercel Skills: Guide for Cursor and Claude Code
AI5 min read

Practical Vercel Skills: Guide for Cursor and Claude Code

Learn how to use Vercel Agent Skills in Cursor and Claude Code. Import community skills to stop AI hallucinations and improve your daily coding workflow.

Agent Skills with Google Gemini: Function Calling Guide
Agent Skills5 min read

Agent Skills with Google Gemini: Function Calling Guide

Complete guide to Gemini function calling — define tools, handle function_call responses, return results, and compare syntax with Claude and OpenAI. Node.js.

Vercel AI SDK Tools: One API for Claude and OpenAI Skills
Agent Skills5 min read

Vercel AI SDK Tools: One API for Claude and OpenAI Skills

Vercel AI SDK's unified tool interface works with Claude, OpenAI, and Gemini. Write your skill once and switch AI providers without rewriting the agent loop.

File System Skills: Let Your Agent Read and Write Files
Agent Skills5 min read

File System Skills: Let Your Agent Read and Write Files

Build safe file system skills that let an agent read, write, and list files — with path sandboxing, size limits, and guardrails to prevent runaway writes.

Agent Skills with Memory: Persisting State Between Chats
Agent Skills5 min read

Agent Skills with Memory: Persisting State Between Chats

Teach your agent to remember across conversations. Build read/write memory skills backed by a JSON file, then upgrade to SQLite — full Node.js code.

OpenAI Agent Skills: Mastering Function Calling & Tools
OpenAI5 min read

OpenAI Agent Skills: Mastering Function Calling & Tools

Learn to use OpenAI function calling with GPT-4o. Define tools, handle tool_calls, and return results with a complete Node.js example for autonomous AI agents.

Agent Skills with the Claude API: tool_use From Scratch
Claude5 min read

Agent Skills with the Claude API: tool_use From Scratch

Learn how to give Claude tools using the Anthropic API. Define tools, handle responses, and return results with a complete Node.js working code example.

Build Your First Agent Skill for OpenClaw (Step-by-Step)
OpenClaw5 min read

Build Your First Agent Skill for OpenClaw (Step-by-Step)

Learn how to create a custom OpenClaw skill using SKILL.md — from a simple weather lookup to a database query. Real code, real scenarios, no fluff.

What Are Agent Skills? How AI Tools Enable Real Actions (2026)
AI5 min read

What Are Agent Skills? How AI Tools Enable Real Actions (2026)

Learn what agent skills and tool calling are in 2026. Discover how AI agents execute real-world APIs, databases, calculations, and autonomous workflows.

How to Write Your First Claude Code Skill (SKILL.md Guide)
AI5 min read

How to Write Your First Claude Code Skill (SKILL.md Guide)

A hands-on tutorial to create a working Claude Code skill using SKILL.md — build a /smart-commit skill.

What Are Claude Agent Skills and How Do They Work?
AI5 min read

What Are Claude Agent Skills and How Do They Work?

A clear explainer on Claude Agent Skills — what they are, and why they matter for developer workflows in 2026.

Build a GitHub Issue Creator Skill for Your AI Agent
Agent Skills5 min read

Build a GitHub Issue Creator Skill for Your AI Agent

Create a production-ready agent skill that creates GitHub issues from natural language, with label assignment, duplicate detection, and dry-run mode.

Chaining Agent Skills: Research, Summarize, and Save
Agent Skills5 min read

Chaining Agent Skills: Research, Summarize, and Save

Build a skill chain where an agent searches the web, summarizes findings, and saves results to a file — all from a single prompt. Full Node.js walkthrough.

Testing and Debugging Agent Skills Before You Deploy
Agent Skills5 min read

Testing and Debugging Agent Skills Before You Deploy

Skills that work alone fail differently inside an agent loop. Unit test your tools, mock AI calls, and debug the full tool_use cycle in Node.js.

Handling Errors in Agent Skills: Retries and Fallbacks
AI5 min read

Handling Errors in Agent Skills: Retries and Fallbacks

What happens when a tool fails? Handle errors in agent skills — timeouts, bad API responses, retries, and graceful fallbacks with real Node.js code.