Skywork Document

ReviewAudited by ClawScan on May 1, 2026.

Overview

This skill coherently generates documents through Skywork’s remote API, but it sends prompts, optional files, and an API key to that service.

Before installing, make sure you trust Skywork with the prompts and documents you plan to use. Configure the API key securely, avoid sending confidential files unless permitted, and check that any reference files or gathered material are intentionally included.

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.

What this means

Your document prompt and any reference files may leave your machine and be processed by Skywork.

Why it was flagged

The skill clearly discloses that prompts and selected files are transmitted to an external provider for remote processing.

Skill content
This skill uploads user-provided files and sends the full, verbatim user request to the Skywork service.
Recommendation

Use this skill only for content you are comfortable sending to Skywork, and avoid confidential files unless you trust the provider’s data handling.

What this means

Anyone with access to the configured API key may be able to use the associated Skywork account or quota.

Why it was flagged

The script uses the SKYWORK_API_KEY as a bearer credential for Skywork API calls, which is expected but grants access to the user’s Skywork account or quota.

Skill content
headers["Authorization"] = f"Bearer {api_key}"
Recommendation

Store the API key securely, avoid sharing logs or config files that contain it, and revoke or rotate the key if it may have been exposed.

What this means

Information gathered earlier in the conversation could be bundled into document inputs and sent to Skywork.

Why it was flagged

The workflow can chain prior tool outputs into files that are then uploaded for document generation; this is useful for the purpose but should remain user-intended and scoped.

Skill content
If you gathered info beforehand (e.g., web search, other tools) that would help the writing task, save it to disk as files and pass them as reference files in Step 1.
Recommendation

Confirm that any gathered material is relevant and non-sensitive before including it as reference input.