32 lines
843 B
JSON
32 lines
843 B
JSON
{
|
|
"protocol": "jarvis.skill.v1",
|
|
"id": "example.python.text",
|
|
"name": "Python Text Example",
|
|
"version": "1.0.0",
|
|
"description": "Beispiel für einen Remote-Python-Skill im Skill Mesh.",
|
|
"runtime": {
|
|
"type": "process",
|
|
"command": "python3",
|
|
"args": ["main.py"],
|
|
"timeout_ms": 5000
|
|
},
|
|
"permissions": {"system_exec": true},
|
|
"actions": [{
|
|
"name": "uppercase",
|
|
"description": "Wandelt Text in Großbuchstaben um.",
|
|
"triggers": ["großbuchstaben", "uppercase"],
|
|
"input_schema": {
|
|
"type": "object",
|
|
"properties": {"text": {"type": "string"}},
|
|
"required": ["text"],
|
|
"additionalProperties": false
|
|
},
|
|
"output_schema": {
|
|
"type": "object",
|
|
"properties": {"text": {"type": "string"}},
|
|
"required": ["text"],
|
|
"additionalProperties": false
|
|
}
|
|
}]
|
|
}
|