first commit
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"fields": [
|
||||
{
|
||||
"key": "serverName",
|
||||
"type": "text",
|
||||
"required": true
|
||||
}
|
||||
]
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"fields": [
|
||||
{
|
||||
"key": "serverName",
|
||||
"label": "Server name",
|
||||
"type": "text",
|
||||
"required": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"$schema": "../../manifests/game-plugin.manifest.schema.json",
|
||||
"id": "game.invalid-form",
|
||||
"name": "Invalid Form Fixture",
|
||||
"description": "Fixture with a create form schema violation.",
|
||||
"version": "0.1.0",
|
||||
"kind": "game-plugin",
|
||||
"server": {
|
||||
"type": "invalid-form",
|
||||
"displayName": "Invalid Form Fixture",
|
||||
"createFormSchema": "create-form.invalid.json"
|
||||
},
|
||||
"capabilities": ["process.start", "process.stop", "logs.read"],
|
||||
"permissions": ["server.read", "server.lifecycle", "server.logs.read"],
|
||||
"actions": {
|
||||
"install": "actions/install.json",
|
||||
"start": "actions/start.json",
|
||||
"stop": "actions/stop.json"
|
||||
}
|
||||
}
|
||||
+23
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"$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"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user