24 lines
713 B
JSON
24 lines
713 B
JSON
{
|
|
"$schema": "../../manifests/game-plugin.manifest.schema.json",
|
|
"id": "game.unsafe",
|
|
"name": "Unsafe Fixture",
|
|
"description": "Requests direct run socket access and raw AI key material.",
|
|
"version": "0.1.0",
|
|
"kind": "game-plugin",
|
|
"server": {
|
|
"type": "unsafe",
|
|
"displayName": "Unsafe Fixture",
|
|
"createFormSchema": "create-form.valid.json"
|
|
},
|
|
"capabilities": ["process.start", "process.stop", "logs.read", "ai.invoke"],
|
|
"permissions": ["server.read", "server.lifecycle", "server.logs.read", "ai.invoke"],
|
|
"actions": {
|
|
"install": "actions/install.json",
|
|
"start": "actions/start.json",
|
|
"stop": "actions/stop.json"
|
|
},
|
|
"ai": {
|
|
"purposes": ["logs.diagnose"]
|
|
}
|
|
}
|