DocStream
Analysis
DocStream appears to be a coherent document-processing API skill, but users should know it sends document-processing requests to an external service and handles a DocStream API key or signup email.
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 whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
API_KEY="${DOCSTREAM_API_KEY:-}" ... EMAIL="${DOCSTREAM_EMAIL:-}" ... echo "✅ Free key: $API_KEY" >&2The helper uses a DocStream API key or signup email and prints a newly created API key to stderr. This credential handling is expected for the API integration, but the key should not be exposed in shared logs or transcripts.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
API_BASE="${DOCSTREAM_API_URL:-https://anton.vosscg.com}" ... process) curl -sf -X POST "$API_BASE/v1/documents/process" ... -d "$1"The helper sends user-provided document-processing JSON to an external API endpoint. This is aligned with the skill's document-processing purpose, but document URLs or content may leave the user's environment.
