hootsuite-prod-checklist
Facilitates Hootsuite deployment with a comprehensive checklist for production readiness and rollback procedures.
Install this skill
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
Template literal with variable interpolation in command context
| 73 | headers: { Authorization: `Bearer ${process.env.HOOTSUITE_API_KEY}` }, |
Template literal with variable interpolation in command context
| 75 | checks.push({ name: 'Hootsuite API', pass: res.ok, detail: res.ok ? 'Connected' : `HTTP ${res.status}` }); |
Template literal with variable interpolation in command context
| 82 | headers: { Authorization: `Bearer ${process.env.HOOTSUITE_API_KEY}` }, |
Template literal with variable interpolation in command context
| 86 | checks.push({ name: 'Social Profiles', pass: count > 0, detail: `${count} profiles connected` }); |
Template literal with variable interpolation in command context
| 88 | for (const c of checks) console.log(`[${c.pass ? 'PASS' : 'FAIL'}] ${c.name}: ${c.detail}`); |
Fetch to external URL
| 72 | const res = await fetch('https://platform.hootsuite.com/v1/me', { |
Fetch to external URL
| 81 | const res = await fetch('https://platform.hootsuite.com/v1/socialProfiles', { |
Access to .env file
| 73 | headers: { Authorization: `Bearer ${process.env.HOOTSUITE_API_KEY}` }, |
Access to .env file
| 78 | checks.push({ name: 'API Key Set', pass: !!process.env.HOOTSUITE_API_KEY, detail: process.env.HOOTSUITE_API_KEY ? 'Present' : 'MISSING' }); |
Access to .env file
| 82 | headers: { Authorization: `Bearer ${process.env.HOOTSUITE_API_KEY}` }, |
External URL reference
| 40 | - [ ] Production base URL configured (`https://platform.hootsuite.com/v1`) |
External URL reference
| 72 | const res = await fetch('https://platform.hootsuite.com/v1/me', { |
External URL reference
| 81 | const res = await fetch('https://platform.hootsuite.com/v1/socialProfiles', { |