Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

triage-workflow分诊工作流程

Agent Skill

triage-workflow 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

642

周安装

27

GitHub Stars

8

下载量

225
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/nodnarbnitram/claude-code-extensions --skill triage-workflow

简介

triage-workflow 用于查找、检索和筛选相关信息。

  • 适合根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合仓库 README 进一步核验具体用法和功能边界。
  • 安装前应确认权限范围、维护状态及是否触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

SOC II Triage Workflow

Orchestrates the complete triage process: Linear ticket → branch → OpenSpec proposal → implementation → commit → PR

⚠️ BEFORE YOU START

This skill prevents 5 common errors and saves ~60% tokens by using subagents.

MetricWithout SkillWith Skill
Setup Time30+ min5-10 min
Common Errors5+0
Token Usage50k+~20k

Known Issues This Skill Prevents

  1. Forgetting to create Linear ticket before starting work
  2. Branch names not matching ticket identifiers
  3. Commits missing ticket prefix (e.g., ICE-1965:)
  4. OpenSpec proposals not validated before implementation
  5. Context pollution from long-running workflows

Workflow Overview

This skill guides you through a 7-step triage workflow:

  1. Create Linear Ticket - Use linearis CLI
  2. Create Git Branch - Named after ticket identifier
  3. Create OpenSpec Proposal - /openspec:proposal
  4. User Validates Proposal - Review tasks and spec
  5. Apply OpenSpec Changes - /openspec:apply
  6. Commit Changes - /git-commit with ticket prefix
  7. Push & Create PR - Optional, user decides

Quick Start

Step 1: Create Linear Ticket

# Run the helper script to create ticket
uv run scripts/create_linear_ticket.py "Issue title" --team TeamName --description "Details"

Why this matters: The ticket identifier (e.g., ICE-1965) becomes the prefix for branch names and commits.

Step 2: Create Branch from Ticket

# Use the helper script (gets GitHub username automatically)
uv run scripts/create_branch.py ICE-1965 --push
# Creates: nodnarbnitram/ICE-1965

Why this matters: Branch format username/identifier enables traceability and ownership clarity.

Step 3: Create OpenSpec Proposal

Use the slash command:

/openspec:proposal Add two-factor authentication

Why this matters: OpenSpec ensures alignment on requirements before implementation.

Critical Rules

✅ Always Do

  • ✅ Create Linear ticket FIRST before any code changes
  • ✅ Use ticket identifier as branch name prefix
  • ✅ Validate OpenSpec proposal with user before /openspec:apply
  • ✅ Prefix all commits with ticket number (e.g., ICE-1965: Fix bug)
  • ✅ Use subagents to keep main context clean

❌ Never Do

  • ❌ Start coding without a Linear ticket
  • ❌ Apply OpenSpec changes without user validation
  • ❌ Commit without ticket prefix
  • ❌ Push to main/master directly
  • ❌ Skip the proposal validation step

Common Mistakes

❌ Wrong:

git commit -m "Fix authentication bug"

✅ Correct:

git commit -m "ICE-1965: Fix authentication bug"

Why: SOC II compliance requires ticket traceability in all commits.

Known Issues Prevention

IssueRoot CauseSolution
Missing ticket prefixForgot to extract identifierUse /git-commit with prefix instruction
Branch name mismatchManual typing errorUse script to create branch from ticket
Proposal not validatedRushed workflowAlways pause for user confirmation
Context bloatLong workflowsDelegate to subagents for each step

Detailed Workflow Steps

Phase 1: Ticket Creation

Use subagent to create Linear ticket:

> Create a Linear ticket for: [issue description]

The subagent will:

  1. Run linearis issues create with appropriate parameters
  2. Extract the ticket identifier from JSON response
  3. Return the identifier (e.g., ICE-1965)

Linearis command reference:

linearis issues create "Title" \
  --team Backend \
  --description "Issue description" \
  --priority 2 \
  --labels "Bug,SOC-II"

Phase 2: Branch Creation

After getting ticket identifier:

# Use helper script to create branch with GitHub username
uv run scripts/create_branch.py ICE-1965 --push
# Creates: nodnarbnitram/ICE-1965

Phase 3: OpenSpec Proposal

Invoke the slash command:

/openspec:proposal [description of change]

This will:

  1. Scaffold openspec/changes/[change-id]/
  2. Create proposal.md, tasks.md, and delta specs
  3. Return for user review

CRITICAL: Wait for user validation before proceeding!

Phase 4: User Validation

Present the proposal to user and ask:

  • Do the tasks in tasks.md make sense?
  • Is the scope in proposal.md correct?
  • Are the delta specs accurate?

Only proceed when user confirms.

Phase 5: Apply OpenSpec Changes

After user validation:

/openspec:apply [change-name]

This implements the tasks defined in the proposal.

Phase 6: Commit Changes

Use the git-commit command with ticket prefix:

/git-commit ICE-1965:

The commit helper will:

  1. Analyze staged changes
  2. Generate commit message
  3. Prefix with ticket number

Phase 7: Push & PR (Optional)

Ask user if they want to:

  1. Push the branch
  2. Create a pull request

If yes:

# Push
git push

# Create PR
gh pr create \
  --title "ICE-1965: [Description]" \
  --body "Fixes ICE-1965

## Summary
- [Change description]

## Test Plan
- [ ] Tests pass
- [ ] Manual verification"

Bundled Resources

Scripts

Located in scripts/:

  • create_linear_ticket.py - Creates Linear ticket and returns identifier
  • create_branch.py - Creates branch from ticket identifier
  • create_pr.py - Creates PR with ticket reference

References

Located in references/:

Note: For deep dives on specific tools, see the reference files above.

Dependencies

Required

PackageVersionPurpose
linearislatestLinear ticket management
gh2.x+GitHub CLI for PRs
openspec2.x+Spec-driven development

Optional

PackageVersionPurpose
jq1.6+JSON parsing for scripts

Official Documentation

Troubleshooting

Linear ticket creation fails

Symptoms: linearis command returns error or empty response

Solution:

# Check authentication
echo $LINEAR_API_TOKEN
# Or check token file
cat ~/.linear_api_token

# Test with simple command
linearis issues list -l 1

OpenSpec proposal not found

Symptoms: /openspec:apply can't find the change

Solution:

# List active changes
openspec list

# Validate the change
openspec validate [change-id]

PR creation fails

Symptoms: gh pr create returns authentication error

Solution:

# Check GitHub auth
gh auth status

# Re-authenticate if needed
gh auth login

Setup Checklist

Before using this skill, verify:

  • linearis CLI installed and authenticated (~/.linear_api_token exists)
  • gh CLI installed and authenticated (gh auth status)
  • openspec installed (npm install -g @fission-ai/openspec)
  • Git configured with user name and email
  • Team name known for Linear tickets

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

windsurf

28.64%
按下载量换算64

Antigravity

22.98%
按下载量换算52

OpenCode

16.77%
按下载量换算38

Gemini CLI

12.57%
按下载量换算28

Claude Code

6.58%
按下载量换算15

trae

3.52%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills