@ignission/slack-task-mcp 0.2.2 → 0.2.3
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 +14 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -193,7 +193,7 @@ https://xxx.slack.com/archives/C12345678/p1234567890123456
|
|
|
193
193
|
| **Claude Agent SDK** | 依頼分析・返信添削の AI 処理 |
|
|
194
194
|
| **Slack Web API** | Slack連携(User Token使用) |
|
|
195
195
|
| **Zod** | スキーマバリデーション |
|
|
196
|
-
| **Cloudflare Workers** | OAuth
|
|
196
|
+
| **Cloudflare Workers** | OAuth認証(トークン交換) |
|
|
197
197
|
|
|
198
198
|
---
|
|
199
199
|
|
|
@@ -201,19 +201,19 @@ https://xxx.slack.com/archives/C12345678/p1234567890123456
|
|
|
201
201
|
|
|
202
202
|
```
|
|
203
203
|
slack-task-mcp/
|
|
204
|
-
├──
|
|
205
|
-
│ ├──
|
|
206
|
-
│
|
|
207
|
-
│
|
|
208
|
-
│
|
|
209
|
-
│
|
|
210
|
-
│
|
|
211
|
-
│
|
|
212
|
-
│
|
|
213
|
-
│
|
|
214
|
-
|
|
215
|
-
│
|
|
216
|
-
|
|
204
|
+
├── src/
|
|
205
|
+
│ ├── index.js # MCPサーバーエントリポイント
|
|
206
|
+
│ ├── cli.js # CLIコマンド
|
|
207
|
+
│ ├── auth.js # OAuth認証(ハイブリッド方式)
|
|
208
|
+
│ ├── credentials.js # 認証情報管理
|
|
209
|
+
│ ├── paths.js # パス管理(XDG準拠)
|
|
210
|
+
│ └── agents/ # Agent SDK エージェント
|
|
211
|
+
│ ├── index.js # 共通設定
|
|
212
|
+
│ ├── analyze.js # 依頼分析
|
|
213
|
+
│ └── draft-reply.js # 返信添削
|
|
214
|
+
├── worker/ # Cloudflare Workers(トークン交換)
|
|
215
|
+
│ ├── index.js
|
|
216
|
+
│ └── wrangler.toml
|
|
217
217
|
└── package.json
|
|
218
218
|
```
|
|
219
219
|
|