feat: greet on connect

This commit is contained in:
2026-01-16 12:41:50 -08:00
parent 2220c26c5e
commit 0dffec4d43
4 changed files with 95 additions and 1 deletions
+4
View File
@@ -10,6 +10,8 @@ export interface HikariConfig {
mcp_servers_json: string | null;
auto_granted_tools: string[];
theme: Theme;
greeting_enabled: boolean;
greeting_custom_prompt: string | null;
}
const defaultConfig: HikariConfig = {
@@ -19,6 +21,8 @@ const defaultConfig: HikariConfig = {
mcp_servers_json: null,
auto_granted_tools: [],
theme: "dark",
greeting_enabled: true,
greeting_custom_prompt: null,
};
function createConfigStore() {