The fixture chat panel is now a working agent. Ask Reginald a question and it consults the real project through a tool loop, then answers in grounded prose. Read-only v0 — writes still go through the propose-approve controls. core (@commitea/core/agent): - chat-client: OpenAI-wire chat completions over an injected fetch (same seam as gitea). Points at any OpenAI-compatible endpoint (LM Studio/Ollama/OpenAI). - model-router: small model for prose + the read tool; big model reserved for later decomposition (pickModel). - agent-loop: runAgentTurn drives call→tool→result→call until prose (or a step budget), recording each tool step. Injected complete + execute → fully testable. - query-project: the single read tool's engine — compact focus/board/calibration/ issue/search views built from scheduler + lifecycle + calibration; unbuilt views return a notImplemented marker (never fabricated). The model reports, never computes. - agent-tools: query_project declaration + Reginald's system prompt. app: - main model bridge (model:status, model:chat) runs the loop; query_project reconciles the repo and builds the view. Model traffic stays in main (token/CSP). gitea.ts refactored to share getGiteaClient + reconcileSnapshot. - preload + global.d.ts expose the model bridge; useChat drives the panel — real agent turn when a model is configured, scripted fixture reply otherwise (so fixture e2e is unchanged). A subtle "consulted the project" activity line. Model config (env, defaults to LM Studio on :1234): COMMITEA_MODEL_URL / _SMALL (google/gemma-4-e4b) / _BIG (qwen/qwen3.6-35b-a3b). COMMITEA_E2E=1 keeps it unconfigured so the panel stays scripted. Verified: 88 core tests green (14 agent: client parse, loop tool/error/budget, all views) + a gated live integration test. Desktop typecheck clean, 14 fixture e2e green. Gated live e2e drives the real app against gitea + gemma-4-e4b: asked "what now?", Reginald called query_project and answered "focus is on issue #2" (the real scheduler pick). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
50 lines
1.1 KiB
TypeScript
50 lines
1.1 KiB
TypeScript
import { join } from 'node:path'
|
|
|
|
import { BrowserWindow, app, shell } from 'electron'
|
|
|
|
import { registerGiteaIpc } from './gitea.js'
|
|
import { registerModelIpc } from './model.js'
|
|
|
|
function createWindow(): void {
|
|
const win = new BrowserWindow({
|
|
width: 1440,
|
|
height: 900,
|
|
minWidth: 1080,
|
|
minHeight: 700,
|
|
show: false,
|
|
autoHideMenuBar: true,
|
|
backgroundColor: '#F0F4F0',
|
|
webPreferences: {
|
|
preload: join(import.meta.dirname, '../preload/index.mjs'),
|
|
sandbox: false,
|
|
},
|
|
})
|
|
|
|
win.on('ready-to-show', () => win.show())
|
|
|
|
win.webContents.setWindowOpenHandler(({ url }) => {
|
|
void shell.openExternal(url)
|
|
return { action: 'deny' }
|
|
})
|
|
|
|
if (process.env.ELECTRON_RENDERER_URL) {
|
|
void win.loadURL(process.env.ELECTRON_RENDERER_URL)
|
|
} else {
|
|
void win.loadFile(join(import.meta.dirname, '../renderer/index.html'))
|
|
}
|
|
}
|
|
|
|
void app.whenReady().then(() => {
|
|
registerGiteaIpc()
|
|
registerModelIpc()
|
|
createWindow()
|
|
|
|
app.on('activate', () => {
|
|
if (BrowserWindow.getAllWindows().length === 0) createWindow()
|
|
})
|
|
})
|
|
|
|
app.on('window-all-closed', () => {
|
|
if (process.platform !== 'darwin') app.quit()
|
|
})
|