Skip to content

Skill Search & Discovery

Overview

SkillHub provides powerful full-text search functionality, enabling users to quickly find the skill packages they need.

Search supports not only keyword matching but also multi-dimensional filtering and sorting by namespace, tag, downloads, rating, and more.

Concept Diagram

Core Features:

  • Full-text Search: Search skill package names, descriptions, tags, authors
  • Smart Filters: Filter by namespace, tag, visibility
  • Multiple Sorting: Sort by relevance, downloads, rating, update time
  • Permission-aware: Only show skill packages user has access to
  • Real-time Updates: Newly published skill packages appear immediately in search results

Search Algorithm:

SkillHub uses PostgreSQL full-text search, supporting:

  • Chinese and English word segmentation
  • Fuzzy matching
  • Weighted ranking (title weight > description weight > tag weight)

Use Cases

Case 1: New Member Exploration

New developer joins the team and wants to know what skill packages are available.

Screenshot

Case 2: On-Demand Search

Developer needs a PDF processing skill package, searches for "pdf" keyword.

Case 3: Browse Popular

View skill packages with highest downloads and best ratings in the team, learn best practices.

Case 4: Filter by Tag

Only view skill packages with data-processing tag.

Steps

bash
# Configure registry
export CLAWHUB_REGISTRY=http://localhost:8080

# Search skill packages
npx clawhub search pdf

# Install skill package
npx clawhub install pdf-parser

# Install skill package from specific namespace
npx clawhub install my-team--pdf-parser
  1. Access Search Page

Visit http://localhost:3000/search or use the search box on the homepage.

  1. Enter Keywords

Enter keywords in the search box, e.g., "pdf parser".

  1. Apply Filters
  • Select namespace (e.g., only iflytek namespace)
  • Select tag (e.g., data-processing)
  • Select sort order (e.g., by downloads descending)

Flow Diagram

  1. View Results

Search results update in real-time, showing matching skill package list.

  1. View Details

Click skill package card to view detailed information, version history, file list.

  1. Install

After finding the right skill package, use CLI command to install or click "Download" button.

API Reference

Search Skill Packages:

bash
GET /api/web/skills?q=pdf&namespace=iflytek&label=data-processing&sort=downloads&page=0&size=20

Parameter Reference:

ParameterTypeDescription
qstringSearch keyword (optional)
namespacestringNamespace filter (optional)
labelstring[]Tag filter (optional, multiple allowed)
sortenumSort by: relevance, downloads, rating, updated
pagenumberPage number (starts from 0)
sizenumberPage size (default 20, max 100)

Response Example:

json
{
  "content": [
    {
      "id": "skill-123",
      "namespace": "iflytek",
      "slug": "pdf-parser",
      "name": "PDF Parser",
      "description": "Extract text and metadata from PDF files",
      "downloads": 1234,
      "rating": 4.5,
      "starCount": 56,
      "latestVersion": "1.2.3",
      "updatedAt": "2026-03-15T10:30:00Z",
      "labels": ["data-processing", "pdf"]
    }
  ],
  "totalElements": 42,
  "totalPages": 3,
  "number": 0,
  "size": 20
}

Notes

Permission Control: Search results are automatically filtered by user permissions. PRIVATE skill packages are only visible to namespace members, INTERNAL skill packages are only visible to logged-in users.

  • Search Performance: SkillHub uses PostgreSQL full-text search with Chinese and English word segmentation
  • Real-time Updates: Newly published skill packages appear immediately in search results
  • Tag Convention: Recommend using consistent tag naming conventions for easier filtering
  • Search Suggestions: Supports search suggestions and autocomplete (frontend implementation)

Copyright © iFlytek Co., Ltd.