Files
leon-ai--leon/skills/native/is_it_down_skill/skill.json
T
2026-07-13 12:44:08 +08:00

26 lines
663 B
JSON

{
"$schema": "../../../schemas/skill-schemas/skill.json",
"name": "Is It Down",
"icon_name": "wifi-off-line",
"bridge": "python",
"version": "1.0.0",
"description": "Ping domain names and gives the online state.",
"author": {
"name": "Louis Grenard",
"email": "louis@getleon.ai",
"url": "https://github.com/louistiti"
},
"actions": {
"run": {
"type": "logic",
"description": "Check whether a website or domain name is reachable.",
"parameters": {
"domain": {
"type": "string",
"description": "The website domain or URL to test, for example github.com."
}
}
}
}
}