Skip to main content

intercom-cost-tuning

Optimizes Intercom API costs by reducing requests and implementing caching strategies for efficient usage monitoring.

Install this skill

or
49/100

Security score

The intercom-cost-tuning skill was audited on May 27, 2026 and we found 15 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 66

Template literal with variable interpolation in command context

SourceSKILL.md
66`${endpoint}: ${stats.count} calls, avg ${(stats.totalMs / stats.count).toFixed(0)}ms`
medium line 71

Template literal with variable interpolation in command context

SourceSKILL.md
71console.log(`\nTotal: ${total} API calls`);
medium line 72

Template literal with variable interpolation in command context

SourceSKILL.md
72console.log(`Estimated rate: ${(total / 60).toFixed(0)} req/min (limit: 10,000)`);
medium line 196

Template literal with variable interpolation in command context

SourceSKILL.md
196`[Intercom] High request rate: ${this.requestsThisMinute}/10000 per minute`
medium line 203

Template literal with variable interpolation in command context

SourceSKILL.md
203console.warn(`[Intercom] Throttling: waiting ${waitMs}ms`);
medium line 30

Webhook reference - potential data exfiltration

SourceSKILL.md
30Reduce Intercom API costs through smart caching, search optimization, webhook-driven architecture, and usage monitoring. Intercom pricing is primarily seat-based and feature-based, but API efficiency
medium line 77

Webhook reference - potential data exfiltration

SourceSKILL.md
77### Step 2: Replace Polling with Webhooks
low line 87

Webhook reference - potential data exfiltration

SourceSKILL.md
87// GOOD: Webhook-driven (0 requests, instant notification)
low line 88

Webhook reference - potential data exfiltration

SourceSKILL.md
88app.post("/webhooks/intercom", (req, res) => {
low line 124

Webhook reference - potential data exfiltration

SourceSKILL.md
124// Invalidate cache via webhooks
medium line 212

Webhook reference - potential data exfiltration

SourceSKILL.md
212- [ ] Replace polling loops with webhooks
medium line 225

Webhook reference - potential data exfiltration

SourceSKILL.md
225| Stale cached data | TTL too long | Use webhook cache invalidation |
low line 231

External URL reference

SourceSKILL.md
231- [Intercom Pricing](https://www.intercom.com/pricing)
low line 232

External URL reference

SourceSKILL.md
232- [Rate Limiting](https://developers.intercom.com/docs/references/rest-api/errors/rate-limiting)
low line 233

External URL reference

SourceSKILL.md
233- [Search Contacts](https://developers.intercom.com/docs/references/rest-api/api.intercom.io/contacts/searchcontacts)
Scanned on May 27, 2026
View Security Dashboard
Installation guide →