Wallapop Cli

v0.1.0

Use the wallapop CLI to search listings, fetch item details, view user profiles, and list categories. Apply when a user asks for Wallapop marketplace data or when you need CLI commands and flags for wallapop-cli usage.

1· 1.7k·0 current·0 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name and description describe a CLI helper for Wallapop and the SKILL.md provides precise commands and flags that align with that purpose. However, the metadata claims no required binaries or env vars while the SKILL.md explicitly says it requires wallapop-cli (Node.js 18+) and references env vars (WALLAPOP_LAT, WALLAPOP_LNG, WALLAPOP_ACCESS_TOKEN). The missing declared dependency is an inconsistency.
Instruction Scope
Runtime instructions are narrowly scoped to invoking wallapop-cli commands and handling output/JSON. They reference network access to api.wallapop.com and optional auth token for some endpoints, which is consistent with the stated functionality. The instructions do not direct the agent to read unrelated files or exfiltrate data beyond calls to the Wallapop API.
Install Mechanism
This is an instruction-only skill with no install spec or code files, so nothing will be written or executed by the skill itself. That lowers installation risk. Note: SKILL.md expects the user to install wallapop-cli (Node.js 18+) separately; no install instructions or provenance are provided.
!
Credentials
The SKILL.md references optional env vars (WALLAPOP_LAT, WALLAPOP_LNG, WALLAPOP_ACCESS_TOKEN) which are reasonable for a CLI that calls the Wallapop API. However, the skill metadata lists no required env vars or primary credential — the omission makes it unclear whether the token is required and how it should be provisioned. The need for an access token is expected for non-search endpoints, but you should verify what scopes that token grants and where it will be stored or used.
Persistence & Privilege
The skill does not request persistent presence (always:false) and does not declare any capability to modify other skills or system-wide configuration. Autonomous invocation is allowed (default) but is not combined with other elevated privileges.
What to consider before installing
This skill appears to be a straightforward CLI usage guide for wallapop-cli, but the SKILL.md and the skill metadata disagree: the instructions require wallapop-cli (Node.js 18+) and mention env vars (including an access token), while the metadata lists no binaries or env requirements. Before installing or running anything: (1) confirm the official source for wallapop-cli (npm or project repo) and install it from a trusted upstream; (2) ask the publisher to update the skill metadata to declare required binaries and env vars; (3) only provide a WALLAPOP_ACCESS_TOKEN if you trust the CLI source—inspect what scopes that token grants and avoid pasting high-privilege tokens into unknown tools; (4) if you plan to run the CLI, prefer using --json and script-safe checks for exit codes; (5) because the skill source/homepage is unknown, exercise caution and review the actual wallapop-cli package code before granting network credentials or tokens.

Like a lobster shell, security has layers — review code before you run it.

latestvk9724btjhhzdcb9wyfe0rav13d7zx8wz
1.7kdownloads
1stars
1versions
Updated 1mo ago
v0.1.0
MIT-0

Purpose

Provide concise, correct commands for using wallapop-cli.

When to use

  • User asks how to search Wallapop listings from the terminal.
  • User needs CLI flags for filtering search (price, location, category, limit).
  • User needs item or user lookup commands.
  • User needs JSON output for scripting.

Commands

Search listings

wallapop search "<query>" [--lat <lat>] [--lng <lng>] [--min-price <n>] [--max-price <n>] [--category <id>] [--limit <n>]

Notes:

  • Defaults to configured location if --lat/--lng omitted.
  • --limit trims results locally.

Item details

wallapop item <item_id>

User profile

wallapop user <user_id>

Categories

wallapop categories

JSON output (all commands)

Add the global flag --json:

wallapop --json search "laptop"
wallapop --json item abc123

Configuration

  • Location defaults can be set via env vars:
    • WALLAPOP_LAT
    • WALLAPOP_LNG
  • Optional auth token for non-search endpoints:
    • WALLAPOP_ACCESS_TOKEN

Output expectations

  • Search: table or JSON array of results with id, title, price, distance, and user.
  • Item: table or JSON with title, description, taxonomy, user, images.
  • User: table or JSON with profile fields.
  • Categories: table or JSON list of category ids and names.

Examples (safe placeholders)

wallapop search "camera" --min-price 50 --max-price 200
wallapop search "chair" --lat 40.0 --lng -3.0 --limit 5
wallapop item abc123
wallapop user user123
wallapop --json categories

Error handling

  • Non-zero exit code on failure.
  • For scripted use, prefer --json and handle errors by checking exit code.

Comments

Loading comments...