返回 DeepSeek-Reasonix
reasonix-plugin.json
根目录 / sdk / go / examples / starterextension / reasonix-plugin.json
1 {
2 "apiVersion": "reasonix.io/plugin/v2",
3 "name": "starter-extension",
4 "version": "0.1.0",
5 "description": "Minimal Reasonix Extension Protocol sidecar",
6 "provides": [
7 {
8 "namespace": "plugin/starter-extension",
9 "kind": "interceptors",
10 "id": "default",
11 "version": "1.0.0"
12 }
13 ],
14 "contributes": {},
15 "runtime": {
16 "command": "${REASONIX_PLUGIN_ROOT}/bin/starter-extension.exe",
17 "args": [],
18 "env": {},
19 "required": false,
20 "priority": 0,
21 "intercepts": ["input.receive"],
22 "replaces": [],
23 "capabilities": ["interceptors"]
24 }
25 }
26
26 lines JSON