expert-writing-asmcp

WarnAudited by ClawScan on May 11, 2026.

Overview

The skill’s AnyShare writing workflow is mostly purpose-aligned, but it asks for cloud account access and contains unsafe instructions that can proceed without confirmation and may embed template text into generated code.

Review this skill carefully before installing. It is designed for AnyShare document writing, but you should remove or avoid the 5-minute auto-proceed behavior, ensure any generated scripts safely handle template text, and only provide an AnyShare token and documents you are comfortable using with this cloud workflow.

Findings (4)

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

The agent could generate and save a full document in the user’s AnyShare account based on an outline the user did not explicitly approve.

Why it was flagged

The skill allows正文 generation to proceed automatically after no user response, despite the workflow otherwise requiring explicit outline confirmation before calling the writing tool.

Skill content
| **5分钟无响应** | **自动进入写正文环节**(不再等待) |
Recommendation

Require an affirmative user confirmation before正文 generation; if the user does not respond, leave the task pending instead of proceeding automatically.

What this means

A malicious or malformed template could cause commands to run on the user’s machine when the generated script is executed.

Why it was flagged

The static scan reports direct insertion of template content into generated source code. If that content is user- or provider-controlled and not escaped, it can break out of the string and run unintended Python code.

Skill content
template_content = """${TEMPLATE_CONTENT}"""
Recommendation

Do not generate executable source with raw template text. Pass template content as JSON, read it from a data file, or use safe escaping/serialization such as `json.dumps`.

What this means

Installing and using the skill gives the workflow access to the user’s AnyShare account according to the token’s permissions.

Why it was flagged

The skill requires an AnyShare access token configured in the MCP server to access document libraries and run writing APIs.

Skill content
"Authorization": "Bearer <your_token_here>"
Recommendation

Use a least-privilege token if available, store it only in the intended config file, rotate/revoke it when no longer needed, and confirm which AnyShare libraries the token can access.

What this means

Sensitive project files may be uploaded to AnyShare and processed by the provider as part of the intended workflow.

Why it was flagged

The skill routes document-writing operations through the AnyShare ASMCP service, meaning selected project files and generated outputs are handled by that external MCP/provider endpoint.

Skill content
"url": "https://anyshare.aishu.cn/asmcp/"
Recommendation

Only use this skill with documents you are allowed to upload to AnyShare, and verify the target document library and sharing settings before running it.