@@ -326,7 +326,7 @@ export class InitCommand {
326326 . map ( ( toolId ) => AI_TOOLS . find ( ( t ) => t . value === toolId ) ?. name || toolId ) ;
327327
328328 if ( configuredNames . length > 0 ) {
329- console . log ( `OpenSpec configured: ${ configuredNames . join ( ', ' ) } (pre-selected) ` ) ;
329+ console . log ( `OpenSpec 已配置: ${ configuredNames . join ( ', ' ) } (已预选) ` ) ;
330330 }
331331
332332 const detectedOnlyNames = detectedTools
@@ -335,9 +335,9 @@ export class InitCommand {
335335
336336 if ( detectedOnlyNames . length > 0 ) {
337337 const detectionLabel = shouldPreselectDetected
338- ? 'pre-selected for first-time setup '
339- : 'not pre-selected ' ;
340- console . log ( `Detected tool directories: ${ detectedOnlyNames . join ( ', ' ) } ( ${ detectionLabel } ) ` ) ;
338+ ? '首次设置已预选 '
339+ : '未预选 ' ;
340+ console . log ( `检测到工具目录: ${ detectedOnlyNames . join ( ', ' ) } ( ${ detectionLabel } ) ` ) ;
341341 }
342342
343343 const selectedTools = await searchableMultiSelect ( {
@@ -666,7 +666,7 @@ export class InitCommand {
666666 } else if ( skillCount > 0 ) {
667667 console . log ( `${ skillCount } 个技能在 ${ toolDirs } / 中` ) ;
668668 } else if ( commandCount > 0 ) {
669- console . log ( `${ commandCount } commands in ${ toolDirs } /` ) ;
669+ console . log ( `${ commandCount } 个命令在 ${ toolDirs } / 中 ` ) ;
670670 }
671671 }
672672
@@ -705,13 +705,13 @@ export class InitCommand {
705705 const activeWorkflows = [ ...getProfileWorkflows ( activeProfile , globalCfg . workflows ) ] ;
706706 console . log ( ) ;
707707 if ( activeWorkflows . includes ( 'propose' ) ) {
708- console . log ( chalk . bold ( 'Getting started: ' ) ) ;
709- console . log ( ' Start your first change: /opsx:propose "your idea "' ) ;
708+ console . log ( chalk . bold ( '开始使用: ' ) ) ;
709+ console . log ( ' 开始您的第一个变更: /opsx:propose "您的想法 "' ) ;
710710 } else if ( activeWorkflows . includes ( 'new' ) ) {
711- console . log ( chalk . bold ( 'Getting started: ' ) ) ;
712- console . log ( ' Start your first change: /opsx:new "your idea "' ) ;
711+ console . log ( chalk . bold ( '开始使用: ' ) ) ;
712+ console . log ( ' 开始您的第一个变更: /opsx:new "您的想法 "' ) ;
713713 } else {
714- console . log ( "Done. Run 'openspec config profile' to configure your workflows. " ) ;
714+ console . log ( "完成。运行 'openspec-cn config profile' 配置您的工作流程。 " ) ;
715715 }
716716
717717 // Links
0 commit comments