Skip to main content
The Nimble Agents skill provides a step-by-step workflow for extracting structured data from any website using Nimble’s agents.

Quick Install

How It Works

The skill follows a find-or-generate approach:
  1. Search — Find an existing agent matching your target website
  2. Inspect — Review the agent’s input/output schema
  3. Run — Execute the agent and get structured results
  4. Generate — If no existing agent fits, create a custom one using natural language
  5. Publish — Save generated agents for future reuse
Results are always presented in clean markdown tables with numbered follow-up options.

Prerequisites

  • Nimble API KeySign up and generate a key from your Account Settings > API Keys
  • MCP Server Connection — The skill uses 5 MCP tools (nimble_agents_list, nimble_agents_get, nimble_agents_generate, nimble_agents_run, nimble_agents_publish) provided by the Nimble MCP server

Installation

See the Plugin Installation page for all options.

Vercel Agent Skills CLI

npx skills add Nimbleway/agent-skills
The agents skill requires the MCP server. After installing via npx skills, connect the MCP server manually:
claude mcp add --transport http nimble-mcp-server https://mcp.nimbleway.com/mcp \
  --header "Authorization: Bearer ${NIMBLE_API_KEY}"

Usage

Invoke the skill using the slash command:
/nimble:nimble-agents <describe what you need>
For example:
/nimble:nimble-agents extract product details from this Amazon page: https://www.amazon.com/dp/B0DGHRT7PS
The skill activates automatically — it searches for a matching agent, lets you pick one, runs it, and returns structured data.You can also describe your task in plain language without the slash command. If the plugin is installed, Claude Code will recognize when to use the agents skill based on your request.

MCP Tools Used

ToolPurpose
nimble_agents_listBrowse agents by keyword
nimble_agents_getGet agent details and input/output schema
nimble_agents_generateCreate custom agents via natural language
nimble_agents_runExecute agents and get structured results
nimble_agents_publishSave generated agents for reuse

Source Code

Full skill documentation, examples, and references:

agent-skills on GitHub

View the complete skill source including SKILL.md, examples, and API reference