Skip to content

Commit 88361ff

Browse files
committed
docs: reorder agent skills section and fix product name casing
1 parent c514845 commit 88361ff

2 files changed

Lines changed: 52 additions & 52 deletions

File tree

README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,32 @@ Download the latest release for your platform from [GitHub Releases](https://git
4040
| `FLASHDUTY_VERSION` | Install a specific version (e.g. `v0.1.2`) | latest |
4141
| `FLASHDUTY_INSTALL_DIR` | Custom install directory | `/usr/local/bin` (shell), `~\.flashduty\bin` (PowerShell) |
4242
43+
## Agent Skills
44+
45+
Flashduty CLI ships with 9 agent skills that teach AI coding agents how to operate Flashduty from your terminal. Compatible with 41+ agents including Claude Code, Cursor, GitHub Copilot, Codex, Gemini CLI, Windsurf, and more.
46+
47+
```bash
48+
npx skills add flashcatcloud/flashduty-cli -y -g
49+
```
50+
51+
The installer auto-detects which agents you have and installs skills to all of them.
52+
53+
### Available Skills
54+
55+
| Skill | Scope |
56+
|-------|-------|
57+
| `flashduty-shared` | Foundation: authentication, 3-layer model, global flags, safety rules |
58+
| `flashduty-incident` | Incident lifecycle: triage, investigate, resolve, merge, snooze, reassign |
59+
| `flashduty-alert` | Alert and alert event investigation: drill down, trace, merge |
60+
| `flashduty-change` | Change event tracking and deployment frequency trends |
61+
| `flashduty-oncall` | On-call schedule queries: who is on call, shift details |
62+
| `flashduty-channel` | Channel and escalation rule lookups |
63+
| `flashduty-insight` | Analytics: MTTA/MTTR, noise reduction, notification trends |
64+
| `flashduty-admin` | Team/member lookups and audit log search |
65+
| `flashduty-template` | Notification template validation and preview |
66+
67+
---
68+
4369
## Quick Start
4470

4571
### 1. Authenticate
@@ -242,32 +268,6 @@ flashduty incident list --json | jq '.[].title'
242268

243269
---
244270

245-
## Agent Skills
246-
247-
Flashduty CLI ships with 9 [Claude Code agent skills](https://docs.anthropic.com/en/docs/claude-code) that teach AI agents how to operate Flashduty through the CLI. Install them globally to enable AI-assisted incident management:
248-
249-
```bash
250-
npx skills add flashcatcloud/flashduty-cli -y -g
251-
```
252-
253-
After installation, Claude Code will automatically discover and invoke the appropriate skill based on your requests.
254-
255-
### Available Skills
256-
257-
| Skill | Scope |
258-
|-------|-------|
259-
| `flashduty-shared` | Foundation: authentication, 3-layer model, global flags, safety rules |
260-
| `flashduty-incident` | Incident lifecycle: triage, investigate, resolve, merge, snooze, reassign |
261-
| `flashduty-alert` | Alert and alert event investigation: drill down, trace, merge |
262-
| `flashduty-change` | Change event tracking and deployment frequency trends |
263-
| `flashduty-oncall` | On-call schedule queries: who is on call, shift details |
264-
| `flashduty-channel` | Channel and escalation rule lookups |
265-
| `flashduty-insight` | Analytics: MTTA/MTTR, noise reduction, notification trends |
266-
| `flashduty-admin` | Team/member lookups and audit log search |
267-
| `flashduty-template` | Notification template validation and preview |
268-
269-
---
270-
271271
## Development
272272

273273
### Prerequisites

README_zh.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,32 @@ go install github.com/flashcatcloud/flashduty-cli/cmd/flashduty@latest
4040
| `FLASHDUTY_VERSION` | 安装指定版本(如 `v0.1.2`| 最新版 |
4141
| `FLASHDUTY_INSTALL_DIR` | 自定义安装目录 | `/usr/local/bin`(Shell)、`~\.flashduty\bin`(PowerShell) |
4242
43+
## Agent Skills(AI 代理技能)
44+
45+
Flashduty CLI 内置 9 个代理技能,让 AI 编程代理能够通过 CLI 操作 Flashduty 平台。兼容 41+ 编程代理,包括 Claude Code、Cursor、GitHub Copilot、Codex、Gemini CLI、Windsurf 等。
46+
47+
```bash
48+
npx skills add flashcatcloud/flashduty-cli -y -g
49+
```
50+
51+
安装器会自动检测已安装的代理并为其安装技能。
52+
53+
### 可用技能
54+
55+
| 技能 | 范围 |
56+
|------|------|
57+
| `flashduty-shared` | 基础:认证、三层降噪模型、全局参数、安全规则 |
58+
| `flashduty-incident` | 故障生命周期:分诊、调查、解决、合并、暂停、转派 |
59+
| `flashduty-alert` | 告警与告警事件调查:下钻、追踪、合并 |
60+
| `flashduty-change` | 变更事件追踪与部署频率趋势 |
61+
| `flashduty-oncall` | 值班查询:当前值班人、排班详情 |
62+
| `flashduty-channel` | 协作空间与升级规则查询 |
63+
| `flashduty-insight` | 分析:MTTA/MTTR、降噪率、通知趋势 |
64+
| `flashduty-admin` | 团队/成员查询与审计日志搜索 |
65+
| `flashduty-template` | 通知模板验证与预览 |
66+
67+
---
68+
4369
## 快速开始
4470

4571
### 1. 认证
@@ -242,32 +268,6 @@ flashduty incident list --json | jq '.[].title'
242268

243269
---
244270

245-
## Agent Skills(AI 代理技能)
246-
247-
Flashduty CLI 内置 9 个 [Claude Code 代理技能](https://docs.anthropic.com/en/docs/claude-code),让 AI 代理能够通过 CLI 操作 Flashduty 平台。全局安装技能:
248-
249-
```bash
250-
npx skills add flashcatcloud/flashduty-cli -y -g
251-
```
252-
253-
安装后,Claude Code 会根据你的请求自动发现并调用对应的技能。
254-
255-
### 可用技能
256-
257-
| 技能 | 范围 |
258-
|------|------|
259-
| `flashduty-shared` | 基础:认证、三层降噪模型、全局参数、安全规则 |
260-
| `flashduty-incident` | 故障生命周期:分诊、调查、解决、合并、暂停、转派 |
261-
| `flashduty-alert` | 告警与告警事件调查:下钻、追踪、合并 |
262-
| `flashduty-change` | 变更事件追踪与部署频率趋势 |
263-
| `flashduty-oncall` | 值班查询:当前值班人、排班详情 |
264-
| `flashduty-channel` | 协作空间与升级规则查询 |
265-
| `flashduty-insight` | 分析:MTTA/MTTR、降噪率、通知趋势 |
266-
| `flashduty-admin` | 团队/成员查询与审计日志搜索 |
267-
| `flashduty-template` | 通知模板验证与预览 |
268-
269-
---
270-
271271
## 开发
272272

273273
### 前置条件

0 commit comments

Comments
 (0)