@robinmordasiewicz/f5xc-xcsh 1.0.90-2601022257 → 1.0.91-2601022359

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/completions/_xcsh CHANGED
@@ -27,6 +27,7 @@ _xcsh() {
27
27
  local -a domains builtins
28
28
  domains=(
29
29
  'admin_console_and_ui:Static UI components and console assets.'
30
+ 'ai_services:AI assistant queries and feedback collection.'
30
31
  'api:Interface definitions, schema validation, and grouping.'
31
32
  'authentication:Authentication API'
32
33
  'bigip:iRules, data groups, and APM integration.'
@@ -70,6 +71,9 @@ _xcsh() {
70
71
  'console-ui:Alias for admin_console_and_ui'
71
72
  'ui-assets:Alias for admin_console_and_ui'
72
73
  'static-components:Alias for admin_console_and_ui'
74
+ 'ai:Alias for ai_services'
75
+ 'genai:Alias for ai_services'
76
+ 'assistant:Alias for ai_services'
73
77
  'apisec:Alias for api'
74
78
  'api-discovery:Alias for api'
75
79
  'authn:Alias for authentication'
@@ -176,6 +180,7 @@ _xcsh() {
176
180
  'exit:Exit the shell'
177
181
  'clear:Clear the screen'
178
182
  'history:Show command history'
183
+ 'refresh:Refresh git status in statusline'
179
184
  'context:Show current navigation context'
180
185
  'ctx:Show current navigation context'
181
186
  )
@@ -196,7 +201,7 @@ _xcsh() {
196
201
  (login)
197
202
  _values 'command' 'banner:Display xcsh banner with logo' 'profile:Manage saved connection profiles' 'context:Manage default namespace context'
198
203
  ;;
199
- (help|quit|exit|clear|history|context|ctx)
204
+ (help|quit|exit|clear|history|refresh|context|ctx)
200
205
  ;;
201
206
  (*)
202
207
  local -a actions
@@ -6,9 +6,9 @@ _xcsh_completions() {
6
6
  local cur prev words cword
7
7
  _init_completion || return
8
8
 
9
- local commands="admin_console_and_ui api authentication bigip billing_and_usage blindfold bot_and_threat_defense cdn ce_management certificates cloud_infrastructure cloudstatus completion container_services data_and_privacy_security data_intelligence ddos dns generative_ai login managed_kubernetes marketplace network network_security nginx_one object_storage observability rate_limiting secops_and_incident_response service_mesh shape sites statistics support telemetry_and_insights tenant_and_identity threat_campaign users virtual vpm_and_node_management waf console-ui ui-assets static-components apisec api-discovery authn oidc sso f5-bigip irule ltm billing-usage quotas usage-tracking bf encrypt secrets threat-defense tpm shape-bot cache content ce-mgmt edge-management ce-lifecycle cert certs ssl tls cloud infra provider vk8s containers workloads data-privacy pii sensitive-data lma di intelligence insights dos ddos-protect dns-zone zones mk8s appstack k8s-mgmt market addons extensions net routing bgp netsec nfw nginx nms nginx-plus storage s3 buckets obs monitoring synth ratelimit throttle policer secops incident-response mitigation mesh svc-mesh shape-sec safeap site deployment stats metrics logs tickets help-desk telemetry ti tenant-identity idm user-settings threats campaigns threat-intel user accounts iam lb loadbalancer vhost vpm nodes node-mgmt firewall appfw help quit exit clear history"
9
+ local commands="admin_console_and_ui ai_services api authentication bigip billing_and_usage blindfold bot_and_threat_defense cdn ce_management certificates cloud_infrastructure cloudstatus completion container_services data_and_privacy_security data_intelligence ddos dns generative_ai login managed_kubernetes marketplace network network_security nginx_one object_storage observability rate_limiting secops_and_incident_response service_mesh shape sites statistics support telemetry_and_insights tenant_and_identity threat_campaign users virtual vpm_and_node_management waf console-ui ui-assets static-components ai genai assistant apisec api-discovery authn oidc sso f5-bigip irule ltm billing-usage quotas usage-tracking bf encrypt secrets threat-defense tpm shape-bot cache content ce-mgmt edge-management ce-lifecycle cert certs ssl tls cloud infra provider vk8s containers workloads data-privacy pii sensitive-data lma di intelligence insights dos ddos-protect dns-zone zones mk8s appstack k8s-mgmt market addons extensions net routing bgp netsec nfw nginx nms nginx-plus storage s3 buckets obs monitoring synth ratelimit throttle policer secops incident-response mitigation mesh svc-mesh shape-sec safeap site deployment stats metrics logs tickets help-desk telemetry ti tenant-identity idm user-settings threats campaigns threat-intel user accounts iam lb loadbalancer vhost vpm nodes node-mgmt firewall appfw help quit exit clear history refresh"
10
10
  local actions="list get create delete replace apply status patch add-labels remove-labels"
11
- local builtins="help quit exit clear history context ctx"
11
+ local builtins="help quit exit clear history context ctx refresh"
12
12
  local global_flags="--help -h --version -v --no-color --output -o --namespace -ns --spec"
13
13
 
14
14
  # Handle completion based on position
@@ -54,7 +54,7 @@ _xcsh_completions() {
54
54
  COMPREPLY=($(compgen -W "show set list" -- "${cur}"))
55
55
  return 0
56
56
  ;;
57
- help | quit | exit | clear | history | context | ctx)
57
+ help | quit | exit | clear | history | refresh | context | ctx)
58
58
  return 0
59
59
  ;;
60
60
  *)
@@ -18,11 +18,13 @@ complete -c xcsh -n "__fish_use_subcommand" -a "quit" -d 'Exit the shell'
18
18
  complete -c xcsh -n "__fish_use_subcommand" -a "exit" -d 'Exit the shell'
19
19
  complete -c xcsh -n "__fish_use_subcommand" -a "clear" -d 'Clear the screen'
20
20
  complete -c xcsh -n "__fish_use_subcommand" -a "history" -d 'Show command history'
21
+ complete -c xcsh -n "__fish_use_subcommand" -a "refresh" -d 'Refresh git status in statusline'
21
22
  complete -c xcsh -n "__fish_use_subcommand" -a "context" -d 'Show current navigation context'
22
23
  complete -c xcsh -n "__fish_use_subcommand" -a "ctx" -d 'Show current navigation context'
23
24
 
24
25
  # Domain completions
25
26
  complete -c xcsh -n "__fish_use_subcommand" -a "admin_console_and_ui" -d 'Static UI components and console assets.'
27
+ complete -c xcsh -n "__fish_use_subcommand" -a "ai_services" -d 'AI assistant queries and feedback collection.'
26
28
  complete -c xcsh -n "__fish_use_subcommand" -a "api" -d 'Interface definitions, schema validation, and grouping.'
27
29
  complete -c xcsh -n "__fish_use_subcommand" -a "authentication" -d 'Authentication API'
28
30
  complete -c xcsh -n "__fish_use_subcommand" -a "bigip" -d 'iRules, data groups, and APM integration.'
@@ -68,6 +70,9 @@ complete -c xcsh -n "__fish_use_subcommand" -a "waf" -d 'Request inspection, att
68
70
  complete -c xcsh -n "__fish_use_subcommand" -a "console-ui" -d 'Alias for admin_console_and_ui'
69
71
  complete -c xcsh -n "__fish_use_subcommand" -a "ui-assets" -d 'Alias for admin_console_and_ui'
70
72
  complete -c xcsh -n "__fish_use_subcommand" -a "static-components" -d 'Alias for admin_console_and_ui'
73
+ complete -c xcsh -n "__fish_use_subcommand" -a "ai" -d 'Alias for ai_services'
74
+ complete -c xcsh -n "__fish_use_subcommand" -a "genai" -d 'Alias for ai_services'
75
+ complete -c xcsh -n "__fish_use_subcommand" -a "assistant" -d 'Alias for ai_services'
71
76
  complete -c xcsh -n "__fish_use_subcommand" -a "apisec" -d 'Alias for api'
72
77
  complete -c xcsh -n "__fish_use_subcommand" -a "api-discovery" -d 'Alias for api'
73
78
  complete -c xcsh -n "__fish_use_subcommand" -a "authn" -d 'Alias for authentication'
@@ -206,6 +211,16 @@ complete -c xcsh -n "__fish_seen_subcommand_from admin_console_and_ui" -a "statu
206
211
  complete -c xcsh -n "__fish_seen_subcommand_from admin_console_and_ui" -a "patch" -d 'Patch a resource'
207
212
  complete -c xcsh -n "__fish_seen_subcommand_from admin_console_and_ui" -a "add-labels" -d 'Add labels to a resource'
208
213
  complete -c xcsh -n "__fish_seen_subcommand_from admin_console_and_ui" -a "remove-labels" -d 'Remove labels from a resource'
214
+ complete -c xcsh -n "__fish_seen_subcommand_from ai_services" -a "list" -d 'List resources'
215
+ complete -c xcsh -n "__fish_seen_subcommand_from ai_services" -a "get" -d 'Get a specific resource'
216
+ complete -c xcsh -n "__fish_seen_subcommand_from ai_services" -a "create" -d 'Create a new resource'
217
+ complete -c xcsh -n "__fish_seen_subcommand_from ai_services" -a "delete" -d 'Delete a resource'
218
+ complete -c xcsh -n "__fish_seen_subcommand_from ai_services" -a "replace" -d 'Replace a resource'
219
+ complete -c xcsh -n "__fish_seen_subcommand_from ai_services" -a "apply" -d 'Apply configuration from file'
220
+ complete -c xcsh -n "__fish_seen_subcommand_from ai_services" -a "status" -d 'Get resource status'
221
+ complete -c xcsh -n "__fish_seen_subcommand_from ai_services" -a "patch" -d 'Patch a resource'
222
+ complete -c xcsh -n "__fish_seen_subcommand_from ai_services" -a "add-labels" -d 'Add labels to a resource'
223
+ complete -c xcsh -n "__fish_seen_subcommand_from ai_services" -a "remove-labels" -d 'Remove labels from a resource'
209
224
  complete -c xcsh -n "__fish_seen_subcommand_from api" -a "list" -d 'List resources'
210
225
  complete -c xcsh -n "__fish_seen_subcommand_from api" -a "get" -d 'Get a specific resource'
211
226
  complete -c xcsh -n "__fish_seen_subcommand_from api" -a "create" -d 'Create a new resource'