Skip to main content

groq-inference-skill

Facilitates fast LLM inference using Groq with an OpenAI-compatible client for AI agent logic and natural language processing.

Install this skill

or
48/100

Security score

The groq-inference-skill skill was audited on Feb 28, 2026 and we found 12 security issues across 3 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 127

Template literal with variable interpolation in command context

SourceSKILL.md
127const prompt = `Parse this user request and identify the task management intent.
medium line 168

Template literal with variable interpolation in command context

SourceSKILL.md
168const prompt = `Given these tasks:
medium line 216

Template literal with variable interpolation in command context

SourceSKILL.md
216const prompt = `Break down this task/project into actionable steps:
medium line 264

Template literal with variable interpolation in command context

SourceSKILL.md
264const prompt = `Prioritize these tasks by ID based on urgency and importance:
medium line 266

Template literal with variable interpolation in command context

SourceSKILL.md
266${tasks.map(t => `ID: ${t.id}, Title: ${t.title}${t.due_date ? `, Due: ${t.due_date}` : ''}`).join('\n')}
medium line 348

Template literal with variable interpolation in command context

SourceSKILL.md
348const prompt = `Extract task information from this user input:
medium line 387

Template literal with variable interpolation in command context

SourceSKILL.md
387`ID:${t.id} Title:${t.title} Desc:${t.description || 'none'} Status:${t.completed ? 'done' : 'pending'}`
medium line 390

Template literal with variable interpolation in command context

SourceSKILL.md
390const prompt = `Search for tasks matching this query: "${query}"
medium line 432

Template literal with variable interpolation in command context

SourceSKILL.md
432`${i + 1}. "${t.title}" - ${t.description || 'no description'}`
medium line 435

Template literal with variable interpolation in command context

SourceSKILL.md
435const prompt = `Analyze these ${tasks.length} tasks and provide:
low line 33

Access to .env file

SourceSKILL.md
33apiKey: process.env.GROQ_API_KEY,
low line 34

External URL reference

SourceSKILL.md
34baseURL: 'https://api.groq.com/openai/v1',
Scanned on Feb 28, 2026
View Security Dashboard