From 52559be1c58d5d83d1cddd97d613f7fb85965900 Mon Sep 17 00:00:00 2001 From: rob Date: Wed, 15 Oct 2025 20:13:49 -0300 Subject: [PATCH] Updated requirements --- src/userscript-bootstrap.user.js | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/userscript-bootstrap.user.js b/src/userscript-bootstrap.user.js index 35d455f..0663cd9 100644 --- a/src/userscript-bootstrap.user.js +++ b/src/userscript-bootstrap.user.js @@ -1,9 +1,8 @@ // ==UserScript== -// @name AI Repo Commander (Modular Refactor) +// @name AI Repo Commander (Modular) // @namespace http://tampermonkey.net/ -// @version 2.0.0-mod -// @description Modularized: config, logger, storage, parser, executor, main -// @author You +// @version 2.0.0 +// @description Modularized AI Repo Commander // @match https://chat.openai.com/* // @match https://chatgpt.com/* // @match https://claude.ai/* @@ -11,10 +10,10 @@ // @grant GM_xmlhttpRequest // @connect n8n.brrd.tech // @connect * -// @require https://YOUR_HOST/config.js -// @require https://YOUR_HOST/logger.js -// @require https://YOUR_HOST/storage.js -// @require https://YOUR_HOST/command-parser.js -// @require https://YOUR_HOST/command-executor.js -// @require https://YOUR_HOST/main.js +// @require https://gitea.brrd.tech/rob/AI-Repo-Commander/raw/branch/refactor-structure/src/config.js +// @require https://gitea.brrd.tech/rob/AI-Repo-Commander/raw/branch/refactor-structure/src/logger.js +// @require https://gitea.brrd.tech/rob/AI-Repo-Commander/raw/branch/refactor-structure/src/storage.js +// @require https://gitea.brrd.tech/rob/AI-Repo-Commander/raw/branch/refactor-structure/src/command-parser.js +// @require https://gitea.brrd.tech/rob/AI-Repo-Commander/raw/branch/refactor-structure/src/command-executor.js +// @require https://gitea.brrd.tech/rob/AI-Repo-Commander/raw/branch/refactor-structure/src/main.js // ==/UserScript==