chore: Audit terminology (org-agent -> opencortex)

This commit is contained in:
2026-04-14 16:03:37 -04:00
parent 6608fb5553
commit c5d3d8c5fa
15 changed files with 43 additions and 43 deletions

View File

@@ -45,7 +45,7 @@ const stealth = require('puppeteer-extra-plugin-stealth')();
chromium.use(stealth);
async function askGemini(prompt) {
const browser = await chromium.launchPersistentContext('/home/user/.local/share/org-agent/browser-profile', {
const browser = await chromium.launchPersistentContext('/home/user/.local/share/opencortex/browser-profile', {
headless: true,
args: ['--disable-blink-features=AutomationControlled']
});
@@ -92,7 +92,7 @@ async function loginGemini() {
console.log("Opening browser for manual Google login...");
console.log("Please log in, pass any captchas, wait for the Gemini chat interface to load, and then close the browser window.");
const browser = await chromium.launchPersistentContext('/home/user/.local/share/org-agent/browser-profile', {
const browser = await chromium.launchPersistentContext('/home/user/.local/share/opencortex/browser-profile', {
headless: false,
args: ['--disable-blink-features=AutomationControlled']
});
@@ -110,7 +110,7 @@ loginGemini().catch(err => {
#+end_src
#+begin_src lisp :tangle ../projects/org-skill-web-research/src/research-logic.lisp
(in-package :org-agent)
(in-package :opencortex)
(defun ask-gemini-web (prompt)
"Calls the Playwright stealth bridge to interact with Gemini Web UI via a persistent profile."