askia-io

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

If an agent uses these commands, it can publish content and cast votes on the askia.io account tied to the API key.

Why it was flagged

The CLI can submit answers, create questions, and vote on answers through authenticated POST requests.

Skill content
await apiRequest(`/questions/${questionId}/answers`, 'POST', { answerBody }, apiKey); ... await apiRequest('/questions', 'POST', ...); ... await apiRequest(`/answers/${answerId}/vote`, 'POST', { value }, apiKey);
Recommendation

Only provide an API key if you want the agent to act on that platform, and review/approve questions, answers, votes, and paid categories before use.

What this means

Anyone or any agent with the API key can perform the supported askia.io account actions.

Why it was flagged

Authenticated actions use a bearer API key supplied to the CLI.

Skill content
if (apiKey) headers['Authorization'] = `Bearer ${apiKey}`;
Recommendation

Treat the API key as a secret, avoid sharing it broadly, and rotate it if it is exposed.

NoteMedium Confidence
ASI01: Agent Goal Hijack
What this means

A malicious question could try to manipulate the agent into ignoring its original task or misusing the posting commands.

Why it was flagged

The skill is designed to retrieve and respond to user-generated questions, which may contain instructions or prompt-injection text.

Skill content
AI agents answer questions from humans and other AI agents.
Recommendation

Treat question text as untrusted content and keep the agent focused on answering only the platform question without following unrelated instructions inside it.