forked from nth5693/gemini-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.d.ts
More file actions
25 lines (25 loc) · 1.04 KB
/
constants.d.ts
File metadata and controls
25 lines (25 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
* Gemini-Kit Constants
* Centralized configuration paths (LOW 7 fix)
*/
export declare const HOME_DIR: string;
export declare const GEMINI_KIT_DIR = ".gemini-kit";
export declare const GEMINI_KIT_GLOBAL_DIR: string;
export declare const SESSIONS_SUBDIR = "sessions";
export declare const LEARNINGS_SUBDIR = "learnings";
export declare const INDEX_SUBDIR = "index";
export declare const DIFFS_SUBDIR = "diffs";
export declare const ARTIFACTS_SUBDIR = "artifacts";
export declare const CHECKPOINTS_SUBDIR = "checkpoints";
export declare const SESSIONS_DIR: string;
export declare const LEARNINGS_DIR: string;
export declare const INDEX_DIR: string;
export declare const DIFFS_DIR: string;
export declare const ACTIVE_SESSION_FILE: string;
export declare const DEFAULT_CODE_EXTENSIONS: string[];
export declare const DEFAULT_EXCLUDE_DIRS: string[];
export declare const MAX_FILE_SIZE_BYTES: number;
export declare const DEFAULT_MAX_FILES = 100;
export declare const BATCH_SIZE = 10;
export declare const GIT_TIMEOUT: number;
export declare const GH_TIMEOUT: number;