File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -151,6 +151,7 @@ if (debugFlag) {
151151```
152152
153153Key characteristics:
154+
154155- ** In-Memory Only** : Configuration is stored entirely in memory and does not persist between server restarts
155156- ** Type Safety** : Uses TypeScript interfaces for configuration structure
156157- ** Programmatic API** : Simple, promise-based API for getting and setting configuration values
@@ -182,6 +183,7 @@ if (config.promptsEnabled) {
182183```
183184
184185Default configuration values:
186+
185187``` typescript
186188{
187189 promptsEnabled : true , // Enables prompt functionality
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ export class PromptManager {
140140 console . error ( `Failed to create main config directory: ${ resolvedConfigDir } ` , err ) ;
141141 }
142142 }
143-
143+
144144 // Create prompts subdirectory if it doesn't exist
145145 const promptsDir = path . join ( resolvedConfigDir , 'prompts' ) ;
146146 if ( ! fs . existsSync ( promptsDir ) ) {
Original file line number Diff line number Diff line change 44 * This file defines:
55 * 1. Filesystem paths for components that need filesystem access (prompts)
66 * 2. Default application constants
7- *
7+ *
88 * Note: The main configuration system is in-memory only and doesn't use
99 * filesystem persistence for configuration values. The filesystem paths
1010 * defined here are only used for prompt-related functionality.
You can’t perform that action at this time.
0 commit comments