@@ -24,7 +24,7 @@ program
2424 . command ( 'init' )
2525 . description ( 'Initialize codebrain in the current project' )
2626 . option ( '-n, --name <name>' , 'Project name' )
27- . action ( async ( options ) => {
27+ . action ( async ( _options ) => {
2828 console . log ( chalk . cyan ( '🧠 Initializing Codebrain...\n' ) ) ;
2929
3030 // TODO: Implement init
@@ -49,7 +49,7 @@ program
4949 . description ( 'Index all configured sources' )
5050 . option ( '-s, --source <source>' , 'Index only this source' )
5151 . option ( '--force' , 'Re-index everything, ignoring cache' )
52- . action ( async ( options ) => {
52+ . action ( async ( _options ) => {
5353 console . log ( chalk . cyan ( '🧠 Indexing sources...\n' ) ) ;
5454
5555 // TODO: Implement indexing
@@ -71,7 +71,7 @@ program
7171 . option ( '--scope <scope>' , 'Filter by scope' )
7272 . option ( '--type <type>' , 'Filter by signal type' )
7373 . option ( '--limit <n>' , 'Max results' , '10' )
74- . action ( async ( query , options ) => {
74+ . action ( async ( query , _options ) => {
7575 console . log ( chalk . cyan ( `🔍 Searching for: ${ query } \n` ) ) ;
7676
7777 // TODO: Implement search
@@ -87,7 +87,7 @@ program
8787 . command ( 'context <scope>' )
8888 . description ( 'Get formatted context for a scope' )
8989 . option ( '--depth <depth>' , 'Context depth: shallow, normal, deep' , 'normal' )
90- . action ( async ( scope , options ) => {
90+ . action ( async ( scope , _options ) => {
9191 console . log ( chalk . cyan ( `📋 Getting context for: ${ scope } \n` ) ) ;
9292
9393 // TODO: Implement context retrieval
@@ -118,7 +118,7 @@ program
118118 . command ( 'serve' )
119119 . description ( 'Start the MCP server' )
120120 . option ( '-p, --port <port>' , 'Port for HTTP mode' )
121- . action ( async ( options ) => {
121+ . action ( async ( _options ) => {
122122 console . log ( chalk . cyan ( '🚀 Starting Codebrain MCP server...\n' ) ) ;
123123
124124 // Import and start the MCP server
@@ -134,7 +134,7 @@ program
134134 . command ( 'validate' )
135135 . description ( 'Validate signals and check freshness' )
136136 . option ( '--fix' , 'Automatically fix issues where possible' )
137- . action ( async ( options ) => {
137+ . action ( async ( _options ) => {
138138 console . log ( chalk . cyan ( '✅ Validating signals...\n' ) ) ;
139139
140140 // TODO: Implement validation
0 commit comments