Remove obsolete optimization and resource monitoring documentation; update scenario management to ensure user directory saving and template protection.

This commit is contained in:
2025-08-06 17:33:03 +02:00
parent a31b01238a
commit 1e8123efdb
11 changed files with 546 additions and 521 deletions
+74
View File
@@ -0,0 +1,74 @@
{
"name": "Gaming Example",
"steps": [
{
"name": "Attack",
"condition": "OR",
"images": [],
"actions": [
{
"type": "key",
"params": {
"key": "Space"
}
},
{
"type": "delay",
"params": {
"duration": 0.1
}
}
]
},
{
"name": "Use Ability",
"condition": "OR",
"images": [],
"actions": [
{
"type": "key",
"params": {
"key": "1"
}
},
{
"type": "delay",
"params": {
"duration": 2.0
}
}
]
},
{
"name": "Move Character",
"condition": "OR",
"images": [],
"actions": [
{
"type": "key",
"params": {
"key": "W"
}
},
{
"type": "delay",
"params": {
"duration": 0.5
}
},
{
"type": "key",
"params": {
"key": "A"
}
},
{
"type": "delay",
"params": {
"duration": 0.2
}
}
]
}
]
}
@@ -0,0 +1,25 @@
{
"name": "Simple Click Example",
"steps": [
{
"name": "Click on Button",
"condition": "OR",
"images": [],
"actions": [
{
"type": "click",
"params": {
"button": "left",
"pos_type": "center"
}
},
{
"type": "delay",
"params": {
"duration": 1.0
}
}
]
}
]
}
@@ -0,0 +1,63 @@
{
"name": "Web Browser Example",
"steps": [
{
"name": "Refresh Page",
"condition": "OR",
"images": [],
"actions": [
{
"type": "key",
"params": {
"key": "F5"
}
},
{
"type": "delay",
"params": {
"duration": 2.0
}
}
]
},
{
"name": "Scroll Down",
"condition": "OR",
"images": [],
"actions": [
{
"type": "scroll",
"params": {
"direction": "down",
"amount": 300
}
},
{
"type": "delay",
"params": {
"duration": 0.5
}
}
]
},
{
"name": "Go Back",
"condition": "OR",
"images": [],
"actions": [
{
"type": "key",
"params": {
"key": "Alt+Left"
}
},
{
"type": "delay",
"params": {
"duration": 1.0
}
}
]
}
]
}