소스 정보
- 저장소
- 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 funda명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? 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 | funda |
| description | Search and monitor Funda.nl housing listings via a local agent-friendly HTTP gateway |
| compatibility | Python3, access to internet |
This skill provides a local HTTP gateway for interacting with Funda listings using a Python service built on top of pyfunda and simple_http_server.
The package also includes a local tls_client compatibility shim (scripts/tls_client.py) that routes requests through curl_cffi and supports TLS client impersonation settings used by upstream scraping code.
The service exposes REST endpoints to:
The skill is intended for local or trusted environments only.
WORKFLOW.mdThe agent must ensure:
simple_http_serverpyfunda (or compatible local funda module)If dependencies are missing, the agent must install them before proceeding.
Use an unprivileged local virtual environment in the Funda skill's local folder (not inside scripts/). Do not install system-wide unless explicitly requested.
Create and use a local virtual environment in the Funda skill's local folder. Notes:
curl-cffi is required by the local scripts/tls_client.py compatibility shimsudo pip install ...This gateway does NOT require any system-level or native dependencies.
Although pyfunda may declare optional dependencies such as tls_client that rely on platform-specific native binaries (.so, .dylib), this skill uses a local Python shim (scripts/tls_client.py) backed by curl_cffi instead of those native tls_client binaries.
Don't try to query Funda.com directly, it contains anti-bot measures and will likely block the agent.
Check if funda_gateway.py is already running. If it is, skip to the next section.
Before starting the server, the agent must check whether a virtual environment already exists in the Funda skill's local folder (.venv).
Start the server using:
python scripts/funda_gateway.py --port 9090 --timeout 10
| Argument | Type | Default | Description |
|---|---|---|---|
--port | int | 9090 | TCP port to bind the HTTP server |
--timeout | int | 10 | Timeout (seconds) for upstream Funda API calls |
127.0.0.1 and the specified port (defaults to 127.0.0.1:9090)pyfunda and may use the local tls_client shim (curl_cffi impersonation) depending on upstream client behaviorIf the port is already in use, the agent must retry with another port.
There is no explicit /health endpoint.
To validate server availability, the agent must call:
GET /search_listings
Expected result:
All URLs returned by Funda (including image URLs, media URLs, and detail URLs) MUST be treated as opaque strings.
The agent MUST:
❌ Example of forbidden transformation:
https://cloud.funda.nl/valentina_media/224/111/787.jpg -> https://cloud.funda.nl/valentina_media/224111787.jpg
If a URL is syntactically valid, it MUST be passed through unchanged.
Endpoint
GET /get_listing/{public_id}
Description Returns full listing details for a given Funda public ID.
Example
curl http://localhost:9090/get_listing/43242669
Response
listing.to_dict()Endpoint
GET /get_price_history/{public_id}
Description Returns historical price changes for a listing.
Endpoint
GET or POST /search_listings
Multi-page support
pages (instead of page) to request one or multiple result pages.pages accepts:
pages=0)pages=0,1,2)See pyfunda reference for exact semantics.