release: v2.0.3 - AI 1-Person Company Engine & Business Intelligence
This commit is contained in:
@@ -164,6 +164,7 @@ export async function activate(context: vscode.ExtensionContext) {
|
||||
logError('Failed to start bridge server.', err);
|
||||
}
|
||||
|
||||
|
||||
// 5. Register Core Commands
|
||||
context.subscriptions.push(
|
||||
vscode.commands.registerCommand('g1nation.focusInput', () => {
|
||||
@@ -449,6 +450,35 @@ export async function activate(context: vscode.ExtensionContext) {
|
||||
if (!provider) return;
|
||||
await provider._openArchitectureDoc();
|
||||
}),
|
||||
// ── 1인 기업 (Company) Mode commands ──────────────────────────────────
|
||||
// Thin shells over sidebar-provider methods so the runtime owns all
|
||||
// state mutation (chip status, watcher lifecycle, agent persistence).
|
||||
vscode.commands.registerCommand('g1nation.company.toggle', async () => {
|
||||
if (!provider) return;
|
||||
const { readCompanyState, setCompanyEnabled } = await import('./features/company');
|
||||
const cur = readCompanyState(context);
|
||||
const next = await setCompanyEnabled(context, !cur.enabled);
|
||||
await provider._sendCompanyStatus();
|
||||
vscode.window.showInformationMessage(`Astra: 1인 기업 모드 ${next.enabled ? 'ON' : 'OFF'}`);
|
||||
}),
|
||||
vscode.commands.registerCommand('g1nation.company.manage', async () => {
|
||||
if (!provider) return;
|
||||
// Reveal the sidebar then ask the webview to open the overlay.
|
||||
await vscode.commands.executeCommand('g1nation-v2-view.focus');
|
||||
provider._view?.webview.postMessage({ type: 'openCompanyManageOverlay' });
|
||||
await provider._sendCompanyAgents();
|
||||
}),
|
||||
vscode.commands.registerCommand('g1nation.company.openSessions', async () => {
|
||||
const { resolveCompanyBase } = await import('./features/company');
|
||||
const base = resolveCompanyBase(context);
|
||||
const target = path.join(base, 'sessions');
|
||||
try {
|
||||
if (!fs.existsSync(target)) fs.mkdirSync(target, { recursive: true });
|
||||
await vscode.env.openExternal(vscode.Uri.file(target));
|
||||
} catch (e: any) {
|
||||
vscode.window.showErrorMessage(`Sessions 폴더 열기 실패: ${e?.message ?? e}`);
|
||||
}
|
||||
}),
|
||||
);
|
||||
|
||||
/** All lesson/playbook/qa-finding cards in the active brain. Uses the brain index for the lesson-kind
|
||||
|
||||
Reference in New Issue
Block a user