Travel Planner

AdvisoryAudited by Static analysis on May 13, 2026.

Overview

No suspicious patterns detected.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Running the skill requires exposing a Camino API key in the agent environment, and calls may consume the user's Camino quota or account allowance.

Why it was flagged

The script sends the Camino API key to the Camino journey endpoint. This is disclosed and necessary for the stated integration, but it is still account credential usage.

Skill content
-H "X-API-Key: $CAMINO_API_KEY"
Recommendation

Use a dedicated Camino API key if possible, avoid sharing logs or settings that contain it, and rotate the key if it may have been exposed.

What this means

Locations, route preferences, and trip purposes entered into the skill leave the local machine and are sent to Camino.

Why it was flagged

The user-provided itinerary JSON is posted to Camino's external API. This is purpose-aligned, but waypoint coordinates and stop purposes can be sensitive location or travel-planning data.

Skill content
-d "$INPUT" \
    "https://api.getcamino.ai/journey"
Recommendation

Only include locations and plans you are comfortable sending to Camino, and avoid sensitive home, workplace, or private-trip details unless you trust the provider's data handling.

What this means

Following the broad companion-skill install command may install additional skills with their own capabilities and credentials.

Why it was flagged

The documentation includes a user-directed install command from a GitHub repository and also suggests installing all available Camino skills. No automatic execution is shown, but installing a whole repo can add more skills than this one.

Skill content
npx skills add https://github.com/barneyjm/camino-skills
Recommendation

Prefer installing only camino-travel-planner unless you have reviewed and want the full Camino skill suite.

What this means

Invoking the skill performs an external API call and may consume API quota, but the artifacts do not show hidden commands or unrelated system actions.

Why it was flagged

The skill uses a local shell script with curl and jq to make the Camino API request. This is central to the stated purpose, and the provided script quotes the input and validates JSON before sending it.

Skill content
curl -s -X POST
Recommendation

Review the JSON before running the script and keep normal command-execution approvals enabled for agent-initiated use.