@qwen-code/qwen-code 0.14.5 → 0.15.0-preview.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +83 -19
- package/bundled/batch/SKILL.md +303 -0
- package/bundled/qc-helper/docs/configuration/settings.md +31 -22
- package/bundled/qc-helper/docs/features/_meta.ts +1 -0
- package/bundled/qc-helper/docs/features/commands.md +11 -8
- package/bundled/qc-helper/docs/features/hooks.md +297 -122
- package/bundled/qc-helper/docs/features/memory.md +168 -0
- package/bundled/qc-helper/docs/features/status-line.md +15 -8
- package/bundled/qc-helper/docs/overview.md +4 -4
- package/bundled/qc-helper/docs/quickstart.md +14 -9
- package/bundled/qc-helper/docs/support/troubleshooting.md +9 -3
- package/cli.js +67406 -53610
- package/locales/de.js +44 -0
- package/locales/en.js +41 -0
- package/locales/ja.js +44 -0
- package/locales/pt.js +45 -0
- package/locales/ru.js +43 -0
- package/locales/zh.js +40 -0
- package/package.json +2 -2
- package/bundled/qc-helper/docs/configuration/memory.md +0 -0
package/locales/de.js
CHANGED
|
@@ -650,6 +650,7 @@ export default {
|
|
|
650
650
|
'User Settings': 'Benutzereinstellungen',
|
|
651
651
|
'System Settings': 'Systemeinstellungen',
|
|
652
652
|
Extensions: 'Erweiterungen',
|
|
653
|
+
'Session (temporary)': 'Sitzung (temporär)',
|
|
653
654
|
// Hooks - Status
|
|
654
655
|
'✓ Enabled': '✓ Aktiviert',
|
|
655
656
|
'✗ Disabled': '✗ Deaktiviert',
|
|
@@ -886,6 +887,45 @@ export default {
|
|
|
886
887
|
'Verwendung: /memory add [--global|--project] <zu merkender Text>',
|
|
887
888
|
'Attempting to save to memory {{scope}}: "{{fact}}"':
|
|
888
889
|
'Versuche im Speicher {{scope}} zu speichern: "{{fact}}"',
|
|
890
|
+
'Open auto-memory folder': 'Auto-Speicher-Ordner öffnen',
|
|
891
|
+
'Auto-memory: {{status}}': 'Auto-Speicher: {{status}}',
|
|
892
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
|
|
893
|
+
'Auto-Konsolidierung: {{status}} · {{lastDream}} · /dream zum Ausführen',
|
|
894
|
+
never: 'nie',
|
|
895
|
+
on: 'ein',
|
|
896
|
+
off: 'aus',
|
|
897
|
+
'❆ dreaming': '❆ konsolidiert',
|
|
898
|
+
'Remove matching entries from managed auto-memory.':
|
|
899
|
+
'Passende Einträge aus dem verwalteten Auto-Speicher entfernen.',
|
|
900
|
+
'Usage: /forget <memory text to remove>':
|
|
901
|
+
'Verwendung: /forget <zu entfernender Erinnerungstext>',
|
|
902
|
+
'No managed auto-memory entries matched: {{query}}':
|
|
903
|
+
'Keine verwalteten Auto-Speicher-Einträge gefunden: {{query}}',
|
|
904
|
+
'Show managed auto-memory status.':
|
|
905
|
+
'Status des verwalteten Auto-Speichers anzeigen.',
|
|
906
|
+
'Run managed auto-memory extraction for the current session.':
|
|
907
|
+
'Verwaltete Auto-Speicher-Extraktion für die aktuelle Sitzung ausführen.',
|
|
908
|
+
'Managed auto-memory root: {{root}}':
|
|
909
|
+
'Verwalteter Auto-Speicher-Stamm: {{root}}',
|
|
910
|
+
'Managed auto-memory topics:': 'Verwaltete Auto-Speicher-Themen:',
|
|
911
|
+
'No extraction cursor found yet.': 'Noch kein Extraktions-Cursor gefunden.',
|
|
912
|
+
'Cursor: session={{sessionId}}, offset={{offset}}, updated={{updatedAt}}':
|
|
913
|
+
'Cursor: Sitzung={{sessionId}}, Offset={{offset}}, Aktualisiert={{updatedAt}}',
|
|
914
|
+
'No chat client available to extract memory.':
|
|
915
|
+
'Kein Chat-Client verfügbar, um Erinnerungen zu extrahieren.',
|
|
916
|
+
'Managed auto-memory extraction is already running.':
|
|
917
|
+
'Verwaltete Auto-Speicher-Extraktion läuft bereits.',
|
|
918
|
+
'Managed auto-memory extraction found no new durable memories.':
|
|
919
|
+
'Verwaltete Auto-Speicher-Extraktion hat keine neuen dauerhaften Erinnerungen gefunden.',
|
|
920
|
+
'Consolidate managed auto-memory topic files.':
|
|
921
|
+
'Verwaltete Auto-Speicher-Themendateien konsolidieren.',
|
|
922
|
+
'Managed auto-memory dream found nothing to improve.':
|
|
923
|
+
'Auto-Speicher-Konsolidierung hat nichts zu verbessern gefunden.',
|
|
924
|
+
'Deduplicated entries: {{count}}': 'Deduplizierte Einträge: {{count}}',
|
|
925
|
+
'Save a durable memory using the save_memory tool.':
|
|
926
|
+
'Eine dauerhafte Erinnerung mit dem save_memory-Tool speichern.',
|
|
927
|
+
'Usage: /remember [--global|--project] <text to remember>':
|
|
928
|
+
'Verwendung: /remember [--global|--project] <zu merkender Text>',
|
|
889
929
|
|
|
890
930
|
// ============================================================================
|
|
891
931
|
// Commands - MCP
|
|
@@ -1787,6 +1827,8 @@ export default {
|
|
|
1787
1827
|
'Sie können den Berechtigungsmodus schnell mit Tab oder /approval-mode wechseln.',
|
|
1788
1828
|
'Try /insight to generate personalized insights from your chat history.':
|
|
1789
1829
|
'Probieren Sie /insight, um personalisierte Erkenntnisse aus Ihrem Chatverlauf zu erstellen.',
|
|
1830
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.':
|
|
1831
|
+
'Strg+O drücken, um den Kompaktmodus umzuschalten — Tool-Ausgabe und Denkprozess ausblenden.',
|
|
1790
1832
|
'Add a QWEN.md file to give Qwen Code persistent project context.':
|
|
1791
1833
|
'Fügen Sie eine QWEN.md-Datei hinzu, um Qwen Code dauerhaften Projektkontext zu geben.',
|
|
1792
1834
|
'Use /btw to ask a quick side question without disrupting the conversation.':
|
|
@@ -1993,6 +2035,8 @@ export default {
|
|
|
1993
2035
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
1994
2036
|
'(↑ ↓ Pfeiltasten zum Navigieren, Enter zum Auswählen, Strg+C zum Beenden)\n',
|
|
1995
2037
|
compact: 'kompakt',
|
|
2038
|
+
'compact mode: on (Ctrl+O off)': 'Kompaktmodus: ein (Strg+O aus)',
|
|
2039
|
+
'to toggle compact mode': 'Kompaktmodus umschalten',
|
|
1996
2040
|
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
1997
2041
|
'Tool-Ausgabe und Denkprozess ausblenden für eine übersichtlichere Ansicht (mit Strg+O umschalten).',
|
|
1998
2042
|
'Press Ctrl+O to show full tool output':
|
package/locales/en.js
CHANGED
|
@@ -59,6 +59,7 @@ export default {
|
|
|
59
59
|
'to search history': 'to search history',
|
|
60
60
|
'to paste images': 'to paste images',
|
|
61
61
|
'for external editor': 'for external editor',
|
|
62
|
+
'to toggle compact mode': 'to toggle compact mode',
|
|
62
63
|
'Jump through words in the input': 'Jump through words in the input',
|
|
63
64
|
'Close dialogs, cancel requests, or quit application':
|
|
64
65
|
'Close dialogs, cancel requests, or quit application',
|
|
@@ -948,6 +949,43 @@ export default {
|
|
|
948
949
|
'Usage: /memory add [--global|--project] <text to remember>',
|
|
949
950
|
'Attempting to save to memory {{scope}}: "{{fact}}"':
|
|
950
951
|
'Attempting to save to memory {{scope}}: "{{fact}}"',
|
|
952
|
+
'Open auto-memory folder': 'Open auto-memory folder',
|
|
953
|
+
'Auto-memory: {{status}}': 'Auto-memory: {{status}}',
|
|
954
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
|
|
955
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run',
|
|
956
|
+
never: 'never',
|
|
957
|
+
on: 'on',
|
|
958
|
+
off: 'off',
|
|
959
|
+
'✦ dreaming': '✦ dreaming',
|
|
960
|
+
'Remove matching entries from managed auto-memory.':
|
|
961
|
+
'Remove matching entries from managed auto-memory.',
|
|
962
|
+
'Usage: /forget <memory text to remove>':
|
|
963
|
+
'Usage: /forget <memory text to remove>',
|
|
964
|
+
'No managed auto-memory entries matched: {{query}}':
|
|
965
|
+
'No managed auto-memory entries matched: {{query}}',
|
|
966
|
+
'Show managed auto-memory status.': 'Show managed auto-memory status.',
|
|
967
|
+
'Run managed auto-memory extraction for the current session.':
|
|
968
|
+
'Run managed auto-memory extraction for the current session.',
|
|
969
|
+
'Managed auto-memory root: {{root}}': 'Managed auto-memory root: {{root}}',
|
|
970
|
+
'Managed auto-memory topics:': 'Managed auto-memory topics:',
|
|
971
|
+
'No extraction cursor found yet.': 'No extraction cursor found yet.',
|
|
972
|
+
'Cursor: session={{sessionId}}, offset={{offset}}, updated={{updatedAt}}':
|
|
973
|
+
'Cursor: session={{sessionId}}, offset={{offset}}, updated={{updatedAt}}',
|
|
974
|
+
'No chat client available to extract memory.':
|
|
975
|
+
'No chat client available to extract memory.',
|
|
976
|
+
'Managed auto-memory extraction is already running.':
|
|
977
|
+
'Managed auto-memory extraction is already running.',
|
|
978
|
+
'Managed auto-memory extraction found no new durable memories.':
|
|
979
|
+
'Managed auto-memory extraction found no new durable memories.',
|
|
980
|
+
'Consolidate managed auto-memory topic files.':
|
|
981
|
+
'Consolidate managed auto-memory topic files.',
|
|
982
|
+
'Managed auto-memory dream found nothing to improve.':
|
|
983
|
+
'Managed auto-memory dream found nothing to improve.',
|
|
984
|
+
'Deduplicated entries: {{count}}': 'Deduplicated entries: {{count}}',
|
|
985
|
+
'Save a durable memory using the save_memory tool.':
|
|
986
|
+
'Save a durable memory using the save_memory tool.',
|
|
987
|
+
'Usage: /remember [--global|--project] <text to remember>':
|
|
988
|
+
'Usage: /remember [--global|--project] <text to remember>',
|
|
951
989
|
|
|
952
990
|
// ============================================================================
|
|
953
991
|
// Commands - MCP
|
|
@@ -1563,6 +1601,8 @@ export default {
|
|
|
1563
1601
|
'You can switch permission mode quickly with Tab or /approval-mode.',
|
|
1564
1602
|
'Try /insight to generate personalized insights from your chat history.':
|
|
1565
1603
|
'Try /insight to generate personalized insights from your chat history.',
|
|
1604
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.':
|
|
1605
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.',
|
|
1566
1606
|
'Add a QWEN.md file to give Qwen Code persistent project context.':
|
|
1567
1607
|
'Add a QWEN.md file to give Qwen Code persistent project context.',
|
|
1568
1608
|
'Use /btw to ask a quick side question without disrupting the conversation.':
|
|
@@ -2033,6 +2073,7 @@ export default {
|
|
|
2033
2073
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
2034
2074
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n',
|
|
2035
2075
|
compact: 'compact',
|
|
2076
|
+
'compact mode: on (Ctrl+O off)': 'compact mode: on (Ctrl+O off)',
|
|
2036
2077
|
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
2037
2078
|
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).',
|
|
2038
2079
|
'Press Ctrl+O to show full tool output':
|
package/locales/ja.js
CHANGED
|
@@ -435,6 +435,7 @@ export default {
|
|
|
435
435
|
'User Settings': 'ユーザー設定',
|
|
436
436
|
'System Settings': 'システム設定',
|
|
437
437
|
Extensions: '拡張機能',
|
|
438
|
+
'Session (temporary)': 'セッション(一時)',
|
|
438
439
|
// Hooks - Status
|
|
439
440
|
'✓ Enabled': '✓ 有効',
|
|
440
441
|
'✗ Disabled': '✗ 無効',
|
|
@@ -648,6 +649,45 @@ export default {
|
|
|
648
649
|
'使い方: /memory add [--global|--project] <記憶するテキスト>',
|
|
649
650
|
'Attempting to save to memory {{scope}}: "{{fact}}"':
|
|
650
651
|
'メモリ {{scope}} への保存を試行中: "{{fact}}"',
|
|
652
|
+
'Open auto-memory folder': '自動メモリフォルダを開く',
|
|
653
|
+
'Auto-memory: {{status}}': '自動メモリ: {{status}}',
|
|
654
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
|
|
655
|
+
'自動統合: {{status}} · {{lastDream}} · /dream で実行',
|
|
656
|
+
never: '未実行',
|
|
657
|
+
on: 'オン',
|
|
658
|
+
off: 'オフ',
|
|
659
|
+
'❆ dreaming': '❆ 整理中',
|
|
660
|
+
'Remove matching entries from managed auto-memory.':
|
|
661
|
+
'マネージド自動メモリから一致するエントリを削除する。',
|
|
662
|
+
'Usage: /forget <memory text to remove>':
|
|
663
|
+
'使い方: /forget <削除するメモリテキスト>',
|
|
664
|
+
'No managed auto-memory entries matched: {{query}}':
|
|
665
|
+
'一致するマネージド自動メモリエントリなし: {{query}}',
|
|
666
|
+
'Show managed auto-memory status.':
|
|
667
|
+
'マネージド自動メモリのステータスを表示する。',
|
|
668
|
+
'Run managed auto-memory extraction for the current session.':
|
|
669
|
+
'現在のセッションのマネージド自動メモリ抽出を実行する。',
|
|
670
|
+
'Managed auto-memory root: {{root}}':
|
|
671
|
+
'マネージド自動メモリのルート: {{root}}',
|
|
672
|
+
'Managed auto-memory topics:': 'マネージド自動メモリのトピック:',
|
|
673
|
+
'No extraction cursor found yet.': 'まだ抽出カーソルが見つかりません。',
|
|
674
|
+
'Cursor: session={{sessionId}}, offset={{offset}}, updated={{updatedAt}}':
|
|
675
|
+
'カーソル: セッション={{sessionId}}, オフセット={{offset}}, 更新={{updatedAt}}',
|
|
676
|
+
'No chat client available to extract memory.':
|
|
677
|
+
'メモリを抽出できるチャットクライアントがありません。',
|
|
678
|
+
'Managed auto-memory extraction is already running.':
|
|
679
|
+
'マネージド自動メモリ抽出はすでに実行中です。',
|
|
680
|
+
'Managed auto-memory extraction found no new durable memories.':
|
|
681
|
+
'マネージド自動メモリ抽出で新しい永続メモリは見つかりませんでした。',
|
|
682
|
+
'Consolidate managed auto-memory topic files.':
|
|
683
|
+
'マネージド自動メモリトピックファイルを統合する。',
|
|
684
|
+
'Managed auto-memory dream found nothing to improve.':
|
|
685
|
+
'自動メモリ統合で改善するものは見つかりませんでした。',
|
|
686
|
+
'Deduplicated entries: {{count}}': '重複除去したエントリ: {{count}}',
|
|
687
|
+
'Save a durable memory using the save_memory tool.':
|
|
688
|
+
'save_memoryツールを使用して永続メモリを保存する。',
|
|
689
|
+
'Usage: /remember [--global|--project] <text to remember>':
|
|
690
|
+
'使い方: /remember [--global|--project] <覚えておくテキスト>',
|
|
651
691
|
// MCP
|
|
652
692
|
'Authenticate with an OAuth-enabled MCP server':
|
|
653
693
|
'OAuth対応のMCPサーバーで認証',
|
|
@@ -1182,6 +1222,8 @@ export default {
|
|
|
1182
1222
|
'Tab または /approval-mode で権限モードをすばやく切り替えられます。',
|
|
1183
1223
|
'Try /insight to generate personalized insights from your chat history.':
|
|
1184
1224
|
'/insight でチャット履歴からパーソナライズされたインサイトを生成できます。',
|
|
1225
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.':
|
|
1226
|
+
'Ctrl+O でコンパクトモードを切り替え — ツール出力と思考を非表示にしてすっきり表示。',
|
|
1185
1227
|
'Add a QWEN.md file to give Qwen Code persistent project context.':
|
|
1186
1228
|
'QWEN.md ファイルを追加すると、Qwen Code に永続的なプロジェクトコンテキストを与えられます。',
|
|
1187
1229
|
'Use /btw to ask a quick side question without disrupting the conversation.':
|
|
@@ -1484,6 +1526,8 @@ export default {
|
|
|
1484
1526
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
1485
1527
|
'(↑ ↓ 矢印キーで移動、Enter で選択、Ctrl+C で終了)\n',
|
|
1486
1528
|
compact: 'コンパクト',
|
|
1529
|
+
'compact mode: on (Ctrl+O off)': 'コンパクトモード: オン (Ctrl+O でオフ)',
|
|
1530
|
+
'to toggle compact mode': 'コンパクトモードの切り替え',
|
|
1487
1531
|
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
1488
1532
|
'コンパクトモードでツール出力と思考を非表示にします(Ctrl+O で切り替え)。',
|
|
1489
1533
|
'Press Ctrl+O to show full tool output': 'Ctrl+O で完全なツール出力を表示',
|
package/locales/pt.js
CHANGED
|
@@ -51,6 +51,7 @@ export default {
|
|
|
51
51
|
'to search history': 'para pesquisar no histórico',
|
|
52
52
|
'to paste images': 'para colar imagens',
|
|
53
53
|
'for external editor': 'para editor externo',
|
|
54
|
+
'to toggle compact mode': 'alternar modo compacto',
|
|
54
55
|
'Jump through words in the input': 'Pular palavras na entrada',
|
|
55
56
|
'Close dialogs, cancel requests, or quit application':
|
|
56
57
|
'Fechar diálogos, cancelar solicitações ou sair do aplicativo',
|
|
@@ -656,6 +657,7 @@ export default {
|
|
|
656
657
|
'User Settings': 'Configurações do Usuário',
|
|
657
658
|
'System Settings': 'Configurações do Sistema',
|
|
658
659
|
Extensions: 'Extensões',
|
|
660
|
+
'Session (temporary)': 'Sessão (temporário)',
|
|
659
661
|
// Hooks - Status
|
|
660
662
|
'✓ Enabled': '✓ Ativado',
|
|
661
663
|
'✗ Disabled': '✗ Desativado',
|
|
@@ -891,6 +893,46 @@ export default {
|
|
|
891
893
|
'Uso: /memory add [--global|--project] <texto para lembrar>',
|
|
892
894
|
'Attempting to save to memory {{scope}}: "{{fact}}"':
|
|
893
895
|
'Tentando salvar na memória {{scope}}: "{{fact}}"',
|
|
896
|
+
'Open auto-memory folder': 'Abrir pasta de memória automática',
|
|
897
|
+
'Auto-memory: {{status}}': 'Memória automática: {{status}}',
|
|
898
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
|
|
899
|
+
'Consolidação automática: {{status}} · {{lastDream}} · /dream para executar',
|
|
900
|
+
never: 'nunca',
|
|
901
|
+
on: 'ativado',
|
|
902
|
+
off: 'desativado',
|
|
903
|
+
'❆ dreaming': '❆ consolidando',
|
|
904
|
+
'Remove matching entries from managed auto-memory.':
|
|
905
|
+
'Remover entradas correspondentes da memória automática gerenciada.',
|
|
906
|
+
'Usage: /forget <memory text to remove>':
|
|
907
|
+
'Uso: /forget <texto de memória a remover>',
|
|
908
|
+
'No managed auto-memory entries matched: {{query}}':
|
|
909
|
+
'Nenhuma entrada de memória automática gerenciada correspondeu: {{query}}',
|
|
910
|
+
'Show managed auto-memory status.':
|
|
911
|
+
'Mostrar status da memória automática gerenciada.',
|
|
912
|
+
'Run managed auto-memory extraction for the current session.':
|
|
913
|
+
'Executar extração de memória automática gerenciada para a sessão atual.',
|
|
914
|
+
'Managed auto-memory root: {{root}}':
|
|
915
|
+
'Raiz da memória automática gerenciada: {{root}}',
|
|
916
|
+
'Managed auto-memory topics:': 'Tópicos de memória automática gerenciada:',
|
|
917
|
+
'No extraction cursor found yet.':
|
|
918
|
+
'Nenhum cursor de extração encontrado ainda.',
|
|
919
|
+
'Cursor: session={{sessionId}}, offset={{offset}}, updated={{updatedAt}}':
|
|
920
|
+
'Cursor: sessão={{sessionId}}, offset={{offset}}, atualizado={{updatedAt}}',
|
|
921
|
+
'No chat client available to extract memory.':
|
|
922
|
+
'Nenhum cliente de chat disponível para extrair memória.',
|
|
923
|
+
'Managed auto-memory extraction is already running.':
|
|
924
|
+
'A extração de memória automática gerenciada já está em execução.',
|
|
925
|
+
'Managed auto-memory extraction found no new durable memories.':
|
|
926
|
+
'A extração de memória automática gerenciada não encontrou novas memórias duráveis.',
|
|
927
|
+
'Consolidate managed auto-memory topic files.':
|
|
928
|
+
'Consolidar arquivos de tópicos de memória automática gerenciada.',
|
|
929
|
+
'Managed auto-memory dream found nothing to improve.':
|
|
930
|
+
'A consolidação de memória automática não encontrou nada para melhorar.',
|
|
931
|
+
'Deduplicated entries: {{count}}': 'Entradas desduplicadas: {{count}}',
|
|
932
|
+
'Save a durable memory using the save_memory tool.':
|
|
933
|
+
'Salvar uma memória durável usando a ferramenta save_memory.',
|
|
934
|
+
'Usage: /remember [--global|--project] <text to remember>':
|
|
935
|
+
'Uso: /remember [--global|--project] <texto a lembrar>',
|
|
894
936
|
|
|
895
937
|
// ============================================================================
|
|
896
938
|
// Commands - MCP
|
|
@@ -1520,6 +1562,8 @@ export default {
|
|
|
1520
1562
|
'Você pode alternar o modo de permissão rapidamente com Shift+Tab ou /approval-mode.',
|
|
1521
1563
|
'Try /insight to generate personalized insights from your chat history.':
|
|
1522
1564
|
'Experimente /insight para gerar insights personalizados do seu histórico de conversas.',
|
|
1565
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.':
|
|
1566
|
+
'Pressione Ctrl+O para alternar o modo compacto — ocultar saída de ferramentas e raciocínio.',
|
|
1523
1567
|
'Add a QWEN.md file to give Qwen Code persistent project context.':
|
|
1524
1568
|
'Adicione um arquivo QWEN.md para dar ao Qwen Code um contexto persistente do projeto.',
|
|
1525
1569
|
'Use /btw to ask a quick side question without disrupting the conversation.':
|
|
@@ -1983,6 +2027,7 @@ export default {
|
|
|
1983
2027
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
1984
2028
|
'(Use ↑ ↓ para navegar, Enter para selecionar, Ctrl+C para sair)\n',
|
|
1985
2029
|
compact: 'compacto',
|
|
2030
|
+
'compact mode: on (Ctrl+O off)': 'modo compacto: ligado (Ctrl+O desligar)',
|
|
1986
2031
|
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
1987
2032
|
'Ocultar saída da ferramenta e raciocínio para uma visualização mais limpa (alternar com Ctrl+O).',
|
|
1988
2033
|
'Press Ctrl+O to show full tool output':
|
package/locales/ru.js
CHANGED
|
@@ -88,6 +88,7 @@ export default {
|
|
|
88
88
|
'to search history': 'поиск в истории',
|
|
89
89
|
'to paste images': 'вставить изображения',
|
|
90
90
|
'for external editor': 'внешний редактор',
|
|
91
|
+
'to toggle compact mode': 'переключить компактный режим',
|
|
91
92
|
|
|
92
93
|
// ============================================================================
|
|
93
94
|
// Поля системной информации
|
|
@@ -661,6 +662,7 @@ export default {
|
|
|
661
662
|
'User Settings': 'Пользовательские настройки',
|
|
662
663
|
'System Settings': 'Системные настройки',
|
|
663
664
|
Extensions: 'Расширения',
|
|
665
|
+
'Session (temporary)': 'Сессия (временно)',
|
|
664
666
|
// Hooks - Status
|
|
665
667
|
'✓ Enabled': '✓ Включен',
|
|
666
668
|
'✗ Disabled': '✗ Отключен',
|
|
@@ -894,6 +896,44 @@ export default {
|
|
|
894
896
|
'Использование: /memory add [--global|--project] <текст для запоминания>',
|
|
895
897
|
'Attempting to save to memory {{scope}}: "{{fact}}"':
|
|
896
898
|
'Попытка сохранить в память {{scope}}: "{{fact}}"',
|
|
899
|
+
'Open auto-memory folder': 'Открыть папку автопамяти',
|
|
900
|
+
'Auto-memory: {{status}}': 'Автопамять: {{status}}',
|
|
901
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
|
|
902
|
+
'Автоконсолидация: {{status}} · {{lastDream}} · /dream для запуска',
|
|
903
|
+
never: 'никогда',
|
|
904
|
+
on: 'вкл',
|
|
905
|
+
off: 'выкл',
|
|
906
|
+
'❆ dreaming': '❆ консолидация',
|
|
907
|
+
'Remove matching entries from managed auto-memory.':
|
|
908
|
+
'Удалить совпадающие записи из управляемой автопамяти.',
|
|
909
|
+
'Usage: /forget <memory text to remove>':
|
|
910
|
+
'Использование: /forget <текст воспоминания для удаления>',
|
|
911
|
+
'No managed auto-memory entries matched: {{query}}':
|
|
912
|
+
'Не найдено совпадающих записей автопамяти: {{query}}',
|
|
913
|
+
'Show managed auto-memory status.': 'Показать статус управляемой автопамяти.',
|
|
914
|
+
'Run managed auto-memory extraction for the current session.':
|
|
915
|
+
'Запустить извлечение управляемой автопамяти для текущей сессии.',
|
|
916
|
+
'Managed auto-memory root: {{root}}':
|
|
917
|
+
'Корневая директория управляемой автопамяти: {{root}}',
|
|
918
|
+
'Managed auto-memory topics:': 'Темы управляемой автопамяти:',
|
|
919
|
+
'No extraction cursor found yet.': 'Курсор извлечения ещё не найден.',
|
|
920
|
+
'Cursor: session={{sessionId}}, offset={{offset}}, updated={{updatedAt}}':
|
|
921
|
+
'Курсор: сессия={{sessionId}}, смещение={{offset}}, обновлено={{updatedAt}}',
|
|
922
|
+
'No chat client available to extract memory.':
|
|
923
|
+
'Нет доступного чат-клиента для извлечения памяти.',
|
|
924
|
+
'Managed auto-memory extraction is already running.':
|
|
925
|
+
'Извлечение управляемой автопамяти уже выполняется.',
|
|
926
|
+
'Managed auto-memory extraction found no new durable memories.':
|
|
927
|
+
'Извлечение управляемой автопамяти не нашло новых долгосрочных воспоминаний.',
|
|
928
|
+
'Consolidate managed auto-memory topic files.':
|
|
929
|
+
'Консолидировать файлы тем управляемой автопамяти.',
|
|
930
|
+
'Managed auto-memory dream found nothing to improve.':
|
|
931
|
+
'Консолидация автопамяти не нашла чего улучшать.',
|
|
932
|
+
'Deduplicated entries: {{count}}': 'Удалено дубликатов: {{count}}',
|
|
933
|
+
'Save a durable memory using the save_memory tool.':
|
|
934
|
+
'Сохранить долгосрочную память с помощью инструмента save_memory.',
|
|
935
|
+
'Usage: /remember [--global|--project] <text to remember>':
|
|
936
|
+
'Использование: /remember [--global|--project] <текст для запоминания>',
|
|
897
937
|
|
|
898
938
|
// ============================================================================
|
|
899
939
|
// Команды - MCP
|
|
@@ -1714,6 +1754,8 @@ export default {
|
|
|
1714
1754
|
'Вы можете быстро переключать режим разрешений с помощью Tab или /approval-mode.',
|
|
1715
1755
|
'Try /insight to generate personalized insights from your chat history.':
|
|
1716
1756
|
'Попробуйте /insight, чтобы получить персонализированные выводы из истории чатов.',
|
|
1757
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.':
|
|
1758
|
+
'Нажмите Ctrl+O для переключения компактного режима — скрыть вывод инструментов и рассуждения.',
|
|
1717
1759
|
'Add a QWEN.md file to give Qwen Code persistent project context.':
|
|
1718
1760
|
'Добавьте файл QWEN.md, чтобы предоставить Qwen Code постоянный контекст проекта.',
|
|
1719
1761
|
'Use /btw to ask a quick side question without disrupting the conversation.':
|
|
@@ -1990,6 +2032,7 @@ export default {
|
|
|
1990
2032
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
1991
2033
|
'(↑ ↓ стрелки для навигации, Enter для выбора, Ctrl+C для выхода)\n',
|
|
1992
2034
|
compact: 'компактный',
|
|
2035
|
+
'compact mode: on (Ctrl+O off)': 'компактный режим: вкл (Ctrl+O выкл)',
|
|
1993
2036
|
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
1994
2037
|
'Скрывать вывод инструментов и процесс рассуждений для более чистого вида (переключить с помощью Ctrl+O).',
|
|
1995
2038
|
'Press Ctrl+O to show full tool output':
|
package/locales/zh.js
CHANGED
|
@@ -57,6 +57,7 @@ export default {
|
|
|
57
57
|
'to search history': '搜索历史',
|
|
58
58
|
'to paste images': '粘贴图片',
|
|
59
59
|
'for external editor': '外部编辑器',
|
|
60
|
+
'to toggle compact mode': '切换紧凑模式',
|
|
60
61
|
'Jump through words in the input': '在输入中按单词跳转',
|
|
61
62
|
'Close dialogs, cancel requests, or quit application':
|
|
62
63
|
'关闭对话框、取消请求或退出应用程序',
|
|
@@ -686,6 +687,7 @@ export default {
|
|
|
686
687
|
'User Settings': '用户设置',
|
|
687
688
|
'System Settings': '系统设置',
|
|
688
689
|
Extensions: '扩展',
|
|
690
|
+
'Session (temporary)': '会话(临时)',
|
|
689
691
|
// Hooks - Status
|
|
690
692
|
'✓ Enabled': '✓ 已启用',
|
|
691
693
|
'✗ Disabled': '✗ 已禁用',
|
|
@@ -897,6 +899,41 @@ export default {
|
|
|
897
899
|
'用法:/memory add [--global|--project] <要记住的文本>',
|
|
898
900
|
'Attempting to save to memory {{scope}}: "{{fact}}"':
|
|
899
901
|
'正在尝试保存到记忆 {{scope}}:"{{fact}}"',
|
|
902
|
+
'Open auto-memory folder': '打开自动记忆文件夹',
|
|
903
|
+
'Auto-memory: {{status}}': '自动记忆:{{status}}',
|
|
904
|
+
'Auto-dream: {{status}} · {{lastDream}} · /dream to run':
|
|
905
|
+
'自动整理:{{status}} · {{lastDream}} · /dream 立即运行',
|
|
906
|
+
never: '从未',
|
|
907
|
+
on: '开',
|
|
908
|
+
off: '关',
|
|
909
|
+
'✦ dreaming': '✦ 整理中',
|
|
910
|
+
'Remove matching entries from managed auto-memory.':
|
|
911
|
+
'从托管自动记忆中删除匹配的条目。',
|
|
912
|
+
'Usage: /forget <memory text to remove>': '用法:/forget <要删除的记忆文本>',
|
|
913
|
+
'No managed auto-memory entries matched: {{query}}':
|
|
914
|
+
'没有匹配的托管自动记忆条目:{{query}}',
|
|
915
|
+
'Show managed auto-memory status.': '显示托管自动记忆状态',
|
|
916
|
+
'Run managed auto-memory extraction for the current session.':
|
|
917
|
+
'为当前会话运行托管自动记忆提炼',
|
|
918
|
+
'Managed auto-memory root: {{root}}': '托管自动记忆根目录:{{root}}',
|
|
919
|
+
'Managed auto-memory topics:': '托管自动记忆主题:',
|
|
920
|
+
'No extraction cursor found yet.': '尚未找到提炼游标。',
|
|
921
|
+
'Cursor: session={{sessionId}}, offset={{offset}}, updated={{updatedAt}}':
|
|
922
|
+
'游标:session={{sessionId}},offset={{offset}},updated={{updatedAt}}',
|
|
923
|
+
'No chat client available to extract memory.':
|
|
924
|
+
'没有可用于提炼记忆的聊天客户端。',
|
|
925
|
+
'Managed auto-memory extraction is already running.':
|
|
926
|
+
'托管自动记忆提炼已在运行中。',
|
|
927
|
+
'Managed auto-memory extraction found no new durable memories.':
|
|
928
|
+
'托管自动记忆提炼未发现新的持久记忆。',
|
|
929
|
+
'Consolidate managed auto-memory topic files.': '整理托管自动记忆主题文件',
|
|
930
|
+
'Managed auto-memory dream found nothing to improve.':
|
|
931
|
+
'托管自动记忆 dream 未发现可改进内容。',
|
|
932
|
+
'Deduplicated entries: {{count}}': '去重条目数:{{count}}',
|
|
933
|
+
'Save a durable memory using the save_memory tool.':
|
|
934
|
+
'使用 save_memory 工具保存一条持久记忆',
|
|
935
|
+
'Usage: /remember [--global|--project] <text to remember>':
|
|
936
|
+
'用法:/remember [--global|--project] <要记住的文本>',
|
|
900
937
|
|
|
901
938
|
// ============================================================================
|
|
902
939
|
// Commands - MCP
|
|
@@ -1480,6 +1517,8 @@ export default {
|
|
|
1480
1517
|
'按 Tab 或输入 /approval-mode 可快速切换权限模式。',
|
|
1481
1518
|
'Try /insight to generate personalized insights from your chat history.':
|
|
1482
1519
|
'试试 /insight,从聊天记录中生成个性化洞察。',
|
|
1520
|
+
'Press Ctrl+O to toggle compact mode — hide tool output and thinking for a cleaner view.':
|
|
1521
|
+
'按 Ctrl+O 切换紧凑模式 ── 隐藏工具输出和思考过程,界面更简洁。',
|
|
1483
1522
|
'Add a QWEN.md file to give Qwen Code persistent project context.':
|
|
1484
1523
|
'添加 QWEN.md 文件,为 Qwen Code 提供持久的项目上下文。',
|
|
1485
1524
|
'Use /btw to ask a quick side question without disrupting the conversation.':
|
|
@@ -1839,6 +1878,7 @@ export default {
|
|
|
1839
1878
|
'(Use ↑ ↓ arrows to navigate, Enter to select, Ctrl+C to exit)\n':
|
|
1840
1879
|
'(使用 ↑ ↓ 箭头导航,Enter 选择,Ctrl+C 退出)\n',
|
|
1841
1880
|
compact: '紧凑',
|
|
1881
|
+
'compact mode: on (Ctrl+O off)': '紧凑模式:开(Ctrl+O 关闭)',
|
|
1842
1882
|
'Hide tool output and thinking for a cleaner view (toggle with Ctrl+O).':
|
|
1843
1883
|
'紧凑模式下隐藏工具输出和思考过程,界面更简洁(Ctrl+O 切换)。',
|
|
1844
1884
|
'Press Ctrl+O to show full tool output': '按 Ctrl+O 查看详细工具调用结果',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qwen-code/qwen-code",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.15.0-preview.0",
|
|
4
4
|
"description": "Qwen Code - AI-powered coding assistant",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"bundled"
|
|
22
22
|
],
|
|
23
23
|
"config": {
|
|
24
|
-
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.
|
|
24
|
+
"sandboxImageUri": "ghcr.io/qwenlm/qwen-code:0.15.0-preview.0"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {},
|
|
27
27
|
"optionalDependencies": {
|
|
File without changes
|