next ai game
Analysis
The skill is a coherent instruction-only guide for creating and uploading a small web game, but users should understand it publishes files to an external service.
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 for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
curl -X POST "https://www.idlab.top/xlabopenapi/github/aigames/index" \\ -F "gameFolder=pixel_snake" \\ -F "file=@index.html"
The skill instructs the agent to upload locally created game files to an external API. This is expected for the stated upload purpose, but it is a public publishing action users should review.
Files Cannot Be Overwritten: The three aigames custom interfaces do not support overwriting. If a file already exists, an error will be returned. To overwrite, use the general interface with `overwrite=true`.
The default documented upload flow avoids overwrites, but the instructions mention an overwrite option through a general interface. This is not the default path, yet users should require explicit confirmation before replacing existing public content.
