Polymarket Intelligence Skill

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill’s market-monitoring purpose is coherent, but it asks users to run persistent, credentialed Node jobs even though the reviewed package contains no code for those jobs.

Review this skill carefully before installing. Its goal is understandable, but the supplied package does not include the code it tells you to install and run. Only proceed if you can inspect the referenced Node files and dependencies, verify where Telegram tokens are used, and confirm how to stop the scheduled jobs.

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

A user could be guided to run code or dependencies that were not included in the reviewed skill package.

Why it was flagged

The reviewed package does not include the JavaScript files or package metadata that SKILL.md describes, so the actual code and dependencies users would run are outside the reviewed artifacts.

Skill content
No code files present — this is an instruction-only skill. ... 1 file(s): SKILL.md
Recommendation

Do not run the Node setup until the referenced source files, package.json, and lockfile are supplied, pinned, and reviewed.

ConcernHigh Confidence
ASI05: Unexpected Code Execution
What this means

Running these commands could execute unreviewed local code or dependency install scripts, especially if the user obtains files from an unknown source.

Why it was flagged

These are explicit local code-execution and package-installation instructions, but the runnable files are not present in the supplied artifacts.

Skill content
1. `cd` into the skill folder and run `npm install` ... 3. Run `node cron.js` to start scheduled jobs, or configure launchd to run on boot
Recommendation

Only run these commands in a trusted, reviewed checkout with pinned dependencies; avoid configuring boot persistence until the behavior is verified.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

The bot may continue posting alerts to configured Telegram channels until the scheduled runner is stopped.

Why it was flagged

The skill is designed for recurring autonomous monitoring and alerting. This is disclosed and purpose-aligned, but users should notice that it can keep operating on a schedule.

Skill content
Every 30 min — Real-time consensus alert when 3+ whales enter the same market ... Every 30 min — Real-time insider alert when fresh wallet drops >$50K on one market
Recommendation

Confirm the schedule, channel targets, logging, and shutdown process before enabling the cron or launchd runner.

What this means

If these tokens are exposed or mishandled, someone could post through the Telegram bots or disrupt the configured channels.

Why it was flagged

Telegram credentials are expected for sending Telegram alerts, but they grant the configured bot the ability to post to the associated chats.

Skill content
Create a `.env` file with your Telegram credentials: `PKEDGE_TELEGRAM_TOKEN_FREE` ... `PKEDGE_TELEGRAM_TOKEN_TRADER`
Recommendation

Use dedicated Telegram bots with limited channel access, keep tokens out of shared logs/files, and rotate them if there is any exposure.