# Suprapack Claude Code Skill Search

> Suprapack Claude Code Skill Search is a paid API for AI agents from suprapack-x402.fly.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Searches a curated library of 588+ Claude Code skills by keyword, returning matching skill content, quality scores, categories, and source repo information.

## Facts

- Endpoint: POST https://suprapack-x402.fly.dev/api/find-skill
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suprapack-claude-code-skill-search-3ace5b98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B-uTNnz6GZ34_5IkDKazz

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability suprapack-claude-code-skill-search-3ace5b98 -d '<json body>'
```

Example prompt: Search the Claude Code skill library for skills related to 'git workflows', with a minimum quality of 7, and return the top 5 results including their full markdown content.

## When to prefer this

Use this endpoint when an AI agent needs to dynamically discover and load Claude Code skills on demand without embedding the full 15MB skill library locally. Ideal when you need keyword-based skill discovery with quality filtering and category scoping, and are comfortable paying $0.03 USDC per call via x402 micropayment protocol.

## Known failure modes

- Invalid or missing keyword returns an error with ok:false
- Quality filter too strict returns empty results array
- Limit exceeds max of 10 results in a request
- Network timeout reaching fly.dev host
- Payment not included or invalid returns 402 error
- Unknown or misspelled category filter yields no matches

## How this service works

Search 588+ curated Claude Code skills by keyword. Returns top matching skills with full markdown content, quality score, categories, and source repo. Optional filters: min_quality (1-10), categories array, limit (default 5, max 10). Useful for AI agents that need to discover and load specialized skills on-demand without bundling the full 15MB skill library.

## Output

Returns a JSON object with an ok flag, query echo, count of results, and an array of up to 10 matching skills — each containing name, path, slug, tags, match score, full markdown content, integer quality rating (1-10), categories array, source repository, and description.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "count": 2,
  "query": "stripe webhook",
  "results": [
   {
    "name": "stripe-integration",
    "slug": "stripe-integration",
    "tags": [
     "skill",
     "stripe"
    ],
    "score": 18.5,
    "content": "# Stripe Integration\n\n...full markdown body...",
    "quality": 9,
    "categories": [
     "payments",
     "backend"
    ],
    "description": "Build Stripe payment integrations with webhooks, subscriptions, and checkout"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suprapack-claude-code-skill-search-3ace5b98/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from suprapack-x402.fly.dev](https://www.zero.xyz/host/suprapack-x402.fly.dev/llms.txt)
