-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
30 lines (30 loc) · 742 Bytes
/
Copy pathplugin.json
File metadata and controls
30 lines (30 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"id": "executable-plugin",
"name": "Executable Plugin Example",
"version": "0.1.0",
"runtime": {
"kind": "node-subprocess",
"entry": "handler.mjs",
"timeout_ms": 5000,
"env_keys": ["GOD_CODE_EXECUTABLE_PLUGIN_TOKEN"]
},
"tools": [
{
"name": "plugin.executable.echo",
"description": "Echo a value through a plugin-owned subprocess handler.",
"input_schema": {
"type": "object",
"properties": {
"value": {
"type": "string"
}
},
"required": ["value"],
"additionalProperties": false
}
}
],
"promptFragments": [
"Use plugin.executable.echo when the user asks to echo through the executable plugin."
]
}