Version 2.55.0 Release: Rebranding to Astra

This commit is contained in:
g1nation
2026-05-03 20:40:40 +09:00
parent d8ae0b5964
commit a5f3e383d4
19 changed files with 140 additions and 67 deletions
+5 -5
View File
@@ -18,10 +18,10 @@ import { SidebarChatProvider } from './sidebarProvider';
import { HealthCheckMonitor } from './core/health';
/**
* G1nation Extension Entry Point
* Astra Extension Entry Point
*/
export async function activate(context: vscode.ExtensionContext) {
logInfo('ConnectAI activating...');
logInfo('Astra activating...');
// Start Environment Health Monitoring
HealthCheckMonitor.runAllChecks();
@@ -30,7 +30,7 @@ export async function activate(context: vscode.ExtensionContext) {
// 0. Validate Configuration
const validation = validateConfig();
if (!validation.valid) {
vscode.window.showErrorMessage(`G1nation Configuration Error: ${validation.errors.join(' ')}`);
vscode.window.showErrorMessage(`Astra Configuration Error: ${validation.errors.join(' ')}`);
logError('Configuration validation failed.', { errors: validation.errors });
}
@@ -144,12 +144,12 @@ async function _ensureBrainDir(context: vscode.ExtensionContext): Promise<string
try {
fs.mkdirSync(defaultDir, { recursive: true });
// Create a welcome file
fs.writeFileSync(path.join(defaultDir, 'Welcome.md'), "# Welcome to your Second Brain\n\nG1nation will store and retrieve knowledge from here.");
fs.writeFileSync(path.join(defaultDir, 'Welcome.md'), "# Welcome to your Second Brain\n\nAstra will store and retrieve knowledge from here.");
} catch (e) {}
}
return defaultDir;
}
/**
* G1nation Extension Entry Point
* Astra Extension Entry Point
*/