Back to skill
v1.0.0

Linear

BenignClawScan verdict for this skill. Analyzed May 1, 2026, 4:52 AM.

Analysis

This skill appears coherent and purpose-aligned, but it can read and change Linear workspace data using your Linear API key.

GuidanceInstall this only if you are comfortable granting a dedicated Linear API key to a local CLI that can read and update Linear workspace records. Keep changes narrowly scoped, confirm IDs before updates, avoid secrets in Linear issue text, and use the included lockfile for dependency installation.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

Abnormal behavior control

Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.

Tool Misuse and Exploitation
SeverityMediumConfidenceHighStatusNote
scripts/linear-cli.js
async createIssue(...) { ... client.createIssue(...) } ... async updateIssue(issueId, updates) { ... client.updateIssue(issueId, updateData); }

The CLI can create and update Linear records. This is disclosed and matches the skill purpose, but it can still materially change workspace data.

User impactIf invoked with the wrong IDs or scope, the skill could create or modify Linear issues/projects/comments in ways that affect team workflows.
RecommendationConfirm team/project/issue IDs and requested changes before mutations, especially for bulk updates; review the final change summary.
Agentic Supply Chain Vulnerabilities
SeverityLowConfidenceHighStatusNote
scripts/package-lock.json
"node_modules/@linear/sdk": { "version": "71.0.0", "resolved": "https://registry.npmjs.org/@linear/sdk/-/sdk-71.0.0.tgz", "integrity": "sha512-Fm3C6..." }

The skill depends on the external @linear/sdk package from npm. This is expected for the stated purpose and the lockfile provides version and integrity information.

User impactThe installed SDK runs locally and is part of the path that uses the Linear API key.
RecommendationInstall using the included lockfile and review dependency updates before upgrading.
Permission boundary

Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.

Identity and Privilege Abuse
SeverityMediumConfidenceHighStatusNote
scripts/linear-cli.js
const apiKey = process.env.LINEAR_API_KEY; ... const client = new LinearClient({ apiKey });

The skill uses a local Linear API key as delegated account authority. The credential use is expected and not hardcoded, but it grants access according to the token's Linear permissions.

User impactAnyone running the skill with that environment variable can act through the configured Linear API key.
RecommendationUse a dedicated, least-privilege Linear token for automation and rotate it if it is exposed or shared.
Sensitive data protection

Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.

Memory and Context Poisoning
SeverityLowConfidenceHighStatusNote
scripts/linear-cli.js
description: issue.description, ... comments: comments.nodes.map(c => ({ id: c.id, body: c.body, user: c.user?.name, createdAt: c.createdAt }))

The skill returns Linear issue descriptions and comments to the agent context. This is necessary for Linear work, but those fields can contain sensitive or untrusted workspace text.

User impactLinear comments or descriptions may be visible to the agent and could influence its recommendations or actions.
RecommendationDo not put secrets in Linear issue text, and treat issue/comment content as project data rather than authoritative instructions.