Skip to main content

scale

Recommends sharding, caching strategies, and read-replication patterns for optimizing Cloudflare architectures under high traffic.

Install this skill

or
62/100

Security score

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

Categories Tested

Security Issues

medium line 68

Template literal with variable interpolation in command context

SourceSKILL.md
68const key = `data:${id}:v${version}`;
medium line 74

Template literal with variable interpolation in command context

SourceSKILL.md
74await kv.put(`user:${userId}:profile`, data);
medium line 75

Template literal with variable interpolation in command context

SourceSKILL.md
75await kv.put(`user:${userId}:settings`, settings);
medium line 78

Template literal with variable interpolation in command context

SourceSKILL.md
78const keys = await kv.list({ prefix: `user:${userId}:` });
medium line 128

Template literal with variable interpolation in command context

SourceSKILL.md
128const shardKey = `${key}:shard:${shard}`;
medium line 137

Template literal with variable interpolation in command context

SourceSKILL.md
137const value = await kv.get(`${key}:shard:${i}`);
medium line 166

Template literal with variable interpolation in command context

SourceSKILL.md
166return `events_${year}_${month}`;
low line 101

Access to .env file

SourceSKILL.md
101const product = await getProduct(c.env.DB, c.req.param('id'));
low line 374

Access to .env file

SourceSKILL.md
374const object = await c.env.R2.get(c.req.param('key'));
low line 397

Access to .env file

SourceSKILL.md
397const object = await this.env.R2.get(r2Key, {
Scanned on Feb 19, 2026
View Security Dashboard
Installation guide →