Updated requirements

This commit is contained in:
rob 2025-10-15 20:13:49 -03:00
parent 205c2561fe
commit 52559be1c5
1 changed files with 9 additions and 10 deletions

View File

@ -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==