用 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.