UA1 Validator Agent
Analysis
The skill is a straightforward PDF accessibility validator that uploads the chosen PDF to the disclosed UA1 API, with minor setup and data-sharing points users should notice.
Findings (2)
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.
#!/usr/bin/env bash ... curl -sS ... VERDICT="$(jq -r '.verdict // empty' "$TMP_BODY"
The script depends on local command-line tools such as bash, curl, and jq, while the registry requirements declare no required binaries. This is a setup/metadata gap rather than suspicious behavior.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
curl -sS ... -X POST "$URL" ... -F "file=@${FILE_PATH}"The script sends the selected local file as multipart form data to the configured UA1 API endpoint. This is disclosed and purpose-aligned, but it means PDF contents leave the local environment.
