AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Skill Search

skill-0oooooooo0-skillless-skill-search · by 0oooooooo0

A Claude skill from 0oooooooo0/skillless.

No reviews yet
0 installs
13 views
0.0% view→install

Install

$ agentstack add skill-0oooooooo0-skillless-skill-search

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-0oooooooo0-skillless-skill-search)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Skill Search? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skill: skill-search

Search for Claude Code skills across multiple sources.

user-invocable: false description: Searches for relevant skills across local installation, skills.sh directory, and GitHub. Called by other skills or commands. allowed-tools: [Read, Glob, Grep, Bash, WebSearch]

Instructions

When called with a search query, search these 3 sources and return consolidated results.

Source 1: Local Installed Skills

Search already-installed skills:

Glob: ~/.claude/skills/*/SKILL.md
Grep: search for the query keywords in matched files

Mark these as installed: true.

Source 2: skills.sh Directory

Search the skills.sh open skill directory using the CLI:

npx skills find {query}

Parse the output to extract matching skills. Each line follows the format:

owner/repo@skill-name     installs
└ https://skills.sh/owner/repo/skill-name

Extract from the output:

  • Skill name and exact owner/repo@skill-name path
  • Install count (popularity indicator)
  • Install command: npx skills add -y -g

IMPORTANT: Always use the exact owner/repo path from the CLI output. Do NOT guess or modify the path.

Source 3: GitHub (Fallback)

Only if Sources 1-2 return fewer than 3 results total:

WebSearch: site:github.com "SKILL.md" claude {query}

Parse results to extract skill repositories.

Output Format

Return results as a markdown table:

| # | Name | Source | Description | Installed | |---|------|--------|-------------|-----------| | 1 | skill-name | local/skills.sh/github | Short description | Yes/No |

Sort order: local first, then skills.sh, github.

Also return a structured JSON block for programmatic use:

{
  "results": [
    {
      "name": "skill-name",
      "source": "local|skills.sh|github",
      "description": "...",
      "installed": true,
      "install_info": {
        "type": "skills-add|github-plugin|skill-md|installed",
        "url_or_name": "..."
      }
    }
  ],
  "query": "original query",
  "total": 5
}

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.