Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

triage故障分诊

Agent Skill

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

总安装

535

周安装

23

GitHub Stars

8

下载量

188
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/phrazzld/claude-config --skill triage

简介

triage 用于查找和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中处理故障分诊任务。
  • 通过 GitHub 安装,建议结合来源仓库和 README 核验用法。
  • 需确认是否会触发联网或命令执行。
  • triage 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

/triage

Fix production issues. Run audit, investigate, fix, postmortem.

This is a fixer. It uses /check-production as its primitive. Use /log-production-issues to create issues instead of fixing.

Usage

/triage                        # Audit and fix highest priority (default)
/triage investigate VOL-456    # Deep dive on specific Sentry issue
/triage investigate-ci 12345   # Deep dive on specific CI run failure
/triage fix                    # Create PR for current fix
/triage postmortem VOL-456     # Generate postmortem after merge

Stage 1: Production Audit

Command: /triage or /triage status

Invoke /check-production primitive for parallel checks:

  1. Sentry - Unresolved issues via triage scripts
  2. Vercel logs - Recent errors in stream
  3. Health endpoints - /api/health response
  4. GitHub CI/CD - Failed workflow runs

Output format:

TRIAGE STATUS - 2026-01-23 15:30
================================

SENTRY (volume-fitness)
  [P0] 3 unresolved issues
  Top: VOL-456 "PaymentIntent failed" (Score: 147, 23 users)

GITHUB CI/CD
  [P1] Main branch failing: "CI" workflow (run #1234)
       Failed: Type check - 2h ago
  [P2] 2 feature branches blocked

VERCEL LOGS
  [OK] No errors in last 10 minutes

HEALTH ENDPOINTS
  [OK] volume.fitness/api/health (200, 45ms)

RECOMMENDATION:
  1. Investigate VOL-456 immediately - 23 users affected
     Run: /triage investigate VOL-456
  2. Fix main branch CI - blocking all deploys
     Run: /triage investigate-ci 1234

If all clean: "All systems nominal. No action required."

Stage 2: Investigate

Delegation Pattern

For complex issues, delegate investigation to agentic tools (see /delegate):

  • Codex — Code archaeology, stack trace analysis, debugging
  • Gemini — Research current patterns, check for known issues
  • Thinktank — Validate proposed fix before implementing

Sentry Issues

Command: /triage investigate ISSUE-ID

Actions:

  1. Fetch full issue context from Sentry
  2. Create branch: fix/ISSUE-ID-description
  3. Load affected files from stack trace
  4. Check git history for related changes
  5. Form root cause hypothesis (delegate to Codex for complex traces)

Output: Investigation summary with hypothesis and next steps.

CI/CD Failures

Command: /triage investigate-ci RUN-ID

Actions:

  1. Fetch failed workflow run details gh run view RUN-ID --log-failed
  2. Identify failed step and error message
  3. Create branch: fix/ci-[workflow-name]-[date]
  4. Load affected files based on error
  5. Check recent commits that may have caused regression

Common CI failure patterns:

Failure TypeTypical CauseFix Approach
Type checkNew code with type errorsFix types locally, push
LintStyle violationsRun pnpm lint --fix
TestBroken/flaky testsRun tests locally, fix or skip flaky
BuildMissing deps, config issuesCheck package.json, build config
DeployEnv vars, permissionsCheck Vercel/platform settings

Output: CI investigation summary with specific error and fix approach.

Stage 3: Fix

Command: /triage fix

Prerequisites: On fix/ branch with changes.

Actions:

  1. Run tests to verify fix
  2. Create PR with standard format
  3. Link Sentry issue in PR description

PR format:

## Summary
[Fix description]

## Sentry Issue
- ID: ISSUE-ID
- Users affected: N
- First seen: DATE

## Test Plan
- [ ] Test case 1
- [ ] Test case 2

Stage 4: Postmortem

Command: /triage postmortem ISSUE-ID

Prerequisites: Fix deployed (PR merged).

Actions:

  1. Verify no new errors in Sentry
  2. Generate postmortem document from template
  3. Resolve Sentry issue
  4. Create docs/postmortems/YYYY-MM-DD-ISSUE-ID.md

Scripts

Via Sentry MCP (Preferred)

When Sentry MCP is configured, use direct queries:

  • "Show me unresolved errors in production"
  • "What's the triage score for issue VOL-456?"
  • "Get full context for the top error"

Via CLI Scripts

# Multi-source orchestrator
~/.claude/skills/triage/scripts/check_all_sources.sh

# Individual checks
~/.claude/skills/triage/scripts/check_sentry.sh
~/.claude/skills/triage/scripts/check_vercel_logs.sh
~/.claude/skills/triage/scripts/check_health_endpoints.sh

# Sentry CLI directly
sentry-cli issues list --project=$SENTRY_PROJECT --status=unresolved
sentry-cli issues describe ISSUE-ID

# Postmortem generator
~/.claude/skills/triage/scripts/generate_postmortem.sh ISSUE-ID

Via GitHub CLI

# List failed runs on main branch
gh run list --branch main --status failure --limit 10

# List all recent failures
gh run list --status failure --limit 10

# View failed run details
gh run view RUN-ID

# View only failed step logs
gh run view RUN-ID --log-failed

# Re-run failed jobs (after fix pushed)
gh run rerun RUN-ID --failed

# Watch a run in progress
gh run watch RUN-ID

Workflow

/triage
   |
   v
[Issues found?]
   |
   +-- Sentry issue --> /triage investigate ISSUE-ID
   |                       |
   |                       v
   |                    [Fix locally]
   |                       |
   |                       v
   |                    /triage fix (creates PR)
   |                       |
   |                       v
   |                    [PR merged & deployed]
   |                       |
   |                       v
   |                    /triage postmortem ISSUE-ID
   |
   +-- CI failure --> /triage investigate-ci RUN-ID
   |                     |
   |                     v
   |                  [Fix locally, push]
   |                     |
   |                     v
   |                  [CI re-runs automatically]
   |                     |
   |                     v
   |                  [Verify CI green]
   |
   +-- No issues --> "All systems nominal"

Environment Variables

# Required for Sentry
SENTRY_AUTH_TOKEN   # or SENTRY_MASTER_TOKEN
SENTRY_ORG          # Organization slug

# Auto-detected per project
SENTRY_PROJECT      # From .sentryclirc or .env.local

# Optional for Vercel
VERCEL_TOKEN        # For `vercel logs` access

MCP Configuration (Recommended)

For AI-assisted triage, configure Sentry MCP:

{
  "mcpServers": {
    "sentry": {
      "url": "https://mcp.sentry.dev/mcp",
      "transport": "http"
    }
  }
}

Or local with token:

{
  "mcpServers": {
    "sentry": {
      "command": "npx",
      "args": ["-y", "@sentry/mcp-server"],
      "env": {
        "SENTRY_AUTH_TOKEN": "your-token",
        "SENTRY_ORG": "your-org"
      }
    }
  }
}

Reuses

  • ~/.claude/skills/sentry-observability/scripts/triage_score.sh
  • ~/.claude/skills/sentry-observability/scripts/issue_detail.sh
  • ~/.claude/skills/sentry-observability/scripts/resolve_issue.sh

Related

  • /check-production - The primitive (audit only)
  • /log-production-issues - Create GitHub issues from findings
  • /observability - Full observability setup
  • /sentry-observability - Sentry-specific operations
  • /verify-fix - Verification checklist
  • /delegate - Multi-AI orchestration pattern

Visual Deliverable

After completing the core workflow, generate a visual HTML summary:

  1. Read ~/.claude/skills/visualize/prompts/triage-status.md
  2. Read the template(s) referenced in the prompt
  3. Read ~/.claude/skills/visualize/references/css-patterns.md
  4. Generate self-contained HTML capturing this session's output
  5. Write to ~/.agent/diagrams/triage-{date}.html
  6. Open in browser: open ~/.agent/diagrams/triage-{date}.html
  7. Tell the user the file path

Skip visual output if:

  • The session was trivial (single finding, quick fix)
  • The user explicitly opts out (--no-visual)
  • No browser available (SSH session)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.91%
按下载量换算64

Claude

30.63%
按下载量换算58

Cursor

19.13%
按下载量换算36

Gemini CLI

8.48%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills