소스 정보
- 저장소
- javimosch/open-claw-skills
- 최근 소스 활동
- 2026년 6월 6일 19:20
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/javimosch/open-claw-skills --skill curated-search명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Connect your AI assistant to GoHighLevel CRM via the official API v2. Manage contacts, conversations, calendars, pipelines, invoices, payments, workflows, and 30+ endpoint groups through natural language. Includes interactive setup wizard and 100+ pre-built, safe API commands. Python 3.6+ stdlib only — zero external dependencies.
Manage Cloudflare DNS records, Tunnels (cloudflared), and Zero Trust policies. Use for pointing domains, exposing local services via tunnels, and updating ingress rules.
Mema's personal brain - SQLite metadata index for documents and Redis short-term context buffer. Use for organizing workspace knowledge paths and managing ephemeral session state.
| name | curated-search |
| description | Domain-restricted full-text search over curated technical documentation |
| version | 1.0.7 |
| author | qsmtco |
| license | MIT |
| homepage | https://github.com/openclaw/curated-search |
| metadata | {"openclaw":{"requires":{"bins":"[Truncated]"},"emoji":"🔍"}} |
Domain-restricted full-text search over a curated whitelist of technical documentation (MDN, Python docs, etc.). Provides clean, authoritative results without web spam.
This skill does not call any external network endpoints during search operations. The crawler optionally makes outbound HTTP requests during index builds (one‑time setup), but those are user‑initiated (npm run crawl) and respect the configured domain whitelist.
config.yaml. It respects robots.txt and configurable delays.config.yaml and the index file in data/.The curated-search.search tool is invoked only when the user explicitly calls it. It does not run autonomously. OpenClaw calls the tool handler (scripts/search.js) when the user asks to search the curated index.
By using this skill, you trust that the code operates locally and only crawls domains you approve. The skill does not send your queries or workspace data to any third party. Review the open‑source implementation before installing.
Search the curated index.
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
query | string | yes | — | Search query terms |
limit | number | no | 5 | Maximum results (capped by config.max_limit, typically 100) |
domain | string | no | null | Filter to specific domain (e.g., docs.python.org) |
min_score | number | no | 0.0 | Minimum relevance score (0.0–1.0); filters out low-quality matches |
offset | number | no | 0 | Pagination offset (skip first N results) |
JSON array of result objects:
[
{
"title": "Python Tutorial",
"url": "https://docs.python.org/3/tutorial/",
"snippet": "Python is an easy to learn, powerful programming language...",
"domain": "docs.python.org",
"score": 0.87,
"crawled_at": 1707712345678
}
]
Fields:
title — Document title (cleaned)url — Source URL (canonical)snippet — Excerpt (~200 chars) from contentdomain — Hostname of sourcescore — BM25 relevance score (higher is better; not normalized 0–1 but typically 0–1 range)crawled_at — Unix timestamp when page was crawledsearch CuratedSearch for "python tutorial"
search CuratedSearch for "async await" limit=3 domain=developer.mozilla.org
search CuratedSearch for "linux man page" min_score=0.3
If an error occurs, the tool exits non-zero and prints a JSON error object to stderr, e.g.:
{
"error": "index_not_found",
"message": "Search index not found. The index has not been built yet.",
"suggestion": "Run the crawler first: npm run crawl",
"details": { "path": "data/index.json" }
}
Common error codes:
| Code | Meaning | Suggested Fix |
|---|---|---|
config_missing | Configuration file not found | Specify --config path or ensure config.yaml exists |
config_invalid | YAML parsing failed | Check syntax in config.yaml |
config_missing_index_path | index.path not set | Add index.path to config |
index_not_found | Index file missing | Run npm run crawl to build index |
index_corrupted | Index file incompatible or corrupted | Rebuild index with npm run crawl |
index_init_failed | Unexpected index initialization error | Check permissions, reinstall dependencies |
missing_query | No query provided | Provide --query argument |
query_too_long | Query exceeds 1000 characters | Shorten the query |
limit_exceeded | Limit > config.max_limit | Use a smaller limit |
invalid_domain | Domain filter malformed | Use format like docs.python.org |
conflicting_flags | Mutually exclusive flags used (e.g., --stats with --query) | Use flags correctly |
stats_failed | Could not retrieve index stats | Ensure index is accessible |
search_failed | Search execution threw an error | Check query and index integrity |
Edit config.yaml in the skill directory. Key sections:
domains — whitelist of allowed domains (required)seeds — starting URLs for crawlingcrawl — depth, delay, timeout, max_documentscontent — min_content_length, max_content_lengthindex — path to index filessearch — default_limit, max_limit, min_scoreSee README.md for full configuration docs.
README.mdspecs/PLAN.mdCONTRIBUTING.md