linear-core-workflow-b
Facilitates project and cycle management using Linear, enabling effective sprint planning and roadmap organization.
Install this skill
Security score
The linear-core-workflow-b skill was audited on May 12, 2026 and we found 16 security issues across 3 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 53 | console.log(`${project.name} [${project.state}] — progress: ${Math.round(project.progress * 100)}%`); |
Template literal with variable interpolation in command context
| 69 | console.log(`Created project: ${project?.name} (${project?.id})`); |
Template literal with variable interpolation in command context
| 101 | console.log(` Milestone: ${ms.name} — target: ${ms.targetDate}`); |
Template literal with variable interpolation in command context
| 124 | console.log(` ${issue.identifier}: ${issue.title} [${state?.name}]`); |
Template literal with variable interpolation in command context
| 138 | console.log(`${cycle.name ?? "Unnamed"}: ${cycle.startsAt} → ${cycle.endsAt}`); |
Template literal with variable interpolation in command context
| 154 | console.log(`Created cycle: ${cycle?.name}`); |
Template literal with variable interpolation in command context
| 194 | console.log(`Sprint progress: ${metrics.burndown}% (${metrics.completedPoints}/${metrics.totalPoints} pts)`); |
Template literal with variable interpolation in command context
| 211 | console.log(`Rolled over ${moved} unfinished issues`); |
Template literal with variable interpolation in command context
| 243 | console.log(`Average velocity: ${velocity.average} pts/sprint`); |
Template literal with variable interpolation in command context
| 263 | progress: `${Math.round(p.progress * 100)}%`, |
Template literal with variable interpolation in command context
| 296 | name: `Sprint ${new Date().toISOString().slice(0, 10)}`, |
Template literal with variable interpolation in command context
| 306 | console.log(`Sprint created: ${cycle?.name} (${issueIds.length} issues)`); |
Access to .env file
| 40 | const client = new LinearClient({ apiKey: process.env.LINEAR_API_KEY! }); |
External URL reference
| 312 | - [Project Model Schema](https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/Project) |
External URL reference
| 313 | - [Cycle Model Schema](https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/Cycle) |
External URL reference
| 314 | - [Linear Roadmaps Documentation](https://linear.app/docs/roadmaps) |