Skip to main content

execution

Facilitates trading on prediction markets with features like slippage protection and order management for enhanced trading efficiency.

Install this skill

or
29/100

Security score

The execution skill was audited on Feb 19, 2026 and we found 19 security issues across 2 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 107

Template literal with variable interpolation in command context

SourceSKILL.md
107console.log(`Order placed: ${order.orderId}`);
medium line 108

Template literal with variable interpolation in command context

SourceSKILL.md
108console.log(`Status: ${order.status}`);
medium line 131

Template literal with variable interpolation in command context

SourceSKILL.md
131console.log(`Filled at: ${order.avgFillPrice}`);
medium line 132

Template literal with variable interpolation in command context

SourceSKILL.md
132console.log(`Filled size: ${order.filledSize}`);
medium line 183

Template literal with variable interpolation in command context

SourceSKILL.md
183console.log(`Rejected: slippage would be ${order.estimatedSlippage}%`);
medium line 185

Template literal with variable interpolation in command context

SourceSKILL.md
185console.log(`Executed with ${order.actualSlippage}% slippage`);
medium line 214

Template literal with variable interpolation in command context

SourceSKILL.md
214console.log(`${order.orderId}: ${order.side} ${order.size} @ ${order.price}`);
medium line 215

Template literal with variable interpolation in command context

SourceSKILL.md
215console.log(` Status: ${order.status}`);
medium line 216

Template literal with variable interpolation in command context

SourceSKILL.md
216console.log(` Filled: ${order.filledSize}/${order.size}`);
medium line 232

Template literal with variable interpolation in command context

SourceSKILL.md
232console.log(` Avg fill price: ${estimate.avgFillPrice}`);
medium line 233

Template literal with variable interpolation in command context

SourceSKILL.md
233console.log(` Expected slippage: ${estimate.slippagePct}%`);
medium line 234

Template literal with variable interpolation in command context

SourceSKILL.md
234console.log(` Total filled: ${estimate.totalFilled}`);
medium line 235

Template literal with variable interpolation in command context

SourceSKILL.md
235console.log(` Levels consumed: ${estimate.levelsConsumed}`);
low line 78

Access to .env file

SourceSKILL.md
78apiKey: process.env.POLY_API_KEY,
low line 79

Access to .env file

SourceSKILL.md
79apiSecret: process.env.POLY_API_SECRET,
low line 80

Access to .env file

SourceSKILL.md
80passphrase: process.env.POLY_API_PASSPHRASE,
low line 81

Access to .env file

SourceSKILL.md
81privateKey: process.env.PRIVATE_KEY,
low line 84

Access to .env file

SourceSKILL.md
84apiKey: process.env.KALSHI_API_KEY,
low line 85

Access to .env file

SourceSKILL.md
85privateKey: process.env.KALSHI_PRIVATE_KEY,
Scanned on Feb 19, 2026
View Security Dashboard