generated from amazon-archives/__template_Custom
-
Notifications
You must be signed in to change notification settings - Fork 416
Expand file tree
/
Copy pathfeed.json
More file actions
1314 lines (1314 loc) · 47.8 KB
/
feed.json
File metadata and controls
1314 lines (1314 loc) · 47.8 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "./feed-schema.json",
"entries": [
{
"$comment": "This is the next release, any changes here",
"type": "release",
"date": "2999-01-01",
"version": "0.0.0",
"title": "Version 0.0.0",
"hidden": true,
"changes": []
},
{
"type": "release",
"date": "2025-10-27",
"version": "1.19.1",
"title": "Version 1.19.1",
"changes": [
{
"type": "fixed",
"description": "Improved `fs-write` diff color contrast for dark and light terminal themes - [#3281](https://github.com/aws/amazon-q-developer-cli/pull/3281)"
},
{
"type": "fixed",
"description": "Non-interactive chat output now correctly prints to standard output - [#3277](https://github.com/aws/amazon-q-developer-cli/pull/3277)"
},
{
"type": "fixed",
"description": "Issue with random characters printed before the Spinner - [#3282](https://github.com/aws/amazon-q-developer-cli/pull/3282)"
}
]
},
{
"type": "release",
"date": "2025-10-23",
"version": "1.19.0",
"title": "Version 1.19.0",
"changes": [
{
"type": "added",
"description": "Image paste support and `/paste` command - [#3088](https://github.com/aws/amazon-q-developer-cli/pull/3088)"
},
{
"type": "fixed",
"description": "Improved UX for `q settings list` command - [#3167](https://github.com/aws/amazon-q-developer-cli/pull/3167)"
},
{
"type": "added",
"description": "File:// URI support for agent prompts - [#3024](https://github.com/aws/amazon-q-developer-cli/pull/3024)"
},
{
"type": "added",
"description": "PDF file support for knowledge - [#3151](https://github.com/aws/amazon-q-developer-cli/pull/3151)"
},
{
"type": "added",
"description": "Support configurable OAuth redirect URI per MCP server - [#3124](https://github.com/aws/amazon-q-developer-cli/pull/3124)"
},
{
"type": "fixed",
"description": "Fixes an issue with checkpoint feature, when starting multiple conversations from the same directory - [#3133](https://github.com/aws/amazon-q-developer-cli/pull/3133)"
}
]
},
{
"type": "release",
"date": "2025-10-13",
"version": "1.18.1",
"title": "Version 1.18.1",
"changes": [
{
"type": "fixed",
"description": "Minor version reporting an old version"
}
]
},
{
"type": "release",
"date": "2025-10-03",
"version": "1.18.0",
"title": "Version 1.18.0",
"changes": [
{
"type": "added",
"description": "[Experimental] Agent delegate tool - [#3073](https://github.com/aws/amazon-q-developer-cli/pull/3073)"
},
{
"type": "added",
"description": "Stop hook functionality - [#3070](https://github.com/aws/amazon-q-developer-cli/pull/3070)"
},
{
"type": "added",
"description": "Unified show and status commands for knowledge - [#3052](https://github.com/aws/amazon-q-developer-cli/pull/3052)"
},
{
"type": "added",
"description": "/logdump command - [#2539](https://github.com/aws/amazon-q-developer-cli/pull/2539)"
},
{
"type": "added",
"description": "Experiment manager functionality - [#3054](https://github.com/aws/amazon-q-developer-cli/pull/3054)"
},
{
"type": "fixed",
"description": "MCP prompts with no arguments - [#3018](https://github.com/aws/amazon-q-developer-cli/pull/3018)"
}
]
},
{
"type": "release",
"date": "2025-09-30",
"version": "1.17.1",
"title": "Version 1.17.1",
"changes": [
{
"type": "added",
"description": "Model description under /model command - [#3057](https://github.com/aws/amazon-q-developer-cli/pull/3057)"
}
]
},
{
"type": "release",
"date": "2025-09-29",
"version": "1.17.0",
"title": "Version 1.17.0",
"changes": [
{
"type": "added",
"description": "SSE support for MCP - [#2995](https://github.com/aws/amazon-q-developer-cli/pull/2995)"
},
{
"type": "fixed",
"description": "Reloads only the built-in tools only for /experiment - [#3012](https://github.com/aws/amazon-q-developer-cli/pull/3012)"
},
{
"type": "added",
"description": "Add a `/reply` command - [#2680](https://github.com/aws/amazon-q-developer-cli/pull/2680)"
},
{
"type": "added",
"description": "[Experimental] Adds checkpointing functionality using Git CLI commands - [#2896](https://github.com/aws/amazon-q-developer-cli/pull/2896)"
},
{
"type": "fixed",
"description": "Validation issues with MCP tool arguments - [#2986](https://github.com/aws/amazon-q-developer-cli/pull/2986)"
},
{
"type": "added",
"description": "[Experimental] Add context usage percentage indicator to prompt - [#2994](https://github.com/aws/amazon-q-developer-cli/pull/2994)"
},
{
"type": "added",
"description": "Support for custom prompts, see `/prompts` - [#2799](https://github.com/aws/amazon-q-developer-cli/pull/2799)"
},
{
"type": "fixed",
"description": "Various issues with MCP OAuth - [#2976](https://github.com/aws/amazon-q-developer-cli/pull/2976)"
},
{
"type": "fixed",
"description": "Improve error messages for dispatch failures - [#2969](https://github.com/aws/amazon-q-developer-cli/pull/2969)"
},
{
"type": "added",
"description": "Enhanced MCP prompt management with improved UX - [#2953](https://github.com/aws/amazon-q-developer-cli/pull/2953)"
}
]
},
{
"type": "release",
"date": "2025-09-19",
"version": "1.16.2",
"title": "Version 1.16.2",
"changes": [
{
"type": "added",
"description": "Add support for preToolUse and postToolUse hook - [#2875](https://github.com/aws/amazon-q-developer-cli/pull/2875)"
},
{
"type": "added",
"description": "Support for specifying oauth scopes via config - [#2925]( https://github.com/aws/amazon-q-developer-cli/pull/2925)"
},
{
"type": "fixed",
"description": "Support for headers ingestion for remote mcp - [#2925]( https://github.com/aws/amazon-q-developer-cli/pull/2925)"
},
{
"type": "added",
"description": "Change autocomplete shortcut from ctrl-f to ctrl-g - [#2634](https://github.com/aws/amazon-q-developer-cli/pull/2634)"
},
{
"type": "fixed",
"description": "Fix file-path expansion in mcp-config - [#2915]( https://github.com/aws/amazon-q-developer-cli/pull/2915)"
},
{
"type": "fixed",
"description": "Fix filepath expansion to use absolute paths - [#2933](https://github.com/aws/amazon-q-developer-cli/pull/2933)"
}
]
},
{
"type": "release",
"date": "2025-09-17",
"version": "1.16.1",
"title": "Version 1.16.1",
"changes": [
{
"type": "fixed",
"description": "Dashboard not updating after logging in - [#688](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/688)"
}
]
},
{
"type": "release",
"date": "2025-09-16",
"version": "1.16.0",
"title": "Version 1.16.0",
"changes": [
{
"type": "added",
"description": "Support for remote MCP connections - [#2836](https://github.com/aws/amazon-q-developer-cli/pull/2836)"
},
{
"type": "added",
"description": "A new `/tangent tail` command to preserve the last tangent conversation - [#2838](https://github.com/aws/amazon-q-developer-cli/pull/2838)"
},
{
"type": "added",
"description": "A new edit subcommand to `/agent` slash command for modifying existing agents - [#2854](https://github.com/aws/amazon-q-developer-cli/pull/2854)"
},
{
"type": "added",
"description": "A new auto-announcement feature with `/changelog` command - [#2833](https://github.com/aws/amazon-q-developer-cli/pull/2833)"
},
{
"type": "added",
"description": "A new CLI history persistence feature with file storage - [#2769](https://github.com/aws/amazon-q-developer-cli/pull/2769)"
},
{
"type": "added",
"description": "Support for comma-containing arguments in MCP --args parameter - [#2754](https://github.com/aws/amazon-q-developer-cli/pull/2754)"
},
{
"type": "added",
"description": "Support for configurable autoAllowReadonly setting in use_aws tool - [#2828](https://github.com/aws/amazon-q-developer-cli/pull/2828)"
},
{
"type": "added",
"description": "Support for configurable line wrapping in chat interface - [#2816](https://github.com/aws/amazon-q-developer-cli/pull/2816)"
},
{
"type": "added",
"description": "Support for model field in agent configuration format - [#2815](https://github.com/aws/amazon-q-developer-cli/pull/2815)"
},
{
"type": "added",
"description": "AGENTS.md documentation to default agent resources - [#2812](https://github.com/aws/amazon-q-developer-cli/pull/2812)"
},
{
"type": "security",
"description": "Reduced default fs_read trust permission to current working directory only - [#2824](https://github.com/aws/amazon-q-developer-cli/pull/2824)"
},
{
"type": "security",
"description": "Changed autoAllowReadonly default to false for security in execute_bash - [#2846](https://github.com/aws/amazon-q-developer-cli/pull/2846)"
},
{
"type": "security",
"description": "Updated dangerous patterns for execute_bash to include $ character - [#2811](https://github.com/aws/amazon-q-developer-cli/pull/2811)"
},
{
"type": "fixed",
"description": "Path with trailing slash not being handled in file matching - [#2817](https://github.com/aws/amazon-q-developer-cli/pull/2817)"
},
{
"type": "fixed",
"description": "Summary being erroneously preserved when conversation is cleared - [#2793](https://github.com/aws/amazon-q-developer-cli/pull/2793)"
}
]
},
{
"type": "release",
"date": "2025-09-02",
"version": "1.15.0",
"title": "Version 1.15.0",
"changes": [
{
"type": "added",
"description": "A new command `/experiment` for toggling experimental features - [#2711](https://github.com/aws/amazon-q-developer-cli/pull/2711)"
},
{
"type": "added",
"description": "A new command `/agent generate` for generating agent config with Q - [#2690](https://github.com/aws/amazon-q-developer-cli/pull/2690)"
},
{
"type": "added",
"description": "A new command `/tangent` for going on a tangent without context pollution - [#2634](https://github.com/aws/amazon-q-developer-cli/pull/2634)"
},
{
"type": "added",
"description": "A new to-do list tool for handling complex multi-step prompts - [#2533](https://github.com/aws/amazon-q-developer-cli/pull/2533)"
},
{
"type": "added",
"description": "Agent-scoped knowledge base and context-specific search - [#2647](https://github.com/aws/amazon-q-developer-cli/pull/2647)"
},
{
"type": "added",
"description": "A new tool `introspect` that allows Q CLI to answer questions about itself - [#2677](https://github.com/aws/amazon-q-developer-cli/pull/2677)"
}
]
},
{
"type": "release",
"date": "2025-08-21",
"version": "1.14.1",
"title": "Version 1.14.1",
"changes": [
{
"type": "fixed",
"description": "Tool permission issue in agent - [#2619](https://github.com/aws/amazon-q-developer-cli/pull/2619)"
},
{
"type": "added",
"description": "MCP admin-level configuration with GetProfile - [#2639](https://github.com/aws/amazon-q-developer-cli/pull/2639)"
},
{
"type": "added",
"description": "Wildcard pattern matching support for agent allowedTools - [#2612](https://github.com/aws/amazon-q-developer-cli/pull/2612)"
},
{
"type": "added",
"description": "Agent hot swap capability - [#2637](https://github.com/aws/amazon-q-developer-cli/pull/2637)"
},
{
"type": "fixed",
"description": "Agent default profile printing issue in `use_aws`, plus minor doc updates - [#2617](https://github.com/aws/amazon-q-developer-cli/pull/2617)"
},
{
"type": "changed",
"description": "Knowledge beta improvements (phase 2): Refactored async_client and added BM25 support - [#2608](https://github.com/aws/amazon-q-developer-cli/pull/2608)"
}
]
},
{
"type": "release",
"date": "2025-08-15",
"version": "1.14.0",
"title": "Version 1.14.0",
"changes": [
{
"type": "added",
"description": "Additional supported models in `q chat`, see `/model` - [#2419](https://github.com/aws/amazon-q-developer-cli/pull/2419)"
},
{
"type": "added",
"description": "`--include` and `--exclude` flags for the `/knowledge add` command - [#2545](https://github.com/aws/amazon-q-developer-cli/pull/2545)"
},
{
"type": "added",
"description": "Notifications on API retries - [#2607](https://github.com/aws/amazon-q-developer-cli/pull/2607)"
}
]
},
{
"type": "release",
"date": "2025-08-11",
"version": "1.13.3",
"title": "Version 1.13.3",
"changes": [
{
"type": "added",
"description": "Support for setting denied shell commands with `toolsSettings.execute_bash.deniedCommands` - [#2512](https://github.com/aws/amazon-q-developer-cli/pull/2512)"
},
{
"type": "added",
"description": "Support for setting denied AWS services with `toolsSettings.use_aws.deniedServices` - [#2512](https://github.com/aws/amazon-q-developer-cli/pull/2512)"
},
{
"type": "added",
"description": "Support for setting denied file paths for `fs_read` and `fs_write` using `deniedPaths` in `toolsSettings` - [#2512](https://github.com/aws/amazon-q-developer-cli/pull/2512)"
},
{
"type": "added",
"description": "Support for setting environment variables in MCP config - [#2241](https://github.com/aws/amazon-q-developer-cli/pull/2241)"
},
{
"type": "fixed",
"description": "`q mcp add` from failing when the targeted `mcp.json` file does not exist - [#2561](https://github.com/aws/amazon-q-developer-cli/pull/2561)"
}
]
},
{
"type": "release",
"date": "2025-08-08",
"version": "1.13.2",
"title": "Version 1.13.2",
"changes": [
{
"type": "added",
"description": "Regex matching for the `toolsSettings.execute_bash.allowedCommands` agent configuration - [#2483](https://github.com/aws/amazon-q-developer-cli/pull/2483)"
},
{
"type": "added",
"description": "Support for workspace `mcp.json` configuration when `useLegacyMcpJson` is enabled - [#2516](https://github.com/aws/amazon-q-developer-cli/pull/2516)"
},
{
"type": "added",
"description": "`/context show` to differentiate between agent and session context - [#2494](https://github.com/aws/amazon-q-developer-cli/pull/2494)"
},
{
"type": "fixed",
"description": "Issues with `q mcp` subcommands failing - [#2475](https://github.com/aws/amazon-q-developer-cli/pull/2475)"
},
{
"type": "fixed",
"description": "The `knowledge` tool always requiring permission - [#2501](https://github.com/aws/amazon-q-developer-cli/pull/2501)"
}
]
},
{
"type": "release",
"date": "2025-08-01",
"version": "1.13.1",
"title": "Version 1.13.1",
"changes": [
{
"type": "added",
"description": "JSON schema support for the agent specification. Try it with `/agent create` - [#2440](https://github.com/aws/amazon-q-developer-cli/pull/2440)"
},
{
"type": "deprecated",
"description": "The `/profile` command - [#2468](https://github.com/aws/amazon-q-developer-cli/pull/2468)"
},
{
"type": "fixed",
"description": "Tool permissioning not being reset - [#2469](https://github.com/aws/amazon-q-developer-cli/pull/2469)"
},
{
"type": "fixed",
"description": "An issue with history compaction not being applied on context overflow"
}
]
},
{
"type": "release",
"date": "2025-07-31",
"version": "1.13.0",
"title": "Version 1.13.0",
"changes": [
{
"type": "added",
"description": "A new paradigm for working with `q chat` using agents. [See the documentation for more details](https://github.com/aws/amazon-q-developer-cli/blob/main/docs/SUMMARY.md)"
},
{
"type": "added",
"description": "A new setting to disable markdown rendering in `qchat` with `chat.disableMarkdownRendering` - [#2223](https://github.com/aws/amazon-q-developer-cli/pull/2223)"
},
{
"type": "added",
"description": "A new setting to disable markdown rendering in `qchat` with `chat.disableMarkdownRendering` - [#2236](https://github.com/aws/amazon-q-developer-cli/pull/2236)"
},
{
"type": "fixed",
"description": "An issue with `/compact` failing for large initial messages - [#2375](https://github.com/aws/amazon-q-developer-cli/pull/2375)"
},
{
"type": "fixed",
"description": "Images being removed from the conversation history - [#2333](https://github.com/aws/amazon-q-developer-cli/pull/2333)"
},
{
"type": "fixed",
"description": "Code block detection for multi-line input - [#2384](https://github.com/aws/amazon-q-developer-cli/pull/2384)"
}
]
},
{
"type": "release",
"date": "2025-07-22",
"version": "1.12.7",
"title": "Version 1.12.7",
"changes": [
{
"type": "fixed",
"description": "Issues with `q chat` requests not being cached correctly - [#461](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/461)"
}
]
},
{
"type": "release",
"date": "2025-07-17",
"version": "1.12.6",
"title": "Version 1.12.6",
"changes": [
{
"type": "fixed",
"description": "Issues with read-only commands with the `execute_bash` tool - [#444](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/444)"
}
]
},
{
"type": "release",
"date": "2025-07-14",
"version": "1.12.5",
"title": "Version 1.12.5",
"changes": [
{
"type": "added",
"description": "(Experimental) Support for Sigv4 authentication with `q chat`. Launch chat with the environment variable `AMAZON_Q_SIGV4=1` - [#207](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/207)"
},
{
"type": "fixed",
"description": "An issue with authentication failing for long chat sessions - [#424](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/424)"
},
{
"type": "fixed",
"description": "Issues with parsing `/compact` and `/editor` arguments - [#425](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/425)"
},
{
"type": "changed",
"description": "`q chat` inline prompt hints to be disabled by default. To enable, run `q settings chat.enableHistoryHints true` - [#429](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/429)"
}
]
},
{
"type": "release",
"date": "2025-07-09",
"version": "1.12.4",
"title": "Version 1.12.4",
"changes": [
{
"type": "added",
"description": "Extra options for history compaction in `q chat` - see `/compact --help` - [#402](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/402)"
},
{
"type": "fixed",
"description": "Issues with `/compact` - [#407](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/407)"
}
]
},
{
"type": "release",
"date": "2025-07-03",
"version": "1.12.3",
"title": "Version 1.12.3",
"changes": [
{
"type": "fixed",
"description": "Piping input into `q chat` - [#363](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/363)"
},
{
"type": "fixed",
"description": "An issue with `/compact` not being executed on context window overflow - [#365](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/365)"
},
{
"type": "changed",
"description": "The `-a` flag to alias to `--trust-all-tools` - [#372](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/372)"
},
{
"type": "added",
"description": "Terminal bell support for the emacs eat terminal - [#357](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/357)"
}
]
},
{
"type": "release",
"date": "2025-06-30",
"version": "1.12.2",
"title": "Version 1.12.2",
"changes": [
{
"type": "added",
"description": "Autocompletion with ghost text in `q chat`. Accept completions using right arrow or `Ctrl + f` - [#288](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/288)"
},
{
"type": "added",
"description": "A purpose tag for the `fs_write` tool that summarizes the change being made - [#279](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/279)"
},
{
"type": "changed",
"description": "The `/context hooks` slash command to `/hooks` in `q chat` - [#223](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/223)"
},
{
"type": "fixed",
"description": "`--trust-tools` to work with MCP tools in `q chat` - [#206](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/206)"
},
{
"type": "fixed",
"description": "Formatting for error messages on prompt retrieval from MCP servers - [#216](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/216)"
},
{
"type": "fixed",
"description": "File name extension inconsistency with `/save` and `/load` in `q chat` - [#289](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/289)"
}
]
},
{
"type": "release",
"date": "2025-06-17",
"version": "1.12.1",
"title": "Version 1.12.1",
"changes": [
{
"type": "changed",
"description": "The default `q chat` model to Sonnet 4 for users in the IAD region - [#219](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/219)"
},
{
"type": "added",
"description": "Support for passing arguments to MCP server configuration in the CLI - [#262](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/262)"
},
{
"type": "added",
"description": "Support for disabling MCP servers with `disabled: true` - [#257](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/257)"
},
{
"type": "added",
"description": "Instructions on using `/prompts` in `q chat` - [#208](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/208)"
},
{
"type": "fixed",
"description": "Validation errors with `/compact` in `q chat` - [#224](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/224)"
},
{
"type": "fixed",
"description": "Issues resolving relative paths with `fs_write` in `q chat` - [#256](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/256)"
}
]
},
{
"type": "release",
"date": "2025-06-11",
"version": "1.12.0",
"title": "Version 1.12.0",
"changes": [
{
"type": "added",
"description": "Support for upgrading to a pro subscription with `/subscribe` in `q chat` - [#143](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/143)"
},
{
"type": "fixed",
"description": "`q chat` failing to launch in some Linux installations - [#169](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/169)"
}
]
},
{
"type": "release",
"date": "2025-06-04",
"version": "1.11.0",
"title": "Version 1.11.0",
"changes": [
{
"type": "added",
"description": "Model selection and Sonnet v4 support with `/model` in `q chat` - [#157](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/157)"
},
{
"type": "fixed",
"description": "Formatting issues with the `fs_read` tool in `q chat` - [#122](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/122)"
},
{
"type": "fixed",
"description": "Various issues in `q chat`"
}
]
},
{
"type": "release",
"date": "2025-05-21",
"version": "1.10.2",
"title": "Version 1.10.2",
"changes": [
{
"type": "added",
"description": "Server load timeout for no interactive mode - [#1851](https://github.com/aws/amazon-q-developer-cli/pull/1851)"
},
{
"type": "added",
"description": "`chat.editMode` to tips - [#1900](https://github.com/aws/amazon-q-developer-cli/pull/1900)"
},
{
"type": "fixed",
"description": "Unqualified tools from being included in the tools schema - [#84](https://github.com/aws/amazon-q-developer-cli-autocomplete/pull/84)"
},
{
"type": "fixed",
"description": "An issue where an early error from an mcp server will cause loading status to be terminated prematurely - [#1919](https://github.com/aws/amazon-q-developer-cli/pull/1919)"
},
{
"type": "fixed",
"description": "Tools and prompts not being sorted - [#1809](https://github.com/aws/amazon-q-developer-cli/pull/1809)"
},
{
"type": "fixed",
"description": "Various issues with `q chat`"
}
]
},
{
"type": "release",
"date": "2025-05-16",
"version": "1.10.1",
"title": "Version 1.10.1",
"changes": [
{
"type": "fixed",
"description": "An issue where `q chat` would prompt for login while already logged in - [#1862](https://github.com/aws/amazon-q-developer-cli/pull/1862)"
}
]
},
{
"type": "release",
"date": "2025-05-15",
"version": "1.10.0",
"title": "Version 1.10.0",
"changes": [
{
"type": "added",
"description": "Support for FRA (region `eu-central-1`) for pro users - [#1333](https://github.com/aws/amazon-q-developer-cli/pull/1333)"
},
{
"type": "added",
"description": "Persistent conversations by working directory with `q chat --resume` - [#1767](https://github.com/aws/amazon-q-developer-cli/pull/1767)"
},
{
"type": "added",
"description": "Background MCP server loading in `q chat` - [#1775](https://github.com/aws/amazon-q-developer-cli/pull/1775)"
},
{
"type": "added",
"description": "Image support in `q chat` - [#1489](https://github.com/aws/amazon-q-developer-cli/pull/1489)"
},
{
"type": "added",
"description": "Git-aware file selection in the `q chat` fuzzy finder - [#1649](https://github.com/aws/amazon-q-developer-cli/pull/1649)"
},
{
"type": "added",
"description": "Commands `/save` and `/load` for saving and loading conversation state in `q chat` - [#1762](https://github.com/aws/amazon-q-developer-cli/pull/1762)"
},
{
"type": "added",
"description": "A new subcommand `q mcp` for updating MCP server configuration - [#1836](https://github.com/aws/amazon-q-developer-cli/pull/1836)"
},
{
"type": "added",
"description": "An improved `/context show --expand` in `q chat` - [#1762](https://github.com/aws/amazon-q-developer-cli/pull/1762)"
},
{
"type": "added",
"description": "A new flag `--changelog` to `q version` for displaying the change log from the CLI - [#1375](https://github.com/aws/amazon-q-developer-cli/pull/1375)"
},
{
"type": "fixed",
"description": "Context files causing overflow in `q chat` - [#1331](https://github.com/aws/amazon-q-developer-cli/pull/1331)"
},
{
"type": "fixed",
"description": "An issue with token overflow in the `/usage` command in `q chat` - [#1762](https://github.com/aws/amazon-q-developer-cli/pull/1762)"
},
{
"type": "fixed",
"description": "An issue where non-interactive chat sessions displayed welcome banner - [#1437](https://github.com/aws/amazon-q-developer-cli/pull/1437)"
},
{
"type": "fixed",
"description": "An issue where the `/context` chat command reference was duplicated in `/help` - [#1438](https://github.com/aws/amazon-q-developer-cli/pull/1438)"
},
{
"type": "fixed",
"description": "Preferred default of fuzzy find to `ctrl+s` in `q chat` - [#1442](https://github.com/aws/amazon-q-developer-cli/pull/1442)"
},
{
"type": "fixed",
"description": "Various issues in `q chat`"
}
]
},
{
"type": "release",
"date": "2025-04-28",
"version": "1.9.1",
"title": "Version 1.9.1",
"changes": [
{
"type": "fixed",
"description": "A bug where chat would sometimes become unresponsive"
}
]
},
{
"type": "release",
"date": "2025-04-28",
"version": "1.9.0",
"title": "Version 1.9.0",
"changes": [
{
"type": "added",
"description": "Model Context Protocol (MCP) support in `q chat` - [#1365](https://github.com/aws/amazon-q-developer-cli/pull/1365)"
},
{
"type": "added",
"description": "Fuzzy finding support for selecting profiles in `q chat` - [#1388](https://github.com/aws/amazon-q-developer-cli/pull/1388)"
},
{
"type": "changed",
"description": "`/compact` to display the summary by default in `q chat` - [#1313](https://github.com/aws/amazon-q-developer-cli/pull/1313)"
},
{
"type": "fixed",
"description": "Various issues in `q chat`"
}
]
},
{
"type": "release",
"date": "2025-04-25",
"version": "1.8.1",
"title": "Version 1.8.1",
"changes": [
{
"type": "fixed",
"description": "An issue with `/compact` failing in `q chat`"
}
]
},
{
"type": "release",
"date": "2025-04-22",
"version": "1.8.0",
"title": "Version 1.8.0",
"changes": [
{
"type": "added",
"description": "Fuzzy search for slash commands in `q chat` with `Ctrl + k` - [#1181](https://github.com/aws/amazon-q-developer-cli/pull/1181)"
},
{
"type": "added",
"description": "A new capability for dynamically adding context to messages in `q chat` with \"context hooks\" - [#1218](https://github.com/aws/amazon-q-developer-cli/pull/1218)"
},
{
"type": "added",
"description": "A new command `/usage` in `q chat` to display an estimate of the context window usage - [#1177](https://github.com/aws/amazon-q-developer-cli/pull/1177)"
},
{
"type": "added",
"description": "A new greeting UI with rotating tips in `q chat` - [#1262](https://github.com/aws/amazon-q-developer-cli/pull/1262)"
},
{
"type": "added",
"description": "An extra confirmation prompt before clearing the history in `q chat` with `/clear` - [#1180](https://github.com/aws/amazon-q-developer-cli/pull/1180)"
},
{
"type": "added",
"description": "Support for using a system proxy with the `HTTP_PROXY` environment variable - [#1199](https://github.com/aws/amazon-q-developer-cli/pull/1199)"
},
{
"type": "added",
"description": "The ability to reset a single tool's permissions in `q chat` with `/tools reset` - [#1102](https://github.com/aws/amazon-q-developer-cli/pull/1102)"
},
{
"type": "added",
"description": "Various UI improvements in `q chat`"
},
{
"type": "fixed",
"description": "Arguments for `EDITOR` not being correctly parsed by the `/editor` command in `q chat` - [#1209](https://github.com/aws/amazon-q-developer-cli/pull/1209)"
},
{
"type": "fixed",
"description": "The `/compact` command failing to compact history after the context window has been filled in `q chat` - [#1275](https://github.com/aws/amazon-q-developer-cli/pull/1275)"
},
{
"type": "fixed",
"description": "Various issues in `q chat`"
}
]
},
{
"type": "release",
"date": "2025-04-10",
"version": "1.7.3",
"title": "Version 1.7.3",
"changes": [
{
"type": "added",
"description": "A new command `/tools` in `q chat` for granular tool permissioning - [#1054](https://github.com/aws/amazon-q-developer-cli/pull/1054)"
},
{
"type": "added",
"description": "A new command `/compact` in `q chat` for summarizing the conversation history - [#1128](https://github.com/aws/amazon-q-developer-cli/pull/1128)"
},
{
"type": "added",
"description": "A new command `/editor` in `q chat` for composing prompts using the configured editor - [#1035](https://github.com/aws/amazon-q-developer-cli/pull/1035)"
},
{
"type": "added",
"description": "A new command `/issue` in `q chat` for creating new GitHub issues - [#990](https://github.com/aws/amazon-q-developer-cli/pull/990)"
},
{
"type": "added",
"description": "A new tool `report_issue` in `q chat` for creating new GitHub issues - [#974](https://github.com/aws/amazon-q-developer-cli/pull/974)"
},
{
"type": "added",
"description": "An improved context file display in `q chat` - [#983](https://github.com/aws/amazon-q-developer-cli/pull/983)"
},
{
"type": "added",
"description": "Optional terminal notifications on completed responses - [#1135](https://github.com/aws/amazon-q-developer-cli/pull/1135)"
},
{
"type": "added",
"description": "An option `--non-interactive` to invoke `q chat` headlessly - [#878](https://github.com/aws/amazon-q-developer-cli/pull/878)"
},
{
"type": "added",
"description": "File name autocompletion in `q chat` - [#930](https://github.com/aws/amazon-q-developer-cli/pull/930)"
},
{
"type": "added",
"description": "Improved `execute_bash` pipe safety checking in `q chat` - [#927](https://github.com/aws/amazon-q-developer-cli/pull/927)"
},
{
"type": "changed",
"description": "Executing `q` now enters `q chat` instead of opening the dashboard - [#987](https://github.com/aws/amazon-q-developer-cli/pull/987)"
},
{
"type": "fixed",
"description": "A missing Match criteria error in the ssh integration - [#1134](https://github.com/aws/amazon-q-developer-cli/pull/1134)"
},
{
"type": "fixed",
"description": "Various issues in `q chat`"
}
]
},
{
"type": "release",
"date": "2025-03-20",
"version": "1.7.2",
"title": "Version 1.7.2",
"changes": [
{
"type": "added",
"description": "Support for automatically adding files as context in `q chat` - [#834](https://github.com/aws/amazon-q-developer-cli/pull/834)"
},
{
"type": "added",
"description": "A search ability when reading the filesystem in `q chat` - [#811](https://github.com/aws/amazon-q-developer-cli/pull/811)"
},
{
"type": "added",
"description": "A larger maximum tool response size in `q chat` - [#850](https://github.com/aws/amazon-q-developer-cli/pull/850)"
},
{
"type": "fixed",
"description": "Detecting libc on certain Linux distributions during install - [#851](https://github.com/aws/amazon-q-developer-cli/pull/851)"
}
]
},
{
"type": "release",
"date": "2025-03-14",
"version": "1.7.1",
"title": "Version 1.7.1",
"changes": [
{
"type": "added",
"description": "An improved file diff in `q chat` - [#799](https://github.com/aws/amazon-q-developer-cli/pull/799)"
},
{
"type": "added",
"description": "Multi-line input support in `q chat` - [#831](https://github.com/aws/amazon-q-developer-cli/pull/831)"
},
{
"type": "added",
"description": "An append functionality with fs_write in `q chat` - [#764](https://github.com/aws/amazon-q-developer-cli/pull/764)"
},
{
"type": "added",
"description": "Support for WindSurf Next - [#814](https://github.com/aws/amazon-q-developer-cli/pull/814)"
},
{
"type": "changed",
"description": "`ctrl+c` so that it exits `q chat` on first attempt - [#830](https://github.com/aws/amazon-q-developer-cli/pull/830)"
},
{
"type": "fixed",
"description": "Minor issues in `q chat`"
}
]
},
{
"type": "release",
"date": "2025-03-05",
"version": "1.7.0",
"title": "Version 1.7.0",
"changes": [
{
"type": "added",