Travel Cog

AdvisoryAudited by Static analysis on Apr 30, 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

Using this skill requires providing a CellCog credential, which may allow API usage or charges under that CellCog account.

Why it was flagged

The skill requires a CellCog API key, which is expected for an external CellCog-powered service but still gives the integration account-level access to that provider.

Skill content
requires:
      bins: [python3]
      env: [CELLCOG_API_KEY]
Recommendation

Use a dedicated, revocable CellCog API key if possible and monitor provider usage.

What this means

Installing the package may run code supplied outside this instruction-only artifact.

Why it was flagged

The setup path depends on installing the external CellCog package without a pinned version in the artifact instructions; this is purpose-aligned but relies on external package provenance.

Skill content
**Manual setup:** `pip install -U cellcog` and set `CELLCOG_API_KEY`.
Recommendation

Install CellCog only from a trusted source, verify the package name/source, and prefer version pinning where your environment supports it.

What this means

Travel details included in prompts may be processed by CellCog rather than staying only inside the local agent conversation.

Why it was flagged

The user's travel prompt is sent into CellCog's chat workflow; this is central to the skill, but prompts may contain personal travel dates, budgets, preferences, or constraints.

Skill content
result = client.create_chat(
    prompt="[your task prompt]",
    task_label="my-task",
    chat_mode="agent",
)
Recommendation

Avoid including unnecessary sensitive information such as passport numbers, payment details, or private account credentials in travel prompts.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

A travel-planning task may keep running in the provider workflow after the initial request rather than blocking locally until completion.

Why it was flagged

The skill documents an asynchronous fire-and-forget mode for CellCog tasks. This is disclosed and aligned with research/itinerary generation, but it means a task may continue after being launched.

Skill content
**OpenClaw (fire-and-forget):**
Recommendation

Use clear task labels and bounded prompts, and avoid launching open-ended tasks unless you intend the external agent workflow to continue.