소스 정보
- 저장소
- javimosch/open-claw-skills
- 최근 소스 활동
- 2026년 6월 6일 19:20
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/javimosch/open-claw-skills --skill distil명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | distil |
| description | Fetch web pages as clean Markdown and search the web via the distil.net proxy |
| version | 2.0.1 |
| metadata | {"openclaw":{"emoji":"🔍","requires":{"bins":"[Truncated]","env":"[Truncated]"},"primaryEnv":"DISTIL_API_KEY"}} |
Gives agents discoverable, consistent access to the Distil proxy — no manual URL construction, no remembering headers or API keys.
Distil converts web pages into clean Markdown, saving 60–80% of tokens for LLM consumption.
DISTIL_API_KEY environment variableDISTIL_PROXY_URL (defaults to https://proxy.distil.net)# Fetch any URL as clean Markdown
curl -s "${DISTIL_PROXY_URL:-https://proxy.distil.net}/https://example.com" \
-H "X-Distil-Key: $DISTIL_API_KEY"
# Search the web and get results as Markdown
curl -s "${DISTIL_PROXY_URL:-https://proxy.distil.net}/search?q=best+practices+for+Go+error+handling" \
-H "X-Distil-Key: $DISTIL_API_KEY" \
-H "Accept: text/markdown"
# Take a screenshot of a web page and return it as an image
curl -s "${DISTIL_PROXY_URL:-https://proxy.distil.net}/screenshot/https://example.com" \
-H "X-Distil-Key: $DISTIL_API_KEY" > screenshot.png
# Render a web page (such as a single page javascript app) before trying to extract markdown
curl -s "${DISTIL_PROXY_URL:-https://proxy.distil.net}/render/https://example.com" \
-H "X-Distil-Key: $DISTIL_API_KEY"
# Fetch a URL and return its raw content bypassing any attempt to render markdown
curl -s "${DISTIL_PROXY_URL:-https://proxy.distil.net}/raw/https://example.com" \
-H "X-Distil-Key: $DISTIL_API_KEY"
# Fetch a URL and return its content without using the cache
curl -s "${DISTIL_PROXY_URL:-https://proxy.distil.net}/nocache/https://example.com" \
-H "X-Distil-Key: $DISTIL_API_KEY"
| Environment Variable | Default | Description |
|---|---|---|
DISTIL_API_KEY | (none, required) | API key |
DISTIL_PROXY_URL | https://proxy.distil.net | Proxy base URL (override for self-hosted) |
# Research a topic
curl -s "${DISTIL_PROXY_URL:-https://proxy.distil.net}/search?q=OpenClaw+agent+framework" \
-H "X-Distil-Key: $DISTIL_API_KEY" \
-H "Accept: text/markdown"
# Read documentation
curl -s "${DISTIL_PROXY_URL:-https://proxy.distil.net}/https://docs.github.com/en/rest" \
-H "X-Distil-Key: $DISTIL_API_KEY"
# Force fresh fetch (bypass cache)
curl -s "${DISTIL_PROXY_URL:-https://proxy.distil.net}/nocache/https://news.ycombinator.com" \
-H "X-Distil-Key: $DISTIL_API_KEY"
If you prefer to call the proxy directly:
# Fetch a page
curl -s "https://proxy.distil.net/https://example.com" \
-H "X-Distil-Key: YOUR_API_KEY"
# Search the web
curl -s "https://proxy.distil.net/search?q=your+query" \
-H "X-Distil-Key: YOUR_API_KEY" \
-H "Accept: text/markdown"
Every reply request in Markdown will include how many raw tokens were saved by distil's markdown conversion, so you can see the efficiency benefits in real time. Distil's Markdown output is designed to be clean and concise, stripping away unnecessary HTML and boilerplate to give you just the content you need. This can save 60–80% of tokens compared to raw HTML, making it much more efficient for LLM consumption.
If you run out of tokens, distil will return the raw HTML content instead of Markdown, so you can still access the information even if you exceed your token limits. This way, you won't lose access to the content, but you'll be able to see how much more efficient the Markdown output is when you have tokens available. When this happens distil will inject a HTML comment within the web page you are accessing to let you know how to fix it.