WPS Web Builder

PassAudited by ClawScan on May 10, 2026.

Overview

The visible artifacts describe a normal web-project builder, but it will write project files, install/run dependencies, store a plan file, and start a local development server.

This appears suitable for building web projects if you run it in the correct folder. Before installing generated dependencies or leaving the preview server running, review the generated files and stop any background server when you are done.

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

Generated web projects may run npm, pip, or npx commands on the local machine.

Why it was flagged

The workflow directs the agent to install dependencies, run builds, and start a server. This is expected for a web-builder skill, but it means local commands and dependency scripts may execute.

Skill content
全部代码写完后,统一安装依赖并验证项目能否正常运行... 执行构建... 启动开发服务器
Recommendation

Use it in a trusted project directory, review generated package files before installation, and rely on normal command-approval prompts where available.

What this means

Installing the generated project may fetch and run third-party package code.

Why it was flagged

The skill generates projects that depend on external JavaScript or Python packages. This is purpose-aligned, but the visible artifacts do not provide pinned dependency locks.

Skill content
技术栈:Next.js 15 (App Router) + Tailwind + shadcn/ui + Prisma ... 安装依赖 ... Python 后端用 pip install
Recommendation

Review dependencies, prefer lockfiles or pinned versions for real projects, and avoid installing generated dependencies in sensitive environments without review.

What this means

Project details may remain on disk and may shape later work if the skill is invoked again in the same directory.

Why it was flagged

The skill stores and later reuses project requirements and progress from a local plan file. This is useful persistence, but stale or externally edited plan content can influence future runs.

Skill content
查找:当前工作目录下的 .web-builder/plan.md ... 文件已存在:读取内容,告诉用户上次做到哪了,从当前阶段继续。
Recommendation

Review or delete .web-builder/plan.md when switching projects, and treat plan files from untrusted repositories as untrusted input.

What this means

A preview server may keep running after the build task and could be reachable from the local machine or network depending on how it is started.

Why it was flagged

The delivery checklist expects a development server to remain running in the background and to provide access links. This is normal for previewing a web app, but it is a persistent local process.

Skill content
- [ ] 开发服务器保持后台运行
- [ ] 本地访问链接已输出(Markdown 超链接格式)
- [ ] 局域网访问链接已输出(Markdown 超链接格式)
Recommendation

Stop the development server when finished, and avoid serving sensitive data from preview apps unless you understand the network exposure.