Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

linear-workflow-managerLinear 工作流 manager

Agent Skill

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

总安装

449

周安装

18

GitHub Stars

公开资料未说明

下载量

145
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add synapz-org/linear-workflow-manager --skill "linear-workflow-manager"

简介

Linear Workflow Manager 技能自动化管理跨团队开发流程与审批链。

  • 适用于敏捷团队集成 CI/CD 与需求评审环节,提升交付效率。
  • 通过 npx skills add synapz-org/linear-workflow-manager --skill "linear-workflow-manager" 安装。
  • 使用前需配置 webhook 与权限映射,确保触发器正确响应。
  • 建议在非高峰时段测试流程变更,避免影响正常迭代节奏。

SKILL.md

name
linear-workflow-manager
description
This skill should be used when organizing daily work with Linear, starting the work day, reviewing priorities, triaging issues, or managing status updates. Use it for daily standup preparation, automated issue triage, workload planning, and status reporting. Integrates with Linear GraphQL API for seamless issue management.

Linear Workflow Manager

Overview

This skill helps organize your work day with Linear by automating daily planning, issue triage, and status updates. It leverages autonomous Claude agents to process issues, analyze workload, and generate reports, while providing structured workflows for common Linear tasks.

Core Workflows

1. Daily Standup & Planning

Trigger: "Start my work day" or "Plan my day with Linear"

Workflow:

  1. Fetch high priority items - Query Linear for issues assigned to you filtered by priority (Urgent, High)
  2. Analyze workload - Review issue count, estimates, deadlines, and blockers
  3. Suggest daily priorities - Recommend which issues to tackle first based on:

- Priority level - Due dates - Dependencies and blockers - Project milestones - Team needs

  1. Create daily plan - Present organized plan with time estimates and suggested ordering

Agent Usage: Launch a planning agent with Task tool (subagent_type: general-purpose) to:

  • Analyze the full workload context
  • Identify dependencies and blockers
  • Generate prioritized task list
  • Estimate time allocations

Example interaction:

User: "Start my work day"
Assistant: I'll help you plan your day with Linear.
[Executes: linear.sh query queries/planning/my-priorities.json]
[Analyzes output and creates prioritized plan]

2. Issue Triage

Trigger: "Triage new Linear issues" or "Process unassigned issues"

Workflow:

  1. Fetch untriaged issues - Query Linear for new/unassigned issues or issues without labels/priority
  2. Categorize each issue - For each issue, analyze:

- Content and context - Urgency and impact - Appropriate team/assignee - Required labels and project

  1. Apply metadata - Set priority, add labels, assign to team/person, link to projects
  2. Document decisions - Add comment explaining triage decisions for transparency

Agent Usage: Launch a triage agent with Task tool (subagent_type: general-purpose) to:

  • Process multiple issues in batch
  • Apply consistent triage criteria
  • Update Linear issues via GraphQL mutations
  • Generate triage summary report

Example interaction:

User: "Triage new Linear issues"
Assistant: I'll process untriaged issues in your Linear workspace.
[Executes: linear.sh query queries/triage/untriaged-issues.json]
[Analyzes issues and updates via GraphQL mutations]

Triage Criteria: Load references/triage_criteria.md for team-specific guidelines on:

  • Priority assignment rules
  • Label taxonomy
  • Assignment routing
  • SLA expectations

3. Status Updates & Reporting

Trigger: "Generate status update" or "Create Linear progress report"

Workflow:

  1. Define scope - Ask user what to report on:

- Personal work (your issues) - Team work (team's issues) - Project work (specific project or milestone) - Custom filter

  1. Fetch relevant issues - Query Linear with appropriate filters
  2. Generate report - Create structured summary including:

- Completed work (since last report) - In-progress work (current status) - Blocked items (with blockers identified) - Upcoming work (next priorities) - Key metrics (velocity, completion rate)

  1. Format for audience - Adapt tone/detail for standup vs. stakeholder update

Agent Usage: Launch a reporting agent with Task tool (subagent_type: general-purpose) to:

  • Aggregate issue data across time periods
  • Identify trends and patterns
  • Generate clear, concise summaries
  • Format for different audiences

Example interaction:

User: "Generate my weekly status update"
Assistant: I'll create a status report for your Linear work this week.
[Executes: linear.sh query queries/reporting/completed-this-week.json]
[Analyzes data and generates formatted summary]

Report Templates: Load references/report_templates.md for standard formats like:

  • Daily standup updates
  • Weekly progress reports
  • Sprint retrospectives
  • Stakeholder summaries

Linear GraphQL Integration

This skill uses direct Linear GraphQL API access for all Linear operations. No MCP required.

Setup: Ensure Linear API key is configured in ~/.claude/.env:

LINEAR_API_KEY=lin_api_xxx

Helper Script: scripts/linear.sh provides command interface:

linear.sh query <query-file>           # Execute query template
linear.sh create-issue <title> <desc>  # Quick issue creation
linear.sh list-issues                  # List your issues
linear.sh my-day                       # Today's priorities

Query Templates: Pre-built GraphQL queries in queries/ directory:

  • planning/ - Daily standup, workload, deadlines
  • triage/ - Untriaged issues, priority updates, assignments
  • reporting/ - Completed work, blockers, velocity
  • common/ - Teams, search, CRUD operations

For Agents:

  • Start at references/query-index.md to find the right query
  • Use linear.sh query <template> for simple execution
  • Or construct custom GraphQL with curl for complex needs
  • See references/examples.md for patterns and workflows

Best Practices

Daily Workflow

  1. Start each work day with the planning workflow to set priorities
  2. Use triage workflow for any new issues that come in during the day
  3. End the day with a quick status update to track progress

Agent Coordination

  • Use agents for batch operations (triage multiple issues, generate reports)
  • Keep user in the loop with progress updates
  • Present agent findings for user review before bulk updates

Customization

  • Add team-specific triage criteria to references/triage_criteria.md
  • Customize report templates in references/report_templates.md
  • Adjust priority rules and workflows to match your team's process

Quick Reference

Start work day: "Start my work day" → Planning agent analyzes high priority items

Triage issues: "Triage new issues" → Triage agent processes untriaged items

Generate report: "Create status update" → Reporting agent summarizes work and progress

Custom query: "Show me [specific filter]" → Query Linear directly with helper script or GraphQL

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

OpenCode

27.21%
按下载量换算39

Claude Code

24.69%
按下载量换算36

Cursor

17.39%
按下载量换算25

Codex

12.14%
按下载量换算18

Gemini CLI

8.65%
按下载量换算13

windsurf

3.89%
按下载量换算6

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills