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

treeherdertreeherder 搜索

Agent Skill

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

总安装

353

周安装

15

GitHub Stars

3

下载量

124
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jwmossmoz/agent-skills --skill treeherder

简介

treeherder 用于查找、检索和筛选相关信息。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令安装,需结合来源仓库和 README 核验用法。
  • 安装前建议确认权限范围、维护状态及是否会触发联网或文件读写。
  • 当前介绍未说明是否集成特定搜索引擎,需进一步核实技术实现。

SKILL.md

Treeherder

Query Mozilla Treeherder for CI job results, failure analysis, and performance data.

Tools

This skill uses two CLI tools:

ToolRoleInstallStrengths
treeherder-cliPrimarycargo install --git https://github.com/padenot/treeherder-cliFailure analysis, revision comparison, test history, log fetching, artifact downloads
lumberjackthSecondaryuvx --from lumberjackth lj (zero-install)Push listing, failures-by-bug, error suggestions, perf alerts, result/tier/state filtering

Use treeherder-cli for revision-based failure analysis, comparing revisions, test history, log searching, and artifact downloads.

Use lumberjackth for listing pushes, querying failures by bug ID, viewing error lines with bug suggestions, performance alerts, and filtering by result/state/tier.

Quick Start

treeherder-cli (primary)

# Get failed jobs for a revision
treeherder-cli a13b9fc22101 --json

# Filter by job name or platform
treeherder-cli a13b9fc22101 --filter "mochitest" --json
treeherder-cli a13b9fc22101 --platform "linux.*64" --json

# Group failures by test (cross-platform view)
treeherder-cli a13b9fc22101 --group-by test --json

# Compare revisions to find regressions
treeherder-cli a13b9fc22101 --compare b2c3d4e5f678 --json

# Check test history for intermittent detection
treeherder-cli --history "test_audio_playback" --history-count 10 --repo try --json

# Show similar job history for a failed job ID
treeherder-cli --similar-history 543981186 --similar-count 100 --repo try --json

# Fetch logs with pattern matching
treeherder-cli a13b9fc22101 --fetch-logs --pattern "ASSERTION|CRASH" --json

# Download artifacts
treeherder-cli a13b9fc22101 --download-artifacts --artifact-pattern "screenshot|errorsummary"

# Watch mode with notification
treeherder-cli a13b9fc22101 --watch --notify

# Switch repository (default: autoland)
treeherder-cli a13b9fc22101 --repo try --json

lumberjackth (secondary)

# List recent pushes
uvx --from lumberjackth lj pushes autoland -n 10

# Get jobs for a push with result/tier filtering
uvx --from lumberjackth lj jobs autoland --push-id 12345 --result testfailed --tier 1

# Watch jobs with auto-refresh
uvx --from lumberjackth lj jobs try -r abc123 -w -i 60

# Query failures by bug ID
uvx --from lumberjackth lj failures 2012615 -t autoland -p "windows.*24h2"

# Show errors and bug suggestions
uvx --from lumberjackth lj errors autoland 545896732

# Performance alerts
uvx --from lumberjackth lj perf-alerts -r autoland -n 10

# JSON output
uvx --from lumberjackth lj --json jobs autoland --push-id 12345

When to Use Which Tool

TaskToolExample
Analyze failures for a revisiontreeherder-clitreeherder-cli abc123 --json
Compare two revisionstreeherder-clitreeherder-cli abc123 --compare def456 --json
Check test historytreeherder-clitreeherder-cli --history "test_name" --json
Compare a failed job to similar jobstreeherder-clitreeherder-cli --similar-history 543981186 --repo try --json
Fetch/search logstreeherder-clitreeherder-cli abc123 --fetch-logs --pattern "ERROR"
Download artifactstreeherder-clitreeherder-cli abc123 --download-artifacts
Watch a revisiontreeherder-clitreeherder-cli abc123 --watch --notify
Performance/resource datatreeherder-clitreeherder-cli abc123 --perf --json
Check known intermittent bugs for failuresREST APISee "Bug Suggestions for Failing Jobs" below
List recent pusheslumberjackthlj pushes autoland -n 10
Filter by result/state/tierlumberjackthlj jobs autoland --push-id 123 --result testfailed --tier 1
Get single job detailslumberjackthlj job autoland "guid" --logs
Failures by bug IDlumberjackthlj failures 2012615 -t autoland
Error lines + bug suggestionslumberjackthlj errors autoland 545896732
Performance alertslumberjackthlj perf-alerts -r autoland
List repositorieslumberjackthlj repos

Bug Suggestions for Failing Jobs

Neither CLI tool supports bulk querying of known intermittent bugs for failing jobs. Use the Treeherder REST API directly to check whether test failures have associated Bugzilla bugs.

Workflow

  1. Get failing job IDs from treeherder-cli JSON output
  2. Query the bug suggestions endpoint for each job
  3. Aggregate results to identify known intermittents vs novel failures

API Endpoint

GET https://treeherder.mozilla.org/api/project/{repo}/jobs/{job_id}/bug_suggestions/

Returns an array of failure lines with matched Bugzilla bugs:

[
  {
    "search": "TEST-UNEXPECTED-FAIL | test.js | Test timed out",
    "path_end": "path/to/test.js",
    "bugs": {
      "open_recent": [
        {"id": 1940606, "status": "REOPENED", "summary": "Intermittent test.js | ...", "keywords": ["intermittent-failure"]}
      ],
      "all_others": [...]
    },
    "failure_new_in_rev": false
  }
]

Example Script

import urllib.request, json

headers = {'User-Agent': 'Mozilla/5.0'}
repo = "try"
job_id = 553921053

url = f"https://treeherder.mozilla.org/api/project/{repo}/jobs/{job_id}/bug_suggestions/"
req = urllib.request.Request(url, headers=headers)
with urllib.request.urlopen(req) as resp:
    suggestions = json.loads(resp.read())

for s in suggestions:
    test = s.get('path_end', '')
    open_bugs = s['bugs'].get('open_recent', [])
    all_other = s['bugs'].get('all_others', [])
    if open_bugs or all_other:
        print(f"{test}: known bugs")
        for b in open_bugs + all_other:
            print(f"  Bug {b['id']} [{b['status']}] {b['summary'][:100]}")
    else:
        print(f"{test}: NO known bugs")

Bulk Query Pattern

When checking many failing jobs (e.g., validating a new worker image), combine with treeherder-cli --json output:

# 1. Get failing jobs as JSON
treeherder-cli REVISION --repo try --platform "25h2" --json > failures.json

# 2. Extract job IDs and query bug_suggestions for each
python3 bulk_bug_check.py failures.json

Deduplicate by job_type_name to avoid querying the same test suite multiple times across retries. A User-Agent header is required for all API requests.

Key Fields

FieldDescription
path_endTest file path (use as the test identifier)
bugs.open_recentOpen bugs with recent activity (most relevant)
bugs.all_othersOlder or resolved bugs
failure_new_in_revWhether this failure first appeared in this revision
keywordsLook for intermittent-failure to confirm known intermittents

Prerequisites

  • treeherder-cli: cargo install --git https://github.com/padenot/treeherder-cli
  • lumberjackth: No install needed, uses uvx for zero-install execution

No authentication required for either tool.

References

  • references/cli-reference.md - Complete CLI reference for both tools
  • references/sheriff-workflows.md - Sheriff workflow examples
  • references/api-reference.md - REST API documentation
  • references/similar-jobs-comparison.md - Compare failed jobs using Treeherder's similar_jobs API

External Documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.54%
按下载量换算48

Claude

28.51%
按下载量换算35

Cursor

18.1%
按下载量换算22

Gemini CLI

8.61%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills