Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计提醒

github-triageGitHub triage 安全

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

3,956

周安装

150

GitHub Stars

公开资料未说明

下载量

1,572
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install github-triage

简介

自动分类 GitHub 通知邮件,优先处理 CI 故障与安全警报。

  • 适合在 OpenClaw 中需要过滤海量通知、提升响应效率时使用。
  • 按紧急程度分层路由,减少人为遗漏关键事件的风险。
  • 安装命令:openclaw skills install github-triage;需配置邮箱 webhook 或 IMAP 接入。
  • 建议限制 token 权限仅限只读通知接口访问。

SKILL.md

name
github-triage
description
GitHub notification auto-triage via email channel. Classifies incoming GitHub notification emails into three tiers: (1) CI failures and security alerts → immediate forward with [紧急] tag, (2) PR reviews and merges → buffered for daily summary, (3) everything else → silent archive. Use when: an inbound email on the ghbot sub-mailbox is a GitHub notification. Requires: mail-cli, email channel plugin (@clawmail/email). NOT for: non-GitHub emails or manual email composition.
metadata
version
1.0.0

GitHub Triage

Automatically classify and route GitHub notification emails.

Prerequisites

  • mail-cli installed (npm i -g @clawemail/mail-cli) with API key configured
  • Email channel plugin (@clawmail/email) enabled in OpenClaw
  • A dedicated sub-mailbox for GitHub notifications (created via setup script)

Setup

Run the setup script to create the sub-mailbox:

bash scripts/setup.sh [prefix]
  • prefix — sub-mailbox prefix (default: ghbot)

Main email (for receiving urgent forwards and daily summaries) is automatically resolved at runtime via:

mail-cli clawemail master-user

After setup:

  1. Add the new sub-mailbox as an email channel account in openclaw.jsonchannels.email.accounts
  2. Go to GitHub → Settings → Notifications → Custom routing → set email to <workspace>.ghbot@claw.163.com
  3. Restart OpenClaw gateway

Triage Workflow

When an email arrives on the ghbot account:

  1. Identify priority — read subject and body, match against rules in references/triage-rules.md
  2. Act on priority:

- P0 (urgent): Resolve main email via mail-cli clawemail master-user, then forward immediately via mail-cli --profile ghbot compose send; prepend [紧急] to subject - P1 (buffer): Append to today's buffer file at memory/gh-triage-buffer-YYYY-MM-DD.json; do NOT reply or forward - P2 (archive): Mark as read via mail-cli --profile ghbot mail mark --ids <id> --fid 1 --read; no reply

Forwarding (P0)

First, resolve the main email:

MAIN_EMAIL=$(mail-cli clawemail master-user)

Then forward:

mail-cli --profile ghbot compose send \
  --to "$MAIN_EMAIL" \
  --subject "[紧急] <original-subject>" \
  --body "<original-body>" \
  --html

Buffering (P1)

Append entry to workspace file memory/gh-triage-buffer-YYYY-MM-DD.json:

[
  {
    "repo": "owner/repo",
    "type": "review_request",
    "title": "PR title",
    "number": 123,
    "url": "https://github.com/...",
    "author": "username",
    "receivedAt": "ISO-8601"
  }
]

Read existing file first (create [] if missing), append new entry, write back.

Archiving (P2)

mail-cli --profile ghbot mail mark --ids "<message-id>" --fid 1 --read

No reply, no forward.

Daily Summary

A cron job fires daily at the configured time (default 0 18 * * *). The job:

  1. Resolve main email: MAIN_EMAIL=$(mail-cli clawemail master-user)
  2. Read memory/gh-triage-buffer-YYYY-MM-DD.json for today
  3. If empty or missing → do nothing
  4. Group entries by repo and type
  5. Compose summary email following format in references/triage-rules.md → "Daily Summary Format"
  6. Send via mail-cli --profile ghbot compose send --to "$MAIN_EMAIL" --subject "[GitHub 日报] ..." --body "..." --html
  7. After successful send, rename buffer file to memory/gh-triage-buffer-YYYY-MM-DD.sent.json

Cron Setup

Create the daily summary cron job in OpenClaw:

schedule: { kind: "cron", expr: "0 18 * * *", tz: "Asia/Shanghai" }
sessionTarget: "isolated"
payload: { kind: "agentTurn", message: "Run GitHub triage daily summary. Read today's buffer file, compose and send the summary email." }

Configuration

  • main_email — automatically resolved at runtime via mail-cli clawemail master-user; no manual configuration needed
  • summary_time — cron expression for daily summary (default: 0 18 * * *)

Detailed Rules

See references/triage-rules.md for complete matching patterns and output formats.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.27%
按下载量换算1,388

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills