Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计异常

linear-walkthroughLinear walkthrough 开发

Agent Skill

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

总安装

549

周安装

22

GitHub Stars

1

下载量

178
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/uptick/linear-walkthrough --skill linear-walkthrough

简介

提供 Linear 操作流程的引导式演示,帮助新用户快速上手核心功能。

  • 适用于新成员入职培训、功能介绍或复杂任务的步骤分解说明。
  • 可按模块生成交互式指引,降低学习曲线和误操作概率。
  • 实际使用时需配合具体账号权限,部分高级功能可能不可见。
  • linear-walkthrough 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Linear Code Walkthrough

Generate a linear, step-by-step markdown walkthrough that explains how code works. Output is GitHub-flavored markdown that can be rendered as a self-contained HTML page.

Detail Level

If in an interactive session (not piped/scripted), use AskUserQuestion to ask the detail level before writing:

  • Brief — The user already knows the domain. Keep explanations short, focus on structure and key decisions. Minimal prose, mostly code snippets with short annotations.
  • In-depth — The user wants thorough understanding. Explain design decisions, trade-offs, how pieces connect, and why things are done a certain way.
  • Beginner-friendly — The user is new to this topic. Explain concepts as you go, define jargon, add context a newcomer would need. Enough depth to actually teach the topic, not just show the code.

If the user specifies a level in their request (e.g. "give me a quick walkthrough"), skip the question and use that level.

Modes

1. Codebase Walkthrough

When asked to explain a codebase, module, or feature:

  1. Read the relevant source files
  2. Ask detail level (if interactive)
  3. Plan a linear narrative: entry point -> core logic -> supporting pieces
  4. Write the walkthrough markdown file
  5. Suggest visualization

2. Pull Request Walkthrough

When given a PR (URL or number):

  1. Fetch the PR diff and source using gh
  2. Read the changed files and understand the full context
  3. Ask detail level (if interactive)
  4. Write the walkthrough markdown file
  5. Reply with the content (do NOT commit)

Writing the Walkthrough

Format: GitHub-flavored markdown (GFM)

Structure: Follow a linear narrative. Start from the entry point and walk through the code in the order it executes or in logical dependency order.

Rules:

  • Include actual code snippets using fenced code blocks with language tags
  • Use grep, sed, cat, or read tools to extract real snippets -- never fabricate code
  • Use Mermaid.js diagrams (``` `mermaid ```) for architecture, data flow, or request lifecycle visualizations
  • Name the file something relevant (e.g., auth-flow-walkthrough.md, api-design-walkthrough.md) unless the user specifies a name
  • Do NOT commit the walkthrough file unless explicitly asked

Code block source links:

Every code snippet MUST have a source link immediately above or below the fenced block so readers can jump to the original.

  • Remote PR walkthrough: Link to the file on GitHub at the PR's head commit with line range. Format: [path/to/file.py#L10-L25](https://github.com/OWNER/REPO/blob/HEAD_SHA/path/to/file.py#L10-L25) Get the head SHA via gh pr view NUMBER --json headRefOid -q.headRefOid
  • Local codebase walkthrough: Link using the vscode:// protocol so clicking opens the file in VS Code at the right line. Format: [path/to/file.py:10-25](vscode://file/absolute/path/to/file.py:10:1) The vscode://file/PATH:LINE:COLUMN URI opens the file in VS Code. Use line range in the link text for readability.

Template structure:

# [Topic]: Walkthrough

[1-2 sentence summary of what this walkthrough covers]

## Entry Point: [filename/function]

[Explanation of where everything starts]

[`src/main.py:10-18`](https://github.com/owner/repo/blob/SHA/src/main.py#L10-L18)

[actual code snippet from the codebase] `

[Next Logical Step]

[Explanation continuing the narrative]

src/handler.py:5-12

[code snippet]
`` `

## [Continue as needed...]

[Use mermaid diagrams where they help:]

graph LR A[Request] --> B[Router] B --> C[Handler] C --> D[Database] `

Summary

ComponentFilePurpose
.........

## For Pull Requests

Use `gh` to fetch PR details:

gh pr view NUMBER --json title,body,files,additions,deletions gh pr diff NUMBER


Get the merge base commit SHA for GitHub permalinks:

gh pr view NUMBER --json baseRefOid,headRefOid


Then follow the same walkthrough structure, focusing on what the PR changes and why.

**PR-specific additions:**

- Start with a full GitHub PR URL link: `[PR #123: Title](https://github.com/OWNER/REPO/pull/123)` — this format (`https://github.com/OWNER/REPO/pull/NUMBER`) is required so the interactive server can auto-detect and fetch the PR diff for follow-up context.
- Follow with a summary of the PR's purpose
- Walk through changes in logical order (not file order)
- Highlight the key design decisions
- Note any potential concerns or trade-offs

## After Generating

After writing the walkthrough file, tell the user:

> Walkthrough saved to `[filename]`. To visualize it as a styled HTML page:
>
>
> ```bash
> uvx linear-walkthrough [filename] --serve
> ```
>
> Or generate a static HTML file:
>
>
> ```bash
> uvx linear-walkthrough [filename] -o walkthrough.html
> ```

**For PR walkthroughs**, suggest `--serve` with `--pr` so the interactive server seeds Claude with the full PR diff and metadata for better follow-up answers:

> ```bash
> uvx linear-walkthrough [filename] --serve --pr owner/repo#123
> ```
>
> The `--pr` flag fetches PR info and diff via `gh` CLI and includes it in the Claude seed context. If omitted, the server auto-detects GitHub PR URLs from the markdown content.

Do NOT run `uvx linear-walkthrough --serve` automatically -- let the user choose.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.28%
按下载量换算70

Claude

29.18%
按下载量换算52

Cursor

18.54%
按下载量换算33

Gemini CLI

9.41%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills