Skip to main content

apollo-local-dev-loop

Facilitates local development setup for Apollo.io, enabling efficient API testing and team collaboration.

Install this skill

or
53/100

Security score

The apollo-local-dev-loop skill was audited on Feb 25, 2026 and we found 19 security issues across 4 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 59

Template literal with variable interpolation in command context

SourceSKILL.md
59console.log(`[Apollo] ${config.method?.toUpperCase()} ${config.url}`);
medium line 65

Template literal with variable interpolation in command context

SourceSKILL.md
65console.log(`[Apollo] Response: ${response.status}`);
medium line 69

Template literal with variable interpolation in command context

SourceSKILL.md
69console.error(`[Apollo] Error: ${error.response?.status}`, error.message);
medium line 162

Curl to non-GitHub URL

SourceSKILL.md
162curl -X POST http://localhost:3000/api/apollo/search \
low line 30

Access to .env file

SourceSKILL.md
30touch .env .env.example .env.test
low line 33

Access to .env file

SourceSKILL.md
33echo '.env' >> .gitignore
low line 34

Access to .env file

SourceSKILL.md
34echo '.env.local' >> .gitignore
low line 38

Access to .env file

SourceSKILL.md
38# .env.example (commit this)
low line 49

Access to .env file

SourceSKILL.md
49const isDev = process.env.NODE_ENV !== 'production';
low line 53

Access to .env file

SourceSKILL.md
53params: { api_key: process.env.APOLLO_API_KEY },
medium line 140

Access to .env file

SourceSKILL.md
140- Environment file structure (.env, .env.example)
medium line 149

Access to .env file

SourceSKILL.md
149| Missing API Key | .env not loaded | Run `source .env` or use dotenv |
medium line 152

Access to .env file

SourceSKILL.md
152| Stale Credentials | Key rotated | Update .env with new key |
low line 52

External URL reference

SourceSKILL.md
52baseURL: 'https://api.apollo.io/v1',
low line 82

External URL reference

SourceSKILL.md
82rest.post('https://api.apollo.io/v1/people/search', (req, res, ctx) => {
low line 93

External URL reference

SourceSKILL.md
93rest.get('https://api.apollo.io/v1/organizations/enrich', (req, res, ctx) => {
low line 162

External URL reference

SourceSKILL.md
162curl -X POST http://localhost:3000/api/apollo/search \
low line 190

External URL reference

SourceSKILL.md
190- [MSW (Mock Service Worker)](https://mswjs.io/)
low line 191

External URL reference

SourceSKILL.md
191- [Vitest Testing Framework](https://vitest.dev/)
Scanned on Feb 25, 2026
View Security Dashboard