chore(repo): add schemas to repo.json files
Some checks failed
Actions / Lint Code (Ruff & Pylint) (push) Failing after 46s
Actions / Build Documentation (MkDocs) (push) Failing after 24s

This commit is contained in:
cswimr 2025-02-06 15:10:19 -06:00
parent 7593aace00
commit 9b96a15621
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
8 changed files with 56 additions and 89 deletions

View file

@ -1,17 +1,14 @@
{ {
"author" : ["cswimr"], "$schema": "https://raw.githubusercontent.com/Cog-Creators/Red-DiscordBot/refs/heads/V3/develop/schema/red_cog_repo.schema.json",
"install_msg" : "Thank you for installing AntiPolls!\nYou can find the source code of this cog [here](https://coastalcommits.com/cswimr/SeaCogs).", "author": ["cswimr"],
"name" : "AntiPolls", "install_msg": "Thank you for installing AntiPolls!\nYou can find the source code of this cog [here](https://coastalcommits.com/cswimr/SeaCogs).",
"short" : "AntiPolls deletes messages that contain polls.", "name": "AntiPolls",
"description" : "AntiPolls deletes messages that contain polls, with a configurable per-guild role and channel whitelist and support for default Discord permissions (Manage Messages).", "short": "AntiPolls deletes messages that contain polls.",
"end_user_data_statement" : "This cog does not store any user data.", "description": "AntiPolls deletes messages that contain polls, with a configurable per-guild role and channel whitelist and support for default Discord permissions (Manage Messages).",
"end_user_data_statement": "This cog does not store any user data.",
"hidden": true, "hidden": true,
"disabled": false, "disabled": false,
"min_bot_version": "3.5.0", "min_bot_version": "3.5.0",
"min_python_version": [3, 10, 0], "min_python_version": [3, 10, 0],
"tags": [ "tags": ["automod", "automoderation", "polls"]
"automod",
"automoderation",
"polls"
]
} }

View file

@ -1,7 +1,6 @@
{ {
"author": [ "$schema": "https://raw.githubusercontent.com/Cog-Creators/Red-DiscordBot/refs/heads/V3/develop/schema/red_cog_repo.schema.json",
"cswimr" "author": ["cswimr"],
],
"install_msg": "Thank you for installing Backup!\nYou can find the source code of this cog [here](https://coastalcommits.com/cswimr/SeaCogs).", "install_msg": "Thank you for installing Backup!\nYou can find the source code of this cog [here](https://coastalcommits.com/cswimr/SeaCogs).",
"name": "Backup", "name": "Backup",
"short": "A utility to make reinstalling repositories and cogs after migrating the bot far easier.", "short": "A utility to make reinstalling repositories and cogs after migrating the bot far easier.",
@ -11,15 +10,6 @@
"disabled": false, "disabled": false,
"min_bot_version": "3.5.6", "min_bot_version": "3.5.6",
"max_bot_version": "3.5.14", "max_bot_version": "3.5.14",
"min_python_version": [ "min_python_version": [3, 9, 0],
3, "tags": ["utility", "backup", "restore", "migration"]
9,
0
],
"tags": [
"utility",
"backup",
"restore",
"migration"
]
} }

View file

@ -1,18 +1,15 @@
{ {
"author" : ["cswimr"], "$schema": "https://raw.githubusercontent.com/Cog-Creators/Red-DiscordBot/refs/heads/V3/develop/schema/red_cog_repo.schema.json",
"install_msg" : "Thank you for installing Bible!\nThis cog requires setting an API key for API.Bible. Please read the [documentation](https://seacogs.coastalcommits.com/bible/#setup) for more information.\nYou can find the source code of this cog [here](https://coastalcommits.com/cswimr/SeaCogs).", "author": ["cswimr"],
"name" : "Bible", "install_msg": "Thank you for installing Bible!\nThis cog requires setting an API key for API.Bible. Please read the [documentation](https://seacogs.coastalcommits.com/bible/#setup) for more information.\nYou can find the source code of this cog [here](https://coastalcommits.com/cswimr/SeaCogs).",
"short" : "Retrieve Bible verses from API.Bible.", "name": "Bible",
"description" : "Retrieve Bible verses from the API.Bible API. This cog requires an API.Bible api key.", "short": "Retrieve Bible verses from API.Bible.",
"end_user_data_statement" : "This cog does not store end user data, however it does send the following data to the API.Bible API:\n- The bot user's ID\n- The timestamp of the invoking message\n- The hashed user id of the invoking user", "description": "Retrieve Bible verses from the API.Bible API. This cog requires an API.Bible api key.",
"end_user_data_statement": "This cog does not store end user data, however it does send the following data to the API.Bible API:\n- The bot user's ID\n- The timestamp of the invoking message\n- The hashed user id of the invoking user",
"hidden": false, "hidden": false,
"disabled": false, "disabled": false,
"min_bot_version": "3.5.0", "min_bot_version": "3.5.0",
"min_python_version": [3, 10, 0], "min_python_version": [3, 10, 0],
"requirements": ["numpy", "pillow"], "requirements": ["numpy", "pillow"],
"tags": [ "tags": ["fun", "utility", "api"]
"fun",
"utility",
"api"
]
} }

View file

@ -1,16 +1,15 @@
{ {
"author" : ["cswimr"], "$schema": "https://raw.githubusercontent.com/Cog-Creators/Red-DiscordBot/refs/heads/V3/develop/schema/red_cog_repo.schema.json",
"install_msg" : "Thank you for installing Emoji!", "author": ["cswimr"],
"name" : "Emoji", "install_msg": "Thank you for installing Emoji!",
"short" : "Retrieve information about emojis.", "name": "Emoji",
"description" : "Retrieve information about emojis.", "short": "Retrieve information about emojis.",
"end_user_data_statement" : "This cog does not store end user data.", "description": "Retrieve information about emojis.",
"end_user_data_statement": "This cog does not store end user data.",
"hidden": false, "hidden": false,
"disabled": false, "disabled": false,
"min_bot_version": "3.5.0", "min_bot_version": "3.5.0",
"min_python_version": [3, 10, 0], "min_python_version": [3, 10, 0],
"requirements": ["colorthief"], "requirements": ["colorthief"],
"tags": [ "tags": ["utility"]
"utility"
]
} }

View file

@ -1,7 +1,6 @@
{ {
"author": [ "$schema": "https://raw.githubusercontent.com/Cog-Creators/Red-DiscordBot/refs/heads/V3/develop/schema/red_cog_repo.schema.json",
"cswimr" "author": ["cswimr"],
],
"install_msg": "Thank you for installing HotReload! Please see the [documentation](https://seacogs.coastalcommits.com/hotreload) to get started.", "install_msg": "Thank you for installing HotReload! Please see the [documentation](https://seacogs.coastalcommits.com/hotreload) to get started.",
"name": "HotReload", "name": "HotReload",
"short": "Automatically reload cogs in local cog paths on file change.", "short": "Automatically reload cogs in local cog paths on file change.",
@ -10,16 +9,7 @@
"hidden": false, "hidden": false,
"disabled": false, "disabled": false,
"min_bot_version": "3.5.0", "min_bot_version": "3.5.0",
"min_python_version": [ "min_python_version": [3, 8, 0],
3, "requirements": ["watchdog"],
8, "tags": ["utility", "development"]
0
],
"requirements": [
"watchdog"
],
"tags": [
"utility",
"development"
]
} }

View file

@ -1,17 +1,14 @@
{ {
"author" : ["cswimr"], "$schema": "https://raw.githubusercontent.com/Cog-Creators/Red-DiscordBot/refs/heads/V3/develop/schema/red_cog_repo.schema.json",
"install_msg" : "Thank you for installing Nerdify!\nYou can find the source code of this cog [here](https://coastalcommits.com/cswimr/SeaCogs). Based off of PhasecoreX's [UwU](<https://github.com/PhasecoreX/PCXCogs/tree/master/uwu>) cog.", "author": ["cswimr"],
"name" : "Nerdify", "install_msg": "Thank you for installing Nerdify!\nYou can find the source code of this cog [here](https://coastalcommits.com/cswimr/SeaCogs). Based off of PhasecoreX's [UwU](<https://github.com/PhasecoreX/PCXCogs/tree/master/uwu>) cog.",
"short" : "Nerdify your text!", "name": "Nerdify",
"description" : "Nerdify your text!", "short": "Nerdify your text!",
"end_user_data_statement" : "This cog does not store end user data.", "description": "Nerdify your text!",
"end_user_data_statement": "This cog does not store end user data.",
"hidden": false, "hidden": false,
"disabled": false, "disabled": false,
"min_bot_version": "3.5.0", "min_bot_version": "3.5.0",
"min_python_version": [3, 8, 0], "min_python_version": [3, 8, 0],
"tags": [ "tags": ["fun", "text", "meme"]
"fun",
"text",
"meme"
]
} }

View file

@ -1,19 +1,15 @@
{ {
"author" : ["cswimr"], "$schema": "https://raw.githubusercontent.com/Cog-Creators/Red-DiscordBot/refs/heads/V3/develop/schema/red_cog_repo.schema.json",
"install_msg" : "Thank you for installing Pterodactyl!\nYou can find the source code of this cog [here](https://coastalcommits.com/cswimr/SeaCogs).\nDocumentation can be found [here](https://seacogs.coastalcommits.com/pterodactyl ).", "author": ["cswimr"],
"name" : "Pterodactyl", "install_msg": "Thank you for installing Pterodactyl!\nYou can find the source code of this cog [here](https://coastalcommits.com/cswimr/SeaCogs).\nDocumentation can be found [here](https://seacogs.coastalcommits.com/pterodactyl ).",
"short" : "Interface with Pterodactyl through websockets.", "name": "Pterodactyl",
"description" : "Interface with Pterodactyl through websockets.", "short": "Interface with Pterodactyl through websockets.",
"end_user_data_statement" : "This cog does not store end user data.", "description": "Interface with Pterodactyl through websockets.",
"end_user_data_statement": "This cog does not store end user data.",
"hidden": false, "hidden": false,
"disabled": false, "disabled": false,
"min_bot_version": "3.5.0", "min_bot_version": "3.5.0",
"min_python_version": [3, 8, 0], "min_python_version": [3, 8, 0],
"requirements": ["git+https://github.com/cswimr/pydactyl", "websockets"], "requirements": ["git+https://github.com/cswimr/pydactyl", "websockets"],
"tags": [ "tags": ["pterodactyl", "minecraft", "server", "management"]
"pterodactyl",
"minecraft",
"server",
"management"
]
} }

View file

@ -1,10 +1,11 @@
{ {
"author" : ["cswimr"], "$schema": "https://raw.githubusercontent.com/Cog-Creators/Red-DiscordBot/refs/heads/V3/develop/schema/red_cog_repo.schema.json",
"install_msg" : "Thank you for installing SeaUtils!\nYou can find the source code of this cog [here](https://coastalcommits.com/cswimr/SeaCogs).", "author": ["cswimr"],
"name" : "SeaUtils", "install_msg": "Thank you for installing SeaUtils!\nYou can find the source code of this cog [here](https://coastalcommits.com/cswimr/SeaCogs).",
"short" : "A collection of useful utilities.", "name": "SeaUtils",
"description" : "A collection of useful utilities.", "short": "A collection of useful utilities.",
"end_user_data_statement" : "This cog does not store end user data.", "description": "A collection of useful utilities.",
"end_user_data_statement": "This cog does not store end user data.",
"hidden": true, "hidden": true,
"disabled": false, "disabled": false,
"min_bot_version": "3.5.0", "min_bot_version": "3.5.0",