@shuji-bonji/rfcxml-mcp 0.1.3 → 0.2.0
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.ja.md +15 -0
- package/README.md +15 -0
- package/package.json +1 -1
package/README.ja.md
CHANGED
|
@@ -246,6 +246,21 @@ RFC 8650 (2019年12月) 以降は公式 RFCXML v3 形式で提供されていま
|
|
|
246
246
|
}
|
|
247
247
|
```
|
|
248
248
|
|
|
249
|
+
## サンプル
|
|
250
|
+
|
|
251
|
+
[examples/](./examples/) ディレクトリに `generate_checklist` ツールで生成したチェックリストのサンプルがあります:
|
|
252
|
+
|
|
253
|
+
| RFC | プロトコル | ソース |
|
|
254
|
+
|-----|----------|--------|
|
|
255
|
+
| [RFC 6455](./examples/rfc6455-websocket-checklist.md) | WebSocket | テキスト(フォールバック) |
|
|
256
|
+
| [RFC 9293](./examples/rfc9293-tcp-checklist.md) | TCP | RFCXML |
|
|
257
|
+
| [RFC 7540](./examples/rfc7540-http2-checklist.md) | HTTP/2 | テキスト(フォールバック) |
|
|
258
|
+
|
|
259
|
+
**Claude への依頼例:**
|
|
260
|
+
```
|
|
261
|
+
RFC 9293 (TCP) の実装チェックリストを生成してください。
|
|
262
|
+
```
|
|
263
|
+
|
|
249
264
|
## 内部アーキテクチャ
|
|
250
265
|
|
|
251
266
|
### モジュール構成
|
package/README.md
CHANGED
|
@@ -244,6 +244,21 @@ Role: Client
|
|
|
244
244
|
}
|
|
245
245
|
```
|
|
246
246
|
|
|
247
|
+
## Examples
|
|
248
|
+
|
|
249
|
+
See the [examples/](./examples/) directory for complete checklist samples:
|
|
250
|
+
|
|
251
|
+
| RFC | Protocol | Source |
|
|
252
|
+
|-----|----------|--------|
|
|
253
|
+
| [RFC 6455](./examples/rfc6455-websocket-checklist.md) | WebSocket | Text (fallback) |
|
|
254
|
+
| [RFC 9293](./examples/rfc9293-tcp-checklist.md) | TCP | RFCXML |
|
|
255
|
+
| [RFC 7540](./examples/rfc7540-http2-checklist.md) | HTTP/2 | Text (fallback) |
|
|
256
|
+
|
|
257
|
+
**Example prompt for Claude:**
|
|
258
|
+
```
|
|
259
|
+
Generate an implementation checklist for RFC 9293 (TCP).
|
|
260
|
+
```
|
|
261
|
+
|
|
247
262
|
## Internal Architecture
|
|
248
263
|
|
|
249
264
|
### Module Structure
|