@moon791017/neo-skills 1.0.7 → 1.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -34
- package/gemini-extension.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -66,50 +66,36 @@
|
|
|
66
66
|
|
|
67
67
|
## 📦 安裝與使用
|
|
68
68
|
|
|
69
|
-
|
|
69
|
+
本套件支援多種 AI Agent 環境。請依據您的 CLI 工具執行對應指令:
|
|
70
70
|
|
|
71
|
-
###
|
|
71
|
+
### 🛠️ Gemini CLI
|
|
72
72
|
|
|
73
|
-
#### 方案 A:透過 Claude Code CLI 安裝
|
|
74
|
-
這是最簡單的方式,直接讓 Claude Code 管理擴充:
|
|
75
73
|
```bash
|
|
76
|
-
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
#### 方案 B:透過 npx 安裝
|
|
80
|
-
```bash
|
|
81
|
-
npx @moon791017/neo-skills install-claude-skills
|
|
74
|
+
gemini extension install https://github.com/Benknightdark/neo-skills --auto-update
|
|
82
75
|
```
|
|
83
76
|
|
|
84
|
-
|
|
85
|
-
```bash
|
|
86
|
-
npm i @moon791017/neo-skills -g
|
|
87
|
-
install-claude-skills
|
|
88
|
-
```
|
|
77
|
+
### 🤖 Claude Code
|
|
89
78
|
|
|
90
|
-
|
|
79
|
+
| 說明 | 執行指令 |
|
|
80
|
+
| :--- | :--- |
|
|
81
|
+
| Claude 內建外掛安裝 | `claude plugin add https://github.com/Benknightdark/neo-skills` |
|
|
82
|
+
| 透過 `npx` 執行安裝腳本 | `npx @moon791017/neo-skills install-claude-skills` |
|
|
83
|
+
| `npm` 全域安裝後執行 | `npm i @moon791017/neo-skills -g` <br> `install-claude-skills` |
|
|
91
84
|
|
|
92
|
-
|
|
93
|
-
gemini extension install https://github.com/Benknightdark/neo-skills --auto-update
|
|
94
|
-
```
|
|
85
|
+
## 💡 常用指令範例
|
|
95
86
|
|
|
87
|
+
您可以直接對 AI 代理下達以下指令或在對話中描述需求:
|
|
96
88
|
|
|
97
|
-
|
|
89
|
+
| 需求場景 | 推薦指令 / 咒語範例 |
|
|
90
|
+
| :--- | :--- |
|
|
91
|
+
| **生成 Commit Message** | `幫我 commit 變更` 或 `/neo:git-commit` |
|
|
92
|
+
| **設定 .NET CI Pipeline** | `幫這個專案設定 CI 流程` 或 `/neo:ci-dotnet` |
|
|
93
|
+
| **部署至 IIS** | `部署到 IIS,站台名稱為 MySite` 或 `/neo:cd-iis` |
|
|
94
|
+
| **需求釐清與規格化** | `我想做一個電商網站` 或 `/neo:clarification` |
|
|
95
|
+
| **全方位程式碼審查** | `幫我 code review 剛才的修改` 或 `/neo:code-review` |
|
|
96
|
+
| **生成 C# Interface** | `幫我針對這個 class 產生介面` 或 `/neo:dotnet-gen-interface` |
|
|
97
|
+
| **技術解析與架構洞察** | `分析這個專案的架構` 或 `/neo:explain` |
|
|
98
98
|
|
|
99
|
-
您可以直接對 AI 代理下達以下指令:
|
|
100
|
-
|
|
101
|
-
* **生成 Commit Message**:
|
|
102
|
-
> "幫我 commit 這些變更" 或 `/neo:git-commit`
|
|
103
|
-
* **設定 .NET CI Pipeline**:
|
|
104
|
-
> "幫這個專案設定 CI 流程" 或 `/neo:ci-dotnet`
|
|
105
|
-
* **部署至 IIS**:
|
|
106
|
-
> "我要部署到 IIS,站台名稱是 MySite" 或 `/neo:cd-iis`
|
|
107
|
-
* **釐清模糊需求**:
|
|
108
|
-
> "我想做一個電商網站" 或 `/neo:clarification`
|
|
109
|
-
* **程式碼審查**:
|
|
110
|
-
> "幫我 code review 剛才的修改" 或 `/neo:code-review`
|
|
111
|
-
* **生成 C# Interface**:
|
|
112
|
-
> "幫我針對這個 class 產生介面" 或 `/neo:dotnet-gen-interface`
|
|
113
99
|
|
|
114
100
|
## 🛠 開發指南
|
|
115
101
|
|
package/gemini-extension.json
CHANGED