Skip to main content
Advanced web search skills powered by Nimble Search API. Built on the open-source Agent Skills standard for cross-platform agent compatibility.

Quick Install

npx skills add Nimbleway/agent-skills

Quick Start

The nimble-web-search skill activates automatically when you ask relevant questions:
"Search for recent AI developments"
→ Triggers nimble-web-search skill

"Find information about React Server Components"
→ Triggers nimble-web-search skill

"Look up the latest news on quantum computing"
→ Triggers nimble-web-search skill

About Agent Skills

This skill follows the Agent Skills open-source standard, making it compatible with multiple AI agent platforms. Install using the Skills CLI - the standard package manager for the Agent Skills ecosystem. Agent Skills Benefits:
  • 🔌 Cross-Platform - Works with any agent platform that supports Skills
  • 📦 Easy Installation - Use the Skills CLI package manager
  • 📖 Open Standard - Community-driven, vendor-neutral specification
  • 🔄 Reusable - Write once, use across different agent systems
  • 🌐 Growing Ecosystem - Part of the thriving Agent Skills community

Prerequisites

Nimble API Key Required - Get your key at https://app.nimbleway.com/ Set the NIMBLE_API_KEY environment variable using your platform’s method:

Claude Code

Add to ~/.claude/settings.json:
{
  "env": {
    "NIMBLE_API_KEY": "your-api-key-here"
  }
}

VS Code / GitHub Copilot

  • Add skills to .github/skills/ in your repository
  • Configure API key using GitHub Actions secrets in the copilot environment
  • Or set as environment variable in your shell

Shell / Terminal

export NIMBLE_API_KEY="your-api-key-here"
Or add to your shell profile (~/.bashrc, ~/.zshrc):
echo 'export NIMBLE_API_KEY="your-api-key-here"' >> ~/.zshrc

Any Platform

The skill checks for the NIMBLE_API_KEY environment variable regardless of how you set it. Use your platform’s recommended method for configuring environment variables.