sqlite-agent-context
Enables agents to detect their capabilities and manage context intelligently for optimized responses across various platforms.
Install this skill
Security score
The sqlite-agent-context skill was audited on Feb 28, 2026 and we found 9 security issues across 1 threat category. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 105 | console.log(`Max tokens: ${caps.maxTokens}`); // 200000 |
Template literal with variable interpolation in command context
| 106 | console.log(`Tool use: ${caps.toolUseSupport}`); // true |
Template literal with variable interpolation in command context
| 107 | console.log(`Vision: ${caps.visionSupport}`); // true |
Template literal with variable interpolation in command context
| 165 | console.log(`Used: ${budget.totalTokens} / ${budget.maxTokens}`); |
Template literal with variable interpolation in command context
| 168 | console.log(`Remaining: ${budget.remainingTokens} tokens`); |
Template literal with variable interpolation in command context
| 171 | console.log(`Budget used: ${budget.percentageUsed}%`); |
Template literal with variable interpolation in command context
| 332 | console.log(`Context usage: ${budget.percentageUsed.toFixed(1)}%`); |
Template literal with variable interpolation in command context
| 339 | { role: 'system', content: `Previous context: ${summary}` }, |
Template literal with variable interpolation in command context
| 366 | console.log(`Max context: ${caps.maxTokens} tokens`); |