Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

DocStream

Document processing via DocStream API — text extraction, summarization, format conversion, PDF parsing. Use when user needs to extract text from documents, s...

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 191 · 0 current installs · 0 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name/description (document extraction, summarization, conversion) match the included instructions and script which call an external DocStream API. However the skill has no declared homepage or source, and registry metadata lists no required env vars even though the instructions and script require DOCSTREAM_API_KEY or DOCSTREAM_EMAIL (and honor DOCSTREAM_API_URL). The lack of publisher information/homepage lowers confidence but does not contradict the stated purpose.
Instruction Scope
SKILL.md and scripts instruct the agent to POST documents (or document URLs) to https://anton.vosscg.com/v1/documents/process and to create API keys via POST /v1/keys. Sending documents (potentially sensitive) to an external service is expected for this capability, but users should be explicitly warned: the skill will transmit document content and/or URLs to a third-party endpoint and the script prints new API keys to stderr (which could be captured in logs). Instructions do not attempt to read unrelated local files or other system credentials.
Install Mechanism
There is no install spec (instruction-only plus a small script). No packages are downloaded or written to disk by an installer; the included shell script runs curl to the declared API. This is the lower-risk installation model, but the script will perform network requests at runtime.
!
Credentials
The registry metadata declares no required environment variables, but SKILL.md and scripts require DOCSTREAM_API_KEY or DOCSTREAM_EMAIL (and optionally DOCSTREAM_API_URL). That mismatch is an incoherence in the manifest. In addition, the script echoes newly-created API keys to stderr, which can leak secrets into logs. The env vars requested are relevant to the stated purpose (API access), but they should be declared and the key-handling should avoid printing secrets.
Persistence & Privilege
Skill is not always-enabled and does not request elevated platform privileges. It does not modify other skills or system-wide config. Autonomous invocation is allowed (platform default) but is not combined with other high-risk factors here.
What to consider before installing
This skill appears to be a simple client for a third‑party DocStream API — it will transmit document contents/URLs to anton.vosscg.com and requires an API key (DOCSTREAM_API_KEY) or an email (DOCSTREAM_EMAIL) to auto-create one. Before installing: 1) Confirm the service owner/website and review its privacy/security policy; 2) Do not send sensitive documents unless you trust the endpoint; 3) Be aware the included script prints created API keys to stderr (logs could capture secrets) — avoid exposing keys in shared log environments; 4) Ask the publisher to update the skill metadata to declare the required env vars (DOCSTREAM_API_KEY, DOCSTREAM_EMAIL, optionally DOCSTREAM_API_URL) and to stop printing secrets; and 5) Test in an isolated environment and monitor network traffic if you need assurance about where data is sent.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk970ygmhwzktv0yncn50t1c8dh827h8k

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

DocStream

AI document processing API by Voss Consulting Group.

Setup

Set DOCSTREAM_API_KEY or DOCSTREAM_EMAIL for auto-signup (free, no credit card).

curl -X POST https://anton.vosscg.com/v1/keys -H 'Content-Type: application/json' -d '{"email":"you@example.com"}'

Usage

curl -X POST https://anton.vosscg.com/v1/documents/process \
  -H "Authorization: Bearer $DOCSTREAM_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com/doc.pdf", "action": "extract"}'

Capabilities

  • extract — Extract text from documents (PDF, DOCX, etc.)
  • summarize — AI-powered document summarization
  • convert — Format conversion between document types

API Reference

  • POST /v1/documents/process — Process document (requires API key)
  • POST /v1/keys — Get API key (email-only for free tier)
  • GET /v1/health — Health check
  • GET /v1/openapi.json — Full OpenAPI spec

Files

2 total
Select a file
Select a file to preview.

Comments

Loading comments…