File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
src/vs/workbench/contrib/terminalContrib/chatAgentTools/common Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -92,26 +92,32 @@ export const terminalChatAgentToolsConfiguration: IStringDictionary<IConfigurati
92
92
'Write-Host' : true ,
93
93
'Write-Output' : true ,
94
94
ls : true ,
95
+ find : true ,
95
96
'Get-ChildItem' : true ,
96
97
pwd : true ,
97
98
'Get-Location' : true ,
98
99
cat : true ,
99
- 'Get-Content' : true ,
100
100
head : true ,
101
101
tail : true ,
102
+ 'Get-Content' : true ,
102
103
grep : true ,
103
- find : true ,
104
+ wc : true ,
105
+ 'Select-Object' : true ,
106
+ 'Select-String' : true ,
107
+ 'Where-Obejct' : true ,
108
+ 'Measure-Object' : true ,
109
+ sort : true ,
110
+ uniq : true ,
111
+ 'Sort-Object' : true ,
104
112
which : true ,
105
- whoami : true ,
113
+ 'Get-Command' : true ,
106
114
date : true ,
107
115
'Get-Date' : true ,
108
116
hostname : true ,
109
117
'Get-Host' : true ,
110
118
ps : true ,
111
119
'Get-Process' : true ,
112
- wc : true ,
113
- sort : true ,
114
- uniq : true ,
120
+ whoami : true ,
115
121
116
122
// There are countless dangerous commands available on the command line, the defaults here
117
123
// include common ones that the user is likely to want to explicitly approve first. This is
You can’t perform that action at this time.
0 commit comments