{
  "markdown": "# Querit Search Plugin for Claude Code\n\nA Claude Code plugin that integrates Querit.ai's powerful search API, enabling Claude to access real-time web information, technical documentation, and current events.\n\n## Features\n\n- 🔍 **Real-time Web Search**: Access up-to-date information beyond Claude's knowledge cutoff\n- 🎯 **Smart Filtering**: Filter by date, language, country, and specific websites\n- 📚 **Comprehensive Results**: Get titles, URLs, snippets, and source information\n- 🚀 **Easy Integration**: Simple setup with environment variable configuration\n- 🤖 **Proactive Usage**: Claude automatically uses search when needed\n\n## Installation\n\n### Prerequisites\n\n- Claude Code CLI (version 1.0.33 or higher)\n- A Querit.ai API key (get yours at [https://querit.ai](https://querit.ai))\n\n### Method 1: Add Marketplace from GitHub\n\nThe easiest way to install and get automatic updates:\n\n```bash\nclaude\n# In Claude, add the marketplace:\n/plugin marketplace add github:querit-ai/claude-querit\n\n# Then install the plugin:\n/plugin install querit-search@querit-marketplace\n```\n\n### Method 2: Add Marketplace from Git URL\n\n#### Using HTTPS:\n```bash\n/plugin marketplace add https://github.com/querit-ai/claude-querit.git\n/plugin install querit-search@querit-marketplace\n```\n\n#### Using SSH:\n```bash\n/plugin marketplace add git@github.com:querit-ai/claude-querit.git\n/plugin install querit-search@querit-marketplace\n```\n\n#### Add Specific Branch or Tag:\n```bash\n# Add a specific version/tag\n/plugin marketplace add https://github.com/querit-ai/claude-querit.git#v1.0.0\n\n# Add a specific branch\n/plugin marketplace add https://github.com/querit-ai/claude-querit.git#main\n```\n\n### Method 3: Add from Other Git Hosts\n\nWorks with any Git hosting service (GitLab, Bitbucket, self-hosted):\n\n```bash\n# GitLab example\n/plugin marketplace add https://gitlab.com/your-org/claude-querit.git\n\n# Bitbucket example\n/plugin marketplace add https://bitbucket.org/your-org/claude-querit.git\n\n# Self-hosted Git server\n/plugin marketplace add https://git.yourcompany.com/plugins/claude-querit.git\n```\n\n### Method 4: Add from Local Path\n\nFirst, get the plugin files locally:\n\n**Option A: Clone the repository**\n```bash\ngit clone https://github.com/querit-ai/claude-querit.git\ncd claude-querit\n```\n\n**Option B: Download release**\n```bash\n# Download from GitHub releases\ncurl -L https://github.com/querit-ai/claude-querit/archive/refs/tags/v1.0.0.tar.gz -o claude-querit.tar.gz\ntar -xzf claude-querit.tar.gz\ncd claude-querit-1.0.0\n```\n\nOr manually download from: https://github.com/querit-ai/claude-querit/releases\n\n#### From Local Directory:\n```bash\n# Add marketplace from local directory containing .claude-plugin/marketplace.json\n/plugin marketplace add ./claude-querit\n\n# Then install\n/plugin install querit-search@querit-marketplace\n```\n\n#### From Direct marketplace.json Path:\n```bash\n/plugin marketplace add ./path/to/claude-querit/.claude-plugin/marketplace.json\n/plugin install querit-search@querit-marketplace\n```\n\n### Method 5: Direct Load (Development/Testing)\n\nLoad the plugin directly without adding to marketplace:\n\n```bash\n# Clone the repository\ngit clone https://github.com/querit-ai/claude-querit.git\n\n# Load directly with --plugin-dir flag\nclaude --plugin-dir ./claude-querit\n```\n\n### Method 6: Install from Official Marketplace\n\nOnce published to the official Claude Code plugins marketplace:\n\n```bash\nclaude\n# In Claude:\n/plugin install querit-search@claude-plugins-official\n```\n\n## Configuration\n\nWhen you first use the search feature, Claude will prompt you for your Querit.ai API key.\n\n**Get your API key**: Visit [https://querit.ai](https://querit.ai) to sign up and obtain your API key.\n\nThe API key will be remembered for the duration of your conversation session. You'll need to provide it again in a new session.\n\n## Usage\n\nOnce installed, Claude will automatically use the Querit search when appropriate. You can also explicitly request searches:\n\n### Basic Search\n\n```\nSearch for the latest React 19 features\n```\n\n### Recent Information\n\n```\nFind articles about AI developments from the past week\n```\n\n### Technical Documentation\n\n```\nLook up Stripe API documentation for subscription billing\n```\n\n### Specific Queries\n\n```\nSearch for Python performance optimization techniques\n```\n\n## How It Works\n\nThe plugin provides a skill that:\n\n1. **Triggers automatically** when Claude needs current information\n2. **Calls the Querit.ai API** with your search query\n3. **Formats results** with titles, URLs, snippets, and relevance\n4. **Synthesizes information** to answer your questions\n\n## Advanced Features\n\n### Time-based Filtering\n\n```\nFind news about SpaceX from the last 30 days\n```\n\n### Language-specific Search\n\n```\nSearch for German documentation about Vue.js\n```\n\n### Site-specific Search\n\n```\nSearch GitHub and Stack Overflow for Redis examples\n```\n\n## API Details\n\nThe plugin uses the Querit.ai Search API v1:\n\n- **Endpoint**: `https://api.querit.ai/v1/search`\n- **Authentication**: Bearer token\n- **Rate Limits**: Based on your Querit.ai plan\n\n### Available Filters\n\n- **Time Range**: Last N days/weeks/months/years, or specific date ranges\n- **Languages**: English, Japanese, Korean, German, French, Spanish, Portuguese\n- **Countries**: Argentina, Australia, Brazil, Canada, Colombia, France, Germany, India, Indonesia, Japan, Mexico, Nigeria, Philippines, South Korea, Spain, United Kingdom, United States\n- **Sites**: Include or exclude specific domains\n\n## Testing\n\nRun the included test cases:\n\n```bash\n# Load plugin with test directory\nclaude --plugin-dir .\n\n# Run test prompts from evals/evals.json\n```\n\n## Development\n\n### Project Structure\n\n```\nclaude-querit/\n├── .claude-plugin/\n│   └── plugin.json           # Plugin metadata\n├── skills/\n│   └── querit-search/\n│       └── SKILL.md          # Main skill definition\n├── evals/\n│   └── evals.json            # Test cases\n├── README.md                 # This file\n└── LICENSE                   # License information\n```\n\n### Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Test with `claude --plugin-dir .`\n5. Submit a pull request\n\n## Troubleshooting\n\n### \"401 Unauthorized\" Error\n\n- Your API key is invalid or expired\n- Get a valid API key at [https://querit.ai](https://querit.ai)\n- Claude will prompt you for a new key when needed\n\n### \"429 Too Many Requests\" Error\n\n- You've hit the rate limit for your API plan\n- Wait a few moments and try again\n- Consider upgrading your Querit.ai plan for higher limits\n\n### Plugin Not Loading\n\n- Ensure Claude Code version is 1.0.33 or higher: `claude --version`\n- Check plugin structure matches the expected format\n- Run `/reload-plugins` to reload without restarting\n\n### Search Not Triggering\n\n- Explicitly mention \"search\" or \"find\" in your query\n- Make sure the plugin is installed: `/help` should show `/querit-search:querit-search`\n\n## License\n\n[Your chosen license - MIT recommended for open source]\n\n## Links\n\n- **Querit.ai**: [https://querit.ai](https://querit.ai)\n- **API Documentation**: [https://querit.ai/docs](https://querit.ai/docs)\n- **Claude Code Documentation**: [https://code.claude.com](https://code.claude.com)\n- **Report Issues**: [GitHub Issues](https://github.com/querit-ai/claude-querit/issues)\n\n## Credits\n\nCreated for the Claude Code community. Powered by [Querit.ai](https://querit.ai).\n\n---\n\n**Note**: This plugin requires a valid Querit.ai API key. Visit [https://querit.ai](https://querit.ai) to sign up and get your API key.\n",
  "bytes": 7507,
  "sha": "02e500096f973e862f4bc0bbda16b4d138e988a6dea74c6e5ab6aea61705c79f",
  "repo_slug": "querit-ai/claude-querit",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_querit_ai_claude_querit_querit_f2064efc/readme"
}