# Send Idealista to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "idealista",
    "name": "Idealista",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/quifago/idealista",
    "canonicalUrl": "https://clawhub.ai/quifago/idealista",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/idealista",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=idealista",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "idealista",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T07:58:44.312Z",
      "expiresAt": "2026-05-11T07:58:44.312Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=idealista",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=idealista",
        "contentDisposition": "attachment; filename=\"idealista-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "idealista"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/idealista"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/idealista",
    "downloadUrl": "https://openagent3.xyz/downloads/idealista",
    "agentUrl": "https://openagent3.xyz/skills/idealista/agent",
    "manifestUrl": "https://openagent3.xyz/skills/idealista/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/idealista/agent.md"
  }
}
```
## Documentation

### idealista

This skill documents how to query the Idealista API using the local idealista-cli.

### Local project location

CLI source (example): ~/idealista-cli

### Credentials (client_id / client_secret)

Idealista uses OAuth2 Client Credentials.

Use environment variables (recommended):

IDEALISTA_API_KEY = client_id
IDEALISTA_API_SECRET = client_secret

Example:

export IDEALISTA_API_KEY="<CLIENT_ID>"
export IDEALISTA_API_SECRET="<CLIENT_SECRET>"

Or persist them via the CLI:

python3 -m idealista_cli config set \\
  --api-key "<CLIENT_ID>" \\
  --api-secret "<CLIENT_SECRET>"

Config file path:

~/.config/idealista-cli/config.json

Token cache:

~/.cache/idealista-cli/token.json

### Common commands

Get a token:

python3 -m idealista_cli token
python3 -m idealista_cli token --refresh

Search listings:

python3 -m idealista_cli search \\
  --center "39.594,-0.458" \\
  --distance 5000 \\
  --operation sale \\
  --property-type homes \\
  --all-pages \\
  --format summary

Compute stats:

python3 -m idealista_cli avg \\
  --center "39.594,-0.458" \\
  --distance 5000 \\
  --operation sale \\
  --property-type homes \\
  --group-by propertyType

### Example queries (natural language)

Use these as “prompt” examples for an agent that calls the CLI:

"Find a flat in A Coruña under 200.000€"
"Tell me the average price of a house around here: 39°34'33.5"N 0°30'10.0"W"
"Búscame un apartamento de 3 habs en Tapia de Casariego para comprar"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: quifago
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T07:58:44.312Z
- Expires at: 2026-05-11T07:58:44.312Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/idealista)
- [Send to Agent page](https://openagent3.xyz/skills/idealista/agent)
- [JSON manifest](https://openagent3.xyz/skills/idealista/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/idealista/agent.md)
- [Download page](https://openagent3.xyz/downloads/idealista)