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

linear-weekly-reportLinear weekly report 搜索

Agent Skill

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

总安装

196

周安装

8

GitHub Stars

公开资料未说明

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jackpanyj/linear-weekly-report --skill linear-weekly-report

简介

自动生成每周任务进展汇总报告,涵盖完成、进行中及阻塞项统计。

  • 适用于管理层汇报、团队回顾或个人绩效追踪,减少手动整理时间。
  • 可自定义时间范围和指标维度,灵活适配不同复盘节奏。
  • 导出前应核对数据准确性,避免因缓存延迟导致信息过时。
  • linear-weekly-report 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Linear Weekly Report Generator

Queries a specified user's Linear issues via Linear MCP and generates a weekly report in the "Next Week's Focus / Blockers / Last Week's Highlights" structure, formatted for direct paste into Notion /quote blocks.

Prerequisites

  • Linear MCP configured (server: user-Linear) with access to get_user and list_issues tools.
  • list_issues assignee parameter supports: User ID, name, email, or "me".
  • updatedAt supports ISO-8601 duration format, e.g., -P7D (past 7 days).

Workflow

1. Parse User Identifier

Extract the target person from user input, supporting:

  • Email: panyanjie@mirrorworld.fun
  • Name: panyanjie
  • me: Currently logged-in Linear user

If needed, call get_user first (with query as one of the above) to retrieve displayName for the title.

2. Fetch Issues

Call list_issues (Linear MCP):

ParameterValueDescription
assigneeUser identifierEmail, name, or "me"
updatedAt-P7DIssues updated in the last 7 days
orderByupdatedAtSort by update time
limit50Optional, defaults to 50

If assignee by email/name returns nothing, try using the id returned by get_user.

3. Categorize & Summarize

  • Last Week's Highlights: Issues with status Done, Done (Production), etc. Extract title or brief description.
  • Next Week's Focus: Issues with status In Progress, Todo, In Testing (Staging), etc. Extract title; merge similar items (e.g., multiple Mobile subtasks).
  • Blockers / Dependencies: Linear has no direct field for this. Default to None.; only include if user explicitly mentions blockers.

Brevity Guidelines

IMPORTANT: Keep reports concise. Control item counts in each section:

  • Last Week's Highlights: Max 3-5 key achievements

- Merge similar bug fixes into 1 item (e.g., "Fixed 8 UI bugs including tooltip, styling, and layout issues") - Prioritize: Feature launches, major bug fixes, architectural improvements - Omit: Minor styling tweaks, repetitive fixes

  • Next Week's Focus: Max 3-5 main tasks

- Merge subtasks into parent task (e.g., instead of "1. Login flow, 2. Referral page...", use "Trading Tournament features (login, referral, leaderboard, etc.)") - Prioritize: Major features, high-priority tasks, business-valuable work

Keep each item brief (1 line max). Remove prefixes like [Mobile], ENG-xxxx, retaining only semantic clarity. Use English for item text: Translate or summarize Chinese issue titles into English. No issue IDs: Do not include (ENG-xxxx), (ACADEMY-xx), or any Linear identifier in output.

4. Role & Title

  • Use displayName or common name (from get_user) after @.
  • Role (e.g., Front-end, Backend) is not provided by Linear. Leave as @name - or fill based on known info/user input.

Output Format: Notion /quote

Use > + space quote block syntax. Section headers are first-level bullets (start with -), specific items are second-level bullets (start with -, 2-space indent), making it easy to paste into Notion and convert to nested bulleted lists.

> ▶️ 👤 @{displayName} - {Role}
>
> - ⏭ Next Week's Focus (Deliverables):
>   - {item 1}
>   - {item 2}
>
> - 🚧 Blockers / Dependencies:
>   - None.
>
> - ✅ Last Week's Highlights:
>   - {item 1}
>   - {item 2}
  • Output language: English. Section headers, item text, and "None." must be in English. If the source issue title is in Chinese, translate or briefly summarize in English. Use Chinese only when the user explicitly asks for 中文.
  • No issue IDs. Do not append (ENG-xxxx), (ACADEMY-xx), or any Linear identifier to items.
  • Use - for section headers and - (2-space indent) for items, so Notion can recognize them as nested list items for easy conversion to bulleted lists.

Edge Cases & Empty Results

  • list_issues returns 0 items: Reply with e.g. "No issues assigned and updated in the last 7 days", and still output a template with empty Blockers/Highlights and Next Focus showing "—" or "TBD" (in English).
  • get_user finds no user: Reply with e.g. "User not found in Linear. Please check email/name or try me." (in English).

Output Requirements

CRITICAL: The weekly report MUST be directly copyable from the chat window.

  1. Always display the complete report in a markdown code block (using triple backticks) so users can easily copy it.
  2. Format: Display the report in a code block labeled as markdown or text for easy copying.
  3. No clipboard commands: Do NOT use pbcopy, xclip, or similar clipboard commands. These often fail and are unreliable.
  4. Instructions: After displaying the report, remind users: "Copy the content above and paste into Notion. Type > + space in Notion to create a quote block, paste the content, then press Cmd + Shift + 8 to convert to bulleted list."

Example Output Format

Display the report like this:

Here's your weekly report:
▶️ 👤 @jack - Front-end - ⏭ Next Week's Focus (Deliverables): - Trading Tournament features - Bug fixes - 🚧 Blockers / Dependencies: - None. - ✅ Last Week's Highlights: - Shipped assets feature

**How to use in Notion:**
1. Copy the content above
2. Paste the content in notion

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.28%
按下载量换算23

Claude

32%
按下载量换算20

Cursor

19.42%
按下载量换算12

Gemini CLI

9.19%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

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

安装前确认

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

来源信息

继续浏览同类 Skills