dag-pattern-learner
Extracts actionable insights from DAG execution history to optimize performance by identifying patterns and generating recommendations.
Install this skill
Security score
The dag-pattern-learner skill was audited on Feb 9, 2026 and we found 15 security issues across 1 threat category. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 194 | name: `Skill Combination: ${skills.slice(0, 3).join(' + ')}${skills.length > 3 ? '...' : ''}`, |
Template literal with variable interpolation in command context
| 195 | description: `Effective combination of ${skills.length} skills`, |
Template literal with variable interpolation in command context
| 236 | name: `Parallel Group: ${group.nodes.length} nodes`, |
Template literal with variable interpolation in command context
| 237 | description: `Successfully parallelized ${group.nodes.map(n => n.type).join(', ')}`, |
Template literal with variable interpolation in command context
| 331 | name: `Bottleneck: ${bottleneck.nodeType}`, |
Template literal with variable interpolation in command context
| 332 | description: `Node type ${bottleneck.nodeType} consistently blocks parallel execution`, |
Template literal with variable interpolation in command context
| 376 | name: `Excessive Retries: ${nodeType}`, |
Template literal with variable interpolation in command context
| 377 | description: `Node type ${nodeType} requires ${avgRetries.toFixed(1)} retries on average`, |
Template literal with variable interpolation in command context
| 410 | description: `${(waste.tokenWaste * 100).toFixed(0)}% of tokens used in failed nodes`, |
Template literal with variable interpolation in command context
| 508 | title: `Use: ${pattern.name}`, |
Template literal with variable interpolation in command context
| 532 | title: `Avoid: ${antiPattern.name}`, |
Template literal with variable interpolation in command context
| 533 | description: `${antiPattern.description}. ${antiPattern.remediation}`, |
Template literal with variable interpolation in command context
| 535 | condition: `${i.metric} is ${i.comparison} ${i.threshold}`, |
Template literal with variable interpolation in command context
| 569 | title: `Synergy: ${overlap.join(' + ')}`, |
Template literal with variable interpolation in command context
| 570 | description: `Skills ${overlap.join(', ')} appear in multiple successful patterns`, |