Skip to content

Commit 03c025a

Browse files
committed
change directory structure
1 parent 45cd8e8 commit 03c025a

34 files changed

+10
-10
lines changed

AUTHENTICATION_FLOW.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ If the backend ever drops to simulator mode you will still get generated content
4343
To confirm credentials outside the UI you can run:
4444

4545
```bash
46-
node -e "import('./generative-computer/backend/check-auth.js').then(m => m.checkGeminiAuth().then(console.log))"
46+
node -e "import('./runtime/backend/check-auth.js').then(m => m.checkGeminiAuth().then(console.log))"
4747
```
4848

4949
The command prints a JSON summary highlighting Node version problems, auth failures, or a clean success.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Press `Ctrl+C` to shut everything down.
7070

7171
```
7272
generative-computer/
73-
├── generative-computer/
73+
├── runtime/
7474
│ ├── AGENTS.md # Overview of the agent stack and workflows
7575
│ ├── frontend/
7676
│ │ ├── src/components/
@@ -89,7 +89,7 @@ generative-computer/
8989
└── logs/agent/ # Populated when DEBUG_AGENT=true
9090
```
9191

92-
The nested `./generative-computer/` folder keeps the frontend and backend agents grouped together so the top-level `./computer` launcher can keep its original name.
92+
The nested `./runtime/` folder keeps the frontend and backend agents grouped together so the top-level `./computer` launcher can keep its original name.
9393

9494
## Stay In The Loop
9595

File renamed without changes.
File renamed without changes.
File renamed without changes.

generative-computer/backend/gemini-agent.js renamed to runtime/backend/gemini-agent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const __filename = fileURLToPath(import.meta.url);
1515
const __dirname = dirname(__filename);
1616

1717
const REPO_ROOT = join(__dirname, '..', '..');
18-
const FRONTEND_SRC = join(REPO_ROOT, 'generative-computer', 'frontend', 'src');
18+
const FRONTEND_SRC = join(REPO_ROOT, 'runtime', 'frontend', 'src');
1919
const COMPONENTS_DIR = join(FRONTEND_SRC, 'components');
2020
const GENERATED_CONTENT_PATH = join(COMPONENTS_DIR, 'GeneratedContent.tsx');
2121
const GEMINI_BUNDLE = join(REPO_ROOT, 'bundle', 'gemini.js');
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)