Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

linear-coworkLinear cowork 搜索

Agent Skill

用于处理 Linear 项目、Issue、团队、周期和产品开发任务流。它适合让 Agent 辅助查询任务状态、整理需求队列、创建缺陷或汇总迭代进展。使用时需要确认 workspace、team、label、assignee 和状态流转规则;涉及批量创建或修改任务时,应先核对字段和目标团队,避免把草稿需求直接写入正式项目。

总安装

186

周安装

8

GitHub Stars

公开资料未说明

下载量

65
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:linear-cowork(Linear cowork 搜索)
来源仓库:https://github.com/labrinyang/linear-cowork
仓库路径:skills/linear-cowork
安装命令:
npx skills add https://github.com/labrinyang/linear-cowork --skill linear-cowork
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/labrinyang/linear-cowork --skill linear-cowork

简介

linear-cowork 用于处理 Linear 项目、Issue、团队、周期和产品开发任务流,适合让 Agent 查询任务状态或汇总迭代进展。

  • 它适用于 Linear 项目管理场景,需确认 workspace、team 和状态流转规则。
  • 安装命令为 npx skills add https://github.com/labrinyang/linear-cowork --skill linear-cowork。
  • 涉及批量创建或修改任务时,应先核对字段和目标团队。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Linear Cowork

Standardized Linear collaboration workflow for vibe coding teams.

MCP Setup

Before using this skill, ensure the Linear MCP server is installed and authenticated.

Quick setup for Claude Code:

claude mcp add --transport http linear-server https://mcp.linear.app/mcp

Quick setup for Codex:

codex mcp add linear --url https://mcp.linear.app/mcp

For Cursor setup and detailed instructions for all tools, see setup-guide.md in this skill directory.

Issue Conventions

Naming Rule

All issue titles MUST follow this format:

[Type] Short description

Valid types:

TypeWhen to use
[Feature]New functionality
[Bug]Bug fix
[Chore]Maintenance, dependencies, config
[Refactor]Code restructuring without behavior change
[Docs]Documentation changes

Examples:

  • [Feature] Add OAuth login flow
  • [Bug] Fix crash on empty cart submission
  • [Chore] Upgrade React to v19

Bad examples (DO NOT use):

  • add login — missing type prefix
  • [Feature] Login — too vague, not descriptive
  • Feature: add login — wrong format, must use brackets

Description Template

Every issue description MUST include these two sections:

## Background
[Why this issue exists. What problem it solves. Any relevant context.]

## Acceptance Criteria
- [ ] [Specific, testable criterion]
- [ ] [Another criterion]

Do not skip Acceptance Criteria. Even for small tasks, at least one criterion is required.

Workflow Rules

Default Assignment

When creating an issue via the Linear MCP, always assign it to "me" (the current authenticated user) unless the user explicitly specifies a different assignee.

Issue Status Lifecycle

Linear issues have 6 statuses. Proactively update issue status as the user's work progresses:

StatusTypeWhen to use
BacklogbacklogUnplanned — collected but not yet confirmed
TodounstartedConfirmed and ready to be worked on
In ProgressstartedActively being worked on
DonecompletedWork finished and verified
CanceledcanceledWill not be done
DuplicatecanceledAlready covered by another issue

Status transition rules:

Backlog → Todo → In Progress → Done
                              → Canceled
                              → Duplicate
  • Creating an issue: Set to Todo (not Backlog) unless user specifies otherwise
  • User starts working on an issue: Update to In Progress
  • Committing code for an issue: Update to Done
  • User says to cancel/skip: Update to Canceled
  • User identifies a duplicate: Update to Duplicate

Proactive status updates: When context makes it obvious (e.g., user says "I'm working on ONE-42" or "let's start ONE-42"), update the status to In Progress without needing to be asked. Similarly, when committing code linked to an issue, update to Done automatically.

Labels

Every issue MUST have a label. Choose based on the issue type:

LabelColorWhen to use
FeaturepurpleNew functionality ([Feature] issues)
BugredBug fixes ([Bug] issues)
ImprovementblueEnhancements, refactors, chores, docs ([Refactor], [Chore], [Docs] issues)

Mapping from issue type to label:

Issue TypeLabel
[Feature]Feature
[Bug]Bug
[Chore]Improvement
[Refactor]Improvement
[Docs]Improvement

Apply the label automatically when creating an issue — do not ask the user unless the mapping is ambiguous.

Priority

Every issue MUST have a priority set. Default to Medium (3) unless the user specifies otherwise.

ValueLevelWhen to use
0No priorityNever use as default
1UrgentProduction down, data loss, security vulnerability
2HighBlocks other work, major user-facing issue
3MediumDefault — standard feature work, normal bugs
4LowNice-to-have, minor polish, tech debt

Subagent Strategy

Use different models for different tasks to balance cost and quality:

TaskModelWhy
Read from Linear (list issues, get details)Haiku subagentCheap, fast, repetitive
Write to Linear (create/update issues, comments)Haiku subagentSimple API calls
Explore codebase for issue contextExplore subagentEfficient file search
Draft issue content (title, description, criteria)Main modelRequires quality writing

Issue creation workflow:

1. Haiku    → Read Linear (check existing issues, projects, team context)
2. Explore  → Search codebase if needed (understand context for the issue)
3. Main     → Draft issue title, description, and acceptance criteria
4. Preview  → Show draft to user for confirmation
5. Haiku    → Submit to Linear after user approves

Issue update workflow:

1. Haiku    → Read current issue state from Linear
2. Main     → Determine changes needed (may explore codebase if needed)
3. Preview  → Show changes to user for confirmation (if content changes)
4. Haiku    → Apply updates to Linear

Key rules:

  • Always preview issue content before submission. Show the user the full title, description, labels, priority, and status before creating or making content changes.
  • Status-only updates (e.g., Todo → In Progress) do NOT need preview — apply directly.
  • Simple reads and writes go through Haiku to save context tokens.
  • Content that users will see (titles, descriptions, criteria) must be drafted by the main model for quality.

Project Organization

  • Use Linear Projects to group related issues by feature area or milestone
  • Before creating issues, check if a relevant project exists
  • If no project exists and the work spans 3+ issues, create a project first

Pre-commit Checklist

Before every commit, follow this flow:

About to commit?
  ├─ Related to Linear issue?
  │   ├─ Unknown → Ask user for issue ID
  │   │   ├─ User confirms → Update status to completed, include ID in commit
  │   │   └─ No issue → Proceed with commit
  │   ├─ Yes, known → Update status to completed, include ID in commit
  │   └─ No → Proceed with commit

Steps:

  1. Before committing, ask: *"Is this commit related to a Linear issue? If so, which one (e.g., ONE-123)?"*
  2. If user provides an issue ID:

- Use a subagent to update the issue status to Done - Include the issue ID in the commit message, e.g.: [ONE-123] Fix cart crash on empty submission

  1. If user says no issue is related, proceed with the commit normally.

Commit Message Format with Issue ID

[ISSUE-ID] commit message

# Examples:
[ONE-42] Add OAuth login flow
[ONE-15] Fix crash on empty cart submission

Quick Reference

ActionRule
Issue title[Type] Short description
Issue descriptionBackground + Acceptance Criteria sections
Assign issueDefault to "me" unless user specifies otherwise
LabelAuto-apply: Feature / Bug / Improvement based on issue type
PriorityDefault to Medium (3) unless user specifies otherwise
New issue statusDefault to "Todo"
Start workingUpdate to "In Progress"
Commit linked to issueUpdate to "Done"
Read/write LinearHaiku subagent
Draft issue contentMain model, then preview before submit
Before commitConfirm issue ID, update status to completed
Commit message[ISSUE-ID] message
Multiple related issuesGroup under a Project

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.8%
按下载量换算23

Claude

29.37%
按下载量换算19

Cursor

20.48%
按下载量换算13

Gemini CLI

9.07%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills