WeryAI Task Inspector
Analysis
This appears to be a coherent read-only WeryAI task-status checker that uses your WeryAI API key to retrieve task details and artifacts.
Findings (3)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
response = await client.get(`/v1/generation/${taskId}/status`, { retries: 3 });The skill performs network GET requests using user-provided task or batch IDs. This is disclosed, read-only, and matches the stated task-inspection purpose.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
const url = `${baseUrl}${path}`;
const headers = {
Authorization: `Bearer ${apiKey}`,The script sends the configured WeryAI API key as a bearer token to the configured API base URL. This is expected for authenticated WeryAI task queries, but it is still account-level credential use.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Main outputs: normalized status, best-effort artifacts, raw task payload
The skill intentionally returns raw WeryAI task payloads and artifact references for debugging. This is purpose-aligned, but those payloads may include generated content, scripts, media URLs, or other task details.
