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== // ==UserScript==
// @name AI Repo Commander (Modular Refactor) // @name AI Repo Commander (Modular)
// @namespace http://tampermonkey.net/ // @namespace http://tampermonkey.net/
// @version 2.0.0-mod // @version 2.0.0
// @description Modularized: config, logger, storage, parser, executor, main // @description Modularized AI Repo Commander
// @author You
// @match https://chat.openai.com/* // @match https://chat.openai.com/*
// @match https://chatgpt.com/* // @match https://chatgpt.com/*
// @match https://claude.ai/* // @match https://claude.ai/*
@ -11,10 +10,10 @@
// @grant GM_xmlhttpRequest // @grant GM_xmlhttpRequest
// @connect n8n.brrd.tech // @connect n8n.brrd.tech
// @connect * // @connect *
// @require https://YOUR_HOST/config.js // @require https://gitea.brrd.tech/rob/AI-Repo-Commander/raw/branch/refactor-structure/src/config.js
// @require https://YOUR_HOST/logger.js // @require https://gitea.brrd.tech/rob/AI-Repo-Commander/raw/branch/refactor-structure/src/logger.js
// @require https://YOUR_HOST/storage.js // @require https://gitea.brrd.tech/rob/AI-Repo-Commander/raw/branch/refactor-structure/src/storage.js
// @require https://YOUR_HOST/command-parser.js // @require https://gitea.brrd.tech/rob/AI-Repo-Commander/raw/branch/refactor-structure/src/command-parser.js
// @require https://YOUR_HOST/command-executor.js // @require https://gitea.brrd.tech/rob/AI-Repo-Commander/raw/branch/refactor-structure/src/command-executor.js
// @require https://YOUR_HOST/main.js // @require https://gitea.brrd.tech/rob/AI-Repo-Commander/raw/branch/refactor-structure/src/main.js
// ==/UserScript== // ==/UserScript==