first commit

This commit is contained in:
npc0-hue
2026-07-11 14:56:10 +08:00
commit 7e05d0a4e7
660 changed files with 78119 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
{
"fields": [
{
"key": "serverName",
"type": "text",
"required": true
}
]
}
+10
View File
@@ -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
View File
@@ -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"]
}
}