Pallio AI

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

Questions and prior conversation context may be transmitted to Pallio when using the skill.

Why it was flagged

The skill sends the user's message and conversation history to Pallio's external chat endpoint, which is expected for the service but means chat content leaves the local environment.

Skill content
curl -s -X POST "https://pallioai.com/api/widget/chat" ... "message": "What topics do you cover?", "history": []
Recommendation

Avoid sending secrets or highly sensitive information unless you are comfortable with Pallio handling that content.

What this means

The active Pallio chat session depends on a temporary token that should not be exposed unnecessarily.

Why it was flagged

The skill uses a short-lived widget session token for subsequent requests. This is purpose-aligned and scoped to the chat session, but users should recognize it as session authorization material.

Skill content
`token` — Session token (valid for 2 hours). Store this for all subsequent messages.
Recommendation

Treat the session token as temporary private session data and do not paste it into unrelated tools or conversations.