rdk-skill-finder

Searches the D-Robotics RDK skill catalog and returns ranked matches with install actions.

3|Updated Aug 6, 2026
One-click install
npx skills add https://github.com/D-Robotics/rdk-skills --skill rdk-skill-finder-d-robotics
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: rdk-skill-finder
Source: https://github.com/D-Robotics/rdk-skills/tree/main/plugins/d-robotics-skills/skills/rdk-skill-finder
Command: npx skills add https://github.com/D-Robotics/rdk-skills --skill rdk-skill-finder-d-robotics

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Finding the right D-Robotics RDK Skill among 97 registered entries is error-prone when relying on memory or guessing names. This Skill searches a bundled, generated catalog index and returns only registered Skills with deterministic install or handoff actions, eliminating invented skill names and wrong install commands. ## Core Features & Use Cases - Deterministic catalog search: Runs scripts/search_catalog.py against references/skill-index.json with token-based scoring, exact-name matching, and filters for pack, platform, and install type (flat or workspace). - Action routing: Returns an npx skills add command for flat Skills and hands workspace-pack results to rdk-pack-installer, which owns confirmation-gated installation. - Safe fallback: Returns rdk-docs-reference when no registered Skill matches, and fails closed on malformed or stale index data. - Use Case: A user asks "which skill handles X5 model quantization?" — the finder searches the index with the X5 platform filter and returns the registered toolchain Skill with its correct workspace handoff action. ## Quick Start Ask the agent to find the RDK Skill for a task such as board diagnostics or X5 model quantization and return its install action.

Frequently Asked Questions about rdk-skill-finder

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find the right RDK Skill for a task?▼

Run the bundled search script with a task description, board platform, or exact skill name as the query. It returns ranked matches from the generated catalog index, each with its canonical name, description, and install action.

How do I find which RDK skill handles X5 model quantization?▼

Search the catalog with the quantization task terms and the X5 platform filter. The finder returns only registered X5 toolchain records and routes workspace results to rdk-pack-installer rather than inventing a skill name.

Does rdk-skill-finder install skills directly?▼

No, the finder is read-only and never executes returned actions. Flat results include an npx skills add command for the user to run, and workspace results are handed to rdk-pack-installer, which enforces confirmation gates.

What happens when no RDK Skill matches my query?▼

The search returns an empty matches list with rdk-docs-reference as the fallback. The finder does not invent skills, repositories, or commands, and it does not fall back to broad web search.

Why does the catalog search return an error?▼

The script validates the index schema version and required record fields before searching. An unreadable, malformed, or unsupported index produces an error result and stops, rather than guessing from stale catalog data.