Skip to main content

hootsuite-prod-checklist

Facilitates Hootsuite deployment with a comprehensive checklist for production readiness and rollback procedures.

Install this skill

or
67/100

Security score

The hootsuite-prod-checklist skill was audited on May 27, 2026 and we found 13 security issues across 4 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 73

Template literal with variable interpolation in command context

SourceSKILL.md
73headers: { Authorization: `Bearer ${process.env.HOOTSUITE_API_KEY}` },
medium line 75

Template literal with variable interpolation in command context

SourceSKILL.md
75checks.push({ name: 'Hootsuite API', pass: res.ok, detail: res.ok ? 'Connected' : `HTTP ${res.status}` });
medium line 82

Template literal with variable interpolation in command context

SourceSKILL.md
82headers: { Authorization: `Bearer ${process.env.HOOTSUITE_API_KEY}` },
medium line 86

Template literal with variable interpolation in command context

SourceSKILL.md
86checks.push({ name: 'Social Profiles', pass: count > 0, detail: `${count} profiles connected` });
medium line 88

Template literal with variable interpolation in command context

SourceSKILL.md
88for (const c of checks) console.log(`[${c.pass ? 'PASS' : 'FAIL'}] ${c.name}: ${c.detail}`);
low line 72

Fetch to external URL

SourceSKILL.md
72const res = await fetch('https://platform.hootsuite.com/v1/me', {
low line 81

Fetch to external URL

SourceSKILL.md
81const res = await fetch('https://platform.hootsuite.com/v1/socialProfiles', {
low line 73

Access to .env file

SourceSKILL.md
73headers: { Authorization: `Bearer ${process.env.HOOTSUITE_API_KEY}` },
low line 78

Access to .env file

SourceSKILL.md
78checks.push({ name: 'API Key Set', pass: !!process.env.HOOTSUITE_API_KEY, detail: process.env.HOOTSUITE_API_KEY ? 'Present' : 'MISSING' });
low line 82

Access to .env file

SourceSKILL.md
82headers: { Authorization: `Bearer ${process.env.HOOTSUITE_API_KEY}` },
low line 40

External URL reference

SourceSKILL.md
40- [ ] Production base URL configured (`https://platform.hootsuite.com/v1`)
low line 72

External URL reference

SourceSKILL.md
72const res = await fetch('https://platform.hootsuite.com/v1/me', {
low line 81

External URL reference

SourceSKILL.md
81const res = await fetch('https://platform.hootsuite.com/v1/socialProfiles', {
Scanned on May 27, 2026
View Security Dashboard
Installation guide →