higress: Skill for Claude Code

.agents/skills/higress-daily-report/SKILL.md

higress-daily-report is a skill for Claude Code, Codex from higress-group/higress. It costs 50 tokens per session (1,958 once invoked), scanned A, original, Apache-2.0.

A workflow for producing daily reports about the Higress open-source project. It tracks GitHub issues, pull requests, comments, follow-ups, and recorded solutions.

In plain words
What is it for?
Use it to review daily project activity and follow the progress of open issues. It helps create dated reports and update a knowledge base of recurring problems and solutions.
Why use it?
It reduces the chance of losing track of new reports or unanswered questions. It also preserves useful problem-solving knowledge for later work.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is higress-group/higress's own configuration. It tells Claude Code and Codex how to work on higress itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything higress configures →

About the project

Higress is a cloud-native API gateway built on Istio and Envoy that routes and manages APIs and can be extended with WebAssembly plugins. It is used to manage APIs for AI models and MCP servers as well as general services, and the catalogue entries provide agent workflows and integrations for operating it.

higress-group/higress · 9,365 stars · on GitHub · higress.ai

Reuse

Borrowing it

Nothing to install: this file belongs to higress-group/higress. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/higress-group/higress/main/.agents/skills/higress-daily-report/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/higress-group/higress

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for higress-daily-report

README.md
[![agentmods](https://agentmods.dev/badge/skills/higress-group/higress/higress-daily-report/github.svg)](https://agentmods.dev/skills/higress-group/higress/higress-daily-report)
Your own site
<a href="https://agentmods.dev/skills/higress-group/higress/higress-daily-report"><img src="https://agentmods.dev/badge/skills/higress-group/higress/higress-daily-report/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for higress-daily-report

Your own site · 80×15
<a href="https://agentmods.dev/skills/higress-group/higress/higress-daily-report"><img src="https://agentmods.dev/badge/skills/higress-group/higress/higress-daily-report.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,958 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00050 $0.01958
Opus 5 $0.00025 $0.00979
Sonnet 5 $0.00010 $0.00392
Haiku 4.5 $0.00005 $0.00196

Measured 11d ago against content hash d0712a94bd95, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

higress-daily-report scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/generate-report.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/higress-daily-report/SKILL.md · 258 lines

How it starts

The opening of the file, as written. The whole thing — 258 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Higress Daily Report

驱动 Higress 社区问题处理的智能工作流。

核心目标

  1. 每日感知 - 追踪新 issues/PRs 和评论动态
  2. 进度跟踪 - 确保每个 issue 被持续跟进直到关闭
  3. 知识沉淀 - 积累问题分析和解决方案,提升处理能力
  4. 闭环驱动 - 通过日报推动问题解决,避免遗忘

数据文件

文件 用途
/root/clawd/memory/higress-issue-tracking.json Issue 追踪状态(评论数、跟进状态)
/root/clawd/memory/higress-knowledge-base.md 知识库:问题模式、解决方案、经验教训
/root/clawd/reports/report_YYYY-MM-DD.md 每日报告存档

工作流程

1. 获取每日数据

# 获取昨日 issues
gh search issues --repo alibaba/higress --created yesterday --json number,title,author,url,body,state,labels --limit 50

# 获取昨日 PRs
gh search prs --repo alibaba/higress --created yesterday --json number,title,author,url,body,state,additions,deletions,reviewDecision --limit 50

2. Issue 追踪状态管理

追踪数据结构 (higress-issue-tracking.json):

{
  "date": "2026-01-28",
  "issues": [
    {
      "number": 3398,
      "title": "Issue 标题",
      "state": "open",
      "author": "username",
      "url": "https://github.com/...",
      "created_at": "2026-01-27",
      "comment_count": 11,
      "last_comment_by": "johnlanni",
      "last_comment_at": "2026-01-28",
      "follow_up_status": "waiting_user",
      "follow_up_note": "等待用户提供请求日志",
      "priority": "high",
      "category": "cors",
      "solution_ref": "KB-001"
    }
  ]
}

跟进状态枚举

  • new - 新 issue,待分析
  • analyzing - 正在分析中
  • waiting_user - 等待用户反馈
  • waiting_review - 等待 PR review
  • in_progress - 修复进行中
  • resolved - 已解决(待关闭)
  • closed - 已关闭
  • wontfix - 不予修复
  • stale - 超过 7 天无活动

3. 知识库结构

知识库 (higress-knowledge-base.md) 用于沉淀经验:

# Higress 问题知识库

## 问题模式索引

### 认证与跨域类
- KB-001: OPTIONS 预检请求被认证拦截
- KB-002: CORS 配置不生效

### 路由配置类
- KB-010: 路由状态 address 为空
- KB-011: 服务发现失败

### 部署运维类
- KB-020: Helm 安装问题
- KB-021: 升级兼容性问题

---

## KB-001: OPTIONS 预检请求被认证拦截

**问题特征**:
- 浏览器 OPTIONS 请求返回 401
- 已配置 CORS 和认证插件

**根因分析**:
Higress 插件执行阶段优先级:AUTHN (310) > AUTHZ (340) > STATS
- key-auth 在 AUTHN 阶段执行
- CORS 在 AUTHZ 阶段执行
- OPTIONS 请求先被 key-auth 拦截,CORS 无机会处理

**解决方案**:
1. **推荐**:修改 CORS 插件 stage 从 AUTHZ 改为 AUTHN
2. **Workaround**:创建 OPTIONS 专用路由,不启用认证
3. **Workaround**:使用实例级 CORS 配置

**关联 Issue**:#3398

**学到的经验**:
- 排查跨域问题时,首先确认插件执行顺序
- Higress 阶段优先级由 phase 决定,不是 priority 数值

Read the full file on GitHub · 258 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 258 lines · 50 tokens per session scan A d0712a94bd95

Subscribe to this mod's changes

higress-daily-report is a skill published in the GitHub repository higress-group/higress (9,365 stars, last pushed yesterday), licensed Apache-2.0. It adds 50 tokens to every session and 1,958 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.