@enjoys/context-engine 1.6.0 → 1.7.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.
Files changed (64) hide show
  1. package/README.md +8 -8
  2. package/data/commands/aliyun.json +158 -0
  3. package/data/commands/amplify.json +174 -0
  4. package/data/commands/argo.json +212 -0
  5. package/data/commands/argocd.json +144 -35
  6. package/data/commands/aws-copilot.json +161 -0
  7. package/data/commands/az-devops.json +155 -0
  8. package/data/commands/bq.json +177 -0
  9. package/data/commands/calicoctl.json +154 -0
  10. package/data/commands/chamber.json +128 -0
  11. package/data/commands/cilium.json +154 -0
  12. package/data/commands/civo.json +147 -0
  13. package/data/commands/cloudflared.json +133 -0
  14. package/data/commands/cmctl.json +143 -0
  15. package/data/commands/crossplane.json +119 -0
  16. package/data/commands/devspace.json +198 -0
  17. package/data/commands/doctl.json +510 -156
  18. package/data/commands/doppler.json +161 -0
  19. package/data/commands/eb.json +201 -0
  20. package/data/commands/ecs-cli.json +132 -0
  21. package/data/commands/flux.json +190 -0
  22. package/data/commands/garden.json +180 -0
  23. package/data/commands/gsutil.json +197 -0
  24. package/data/commands/hcloud.json +169 -0
  25. package/data/commands/helmfile.json +178 -0
  26. package/data/commands/heroku.json +239 -0
  27. package/data/commands/ibmcloud.json +184 -0
  28. package/data/commands/infisical.json +127 -0
  29. package/data/commands/istioctl.json +129 -23
  30. package/data/commands/k3d.json +156 -0
  31. package/data/commands/k3s.json +134 -0
  32. package/data/commands/k9s.json +169 -62
  33. package/data/commands/kamel.json +155 -0
  34. package/data/commands/kn.json +160 -0
  35. package/data/commands/kube-score.json +86 -0
  36. package/data/commands/kubeconform.json +98 -0
  37. package/data/commands/kubectx.json +58 -0
  38. package/data/commands/kubens.json +45 -0
  39. package/data/commands/kustomize.json +82 -17
  40. package/data/commands/lightsail.json +168 -0
  41. package/data/commands/linkerd.json +174 -0
  42. package/data/commands/mc.json +236 -0
  43. package/data/commands/minikube.json +264 -60
  44. package/data/commands/oci.json +184 -0
  45. package/data/commands/okteto.json +164 -0
  46. package/data/commands/openstack.json +212 -0
  47. package/data/commands/popeye.json +109 -0
  48. package/data/commands/rancher.json +141 -0
  49. package/data/commands/rclone.json +275 -0
  50. package/data/commands/s3cmd.json +201 -0
  51. package/data/commands/scw.json +169 -0
  52. package/data/commands/skaffold.json +189 -0
  53. package/data/commands/skopeo.json +100 -19
  54. package/data/commands/sops.json +112 -24
  55. package/data/commands/stern.json +124 -0
  56. package/data/commands/telepresence.json +122 -0
  57. package/data/commands/tilt.json +160 -0
  58. package/data/commands/tkn.json +150 -0
  59. package/data/commands/upcloud.json +129 -0
  60. package/data/commands/velero.json +141 -0
  61. package/data/commands/vultr.json +157 -0
  62. package/data/commands/wrangler.json +129 -29
  63. package/data/manifest.json +1 -1
  64. package/package.json +2 -2
@@ -0,0 +1,236 @@
1
+ {
2
+ "name": "mc",
3
+ "description": "MinIO Client — S3-compatible cloud storage client",
4
+ "category": "cloud",
5
+ "platforms": [
6
+ "linux",
7
+ "macos",
8
+ "windows"
9
+ ],
10
+ "shells": [
11
+ "bash",
12
+ "zsh",
13
+ "fish",
14
+ "powershell"
15
+ ],
16
+ "subcommands": [
17
+ {
18
+ "name": "alias set",
19
+ "description": "Add a cloud storage alias",
20
+ "examples": [
21
+ "mc alias set myminio https://minio.example.com accesskey secretkey",
22
+ "mc alias set s3 https://s3.amazonaws.com AKID SKEY",
23
+ "mc alias set gcs https://storage.googleapis.com GOOG_ACCESS_KEY GOOG_SECRET"
24
+ ]
25
+ },
26
+ {
27
+ "name": "alias list",
28
+ "description": "List aliases",
29
+ "examples": [
30
+ "mc alias list"
31
+ ]
32
+ },
33
+ {
34
+ "name": "ls",
35
+ "description": "List objects",
36
+ "examples": [
37
+ "mc ls myminio/",
38
+ "mc ls myminio/mybucket/",
39
+ "mc ls --recursive myminio/mybucket/"
40
+ ]
41
+ },
42
+ {
43
+ "name": "cp",
44
+ "description": "Copy objects",
45
+ "examples": [
46
+ "mc cp file.txt myminio/bucket/",
47
+ "mc cp myminio/bucket/file.txt .",
48
+ "mc cp --recursive ./dir/ myminio/bucket/dir/"
49
+ ]
50
+ },
51
+ {
52
+ "name": "mv",
53
+ "description": "Move objects",
54
+ "examples": [
55
+ "mc mv myminio/bucket/old.txt myminio/bucket/new.txt"
56
+ ]
57
+ },
58
+ {
59
+ "name": "rm",
60
+ "description": "Remove objects",
61
+ "examples": [
62
+ "mc rm myminio/bucket/file.txt",
63
+ "mc rm --recursive --force myminio/bucket/dir/"
64
+ ]
65
+ },
66
+ {
67
+ "name": "mb",
68
+ "description": "Make bucket",
69
+ "examples": [
70
+ "mc mb myminio/newbucket"
71
+ ]
72
+ },
73
+ {
74
+ "name": "rb",
75
+ "description": "Remove bucket",
76
+ "examples": [
77
+ "mc rb myminio/oldbucket",
78
+ "mc rb --force myminio/oldbucket"
79
+ ]
80
+ },
81
+ {
82
+ "name": "mirror",
83
+ "description": "Mirror (sync) objects",
84
+ "examples": [
85
+ "mc mirror ./local/ myminio/bucket/",
86
+ "mc mirror myminio/bucket/ ./local/",
87
+ "mc mirror --watch ./local/ myminio/bucket/"
88
+ ]
89
+ },
90
+ {
91
+ "name": "cat",
92
+ "description": "Display object content",
93
+ "examples": [
94
+ "mc cat myminio/bucket/file.txt"
95
+ ]
96
+ },
97
+ {
98
+ "name": "head",
99
+ "description": "Display first lines",
100
+ "examples": [
101
+ "mc head myminio/bucket/file.txt"
102
+ ]
103
+ },
104
+ {
105
+ "name": "stat",
106
+ "description": "Object statistics",
107
+ "examples": [
108
+ "mc stat myminio/bucket/file.txt"
109
+ ]
110
+ },
111
+ {
112
+ "name": "du",
113
+ "description": "Disk usage",
114
+ "examples": [
115
+ "mc du myminio/bucket/"
116
+ ]
117
+ },
118
+ {
119
+ "name": "find",
120
+ "description": "Find objects",
121
+ "examples": [
122
+ "mc find myminio/bucket/ --name '*.csv'",
123
+ "mc find myminio/bucket/ --older-than 30d"
124
+ ]
125
+ },
126
+ {
127
+ "name": "diff",
128
+ "description": "Diff objects",
129
+ "examples": [
130
+ "mc diff myminio/bucket1/ myminio/bucket2/"
131
+ ]
132
+ },
133
+ {
134
+ "name": "share",
135
+ "description": "Generate presigned URLs",
136
+ "examples": [
137
+ "mc share download myminio/bucket/file.txt",
138
+ "mc share upload myminio/bucket/ --expire 24h"
139
+ ]
140
+ },
141
+ {
142
+ "name": "admin",
143
+ "description": "Admin operations",
144
+ "examples": [
145
+ "mc admin info myminio",
146
+ "mc admin user list myminio",
147
+ "mc admin user add myminio newuser newpassword",
148
+ "mc admin policy list myminio",
149
+ "mc admin service restart myminio"
150
+ ]
151
+ },
152
+ {
153
+ "name": "encrypt",
154
+ "description": "Manage encryption",
155
+ "examples": [
156
+ "mc encrypt set sse-s3 myminio/bucket/"
157
+ ]
158
+ },
159
+ {
160
+ "name": "event",
161
+ "description": "Manage bucket notifications",
162
+ "examples": [
163
+ "mc event add myminio/bucket arn:xxx --event put",
164
+ "mc event list myminio/bucket"
165
+ ]
166
+ },
167
+ {
168
+ "name": "version",
169
+ "description": "Manage bucket versioning",
170
+ "examples": [
171
+ "mc version enable myminio/bucket",
172
+ "mc version info myminio/bucket"
173
+ ]
174
+ },
175
+ {
176
+ "name": "retention",
177
+ "description": "Set object retention",
178
+ "examples": [
179
+ "mc retention set --default GOVERNANCE 30d myminio/bucket/"
180
+ ]
181
+ },
182
+ {
183
+ "name": "ilm",
184
+ "description": "Object lifecycle management",
185
+ "examples": [
186
+ "mc ilm rule list myminio/bucket",
187
+ "mc ilm rule add myminio/bucket --expire-days 90"
188
+ ]
189
+ }
190
+ ],
191
+ "globalOptions": [
192
+ {
193
+ "name": "--recursive",
194
+ "description": "Recursive operation"
195
+ },
196
+ {
197
+ "name": "--json",
198
+ "description": "JSON output"
199
+ },
200
+ {
201
+ "name": "--quiet",
202
+ "short": "-q",
203
+ "description": "Suppress output"
204
+ },
205
+ {
206
+ "name": "--insecure",
207
+ "description": "Skip TLS verification"
208
+ },
209
+ {
210
+ "name": "--config-dir",
211
+ "short": "-C",
212
+ "description": "Config directory",
213
+ "type": "string"
214
+ },
215
+ {
216
+ "name": "--debug",
217
+ "description": "Debug output"
218
+ }
219
+ ],
220
+ "examples": [
221
+ "mc alias set myminio https://minio.example.com accesskey secretkey",
222
+ "mc ls myminio/",
223
+ "mc cp file.txt myminio/bucket/",
224
+ "mc mirror ./local/ myminio/bucket/",
225
+ "mc rm --recursive --force myminio/bucket/old/",
226
+ "mc admin info myminio",
227
+ "mc share download myminio/bucket/file.txt",
228
+ "mc du myminio/bucket/"
229
+ ],
230
+ "relatedCommands": [
231
+ "s3cmd",
232
+ "aws",
233
+ "gsutil",
234
+ "rclone"
235
+ ]
236
+ }
@@ -1,60 +1,264 @@
1
- {
2
- "name": "minikube",
3
- "description": "Local Kubernetes engine",
4
- "category": "Containers / Kubernetes",
5
- "platforms": [
6
- "linux",
7
- "macos",
8
- "windows"
9
- ],
10
- "shells": [
11
- "bash",
12
- "zsh",
13
- "powershell"
14
- ],
15
- "subcommands": [
16
- {
17
- "name": "start",
18
- "description": "Starts a local Kubernetes cluster"
19
- },
20
- {
21
- "name": "stop",
22
- "description": "Stops a running local Kubernetes cluster"
23
- },
24
- {
25
- "name": "status",
26
- "description": "Gets the status of a local Kubernetes cluster"
27
- },
28
- {
29
- "name": "dashboard",
30
- "description": "Access the Kubernetes dashboard running within the minikube cluster"
31
- }
32
- ],
33
- "globalOptions": [],
34
- "examples": [
35
- {
36
- "command": "minikube start",
37
- "description": "Start a cluster"
38
- },
39
- {
40
- "command": "minikube status",
41
- "description": "Check cluster status"
42
- }
43
- ],
44
- "relatedCommands": [
45
- "kubectl",
46
- "docker",
47
- "helm"
48
- ],
49
- "contextEngine": {
50
- "detectors": [
51
- {
52
- "name": "status",
53
- "description": "Minikube Status",
54
- "command": "minikube status 2>/dev/null",
55
- "parser": "text",
56
- "cacheFor": 30
57
- }
58
- ]
59
- }
60
- }
1
+ {
2
+ "name": "minikube",
3
+ "description": "minikube — local Kubernetes cluster for development",
4
+ "category": "containers",
5
+ "platforms": [
6
+ "linux",
7
+ "macos",
8
+ "windows"
9
+ ],
10
+ "shells": [
11
+ "bash",
12
+ "zsh",
13
+ "fish",
14
+ "powershell"
15
+ ],
16
+ "subcommands": [
17
+ {
18
+ "name": "start",
19
+ "description": "Start a local cluster",
20
+ "examples": [
21
+ "minikube start",
22
+ "minikube start --driver=docker",
23
+ "minikube start --cpus=4 --memory=8192",
24
+ "minikube start --kubernetes-version=v1.27.0",
25
+ "minikube start --nodes=3",
26
+ "minikube start --container-runtime=containerd",
27
+ "minikube start -p my-cluster"
28
+ ]
29
+ },
30
+ {
31
+ "name": "stop",
32
+ "description": "Stop the cluster",
33
+ "examples": [
34
+ "minikube stop",
35
+ "minikube stop -p my-cluster"
36
+ ]
37
+ },
38
+ {
39
+ "name": "delete",
40
+ "description": "Delete the cluster",
41
+ "examples": [
42
+ "minikube delete",
43
+ "minikube delete --all",
44
+ "minikube delete -p my-cluster",
45
+ "minikube delete --purge"
46
+ ]
47
+ },
48
+ {
49
+ "name": "status",
50
+ "description": "Show cluster status",
51
+ "examples": [
52
+ "minikube status",
53
+ "minikube status -p my-cluster"
54
+ ]
55
+ },
56
+ {
57
+ "name": "dashboard",
58
+ "description": "Open Kubernetes dashboard",
59
+ "examples": [
60
+ "minikube dashboard",
61
+ "minikube dashboard --url"
62
+ ]
63
+ },
64
+ {
65
+ "name": "service",
66
+ "description": "Open a service URL",
67
+ "examples": [
68
+ "minikube service my-service",
69
+ "minikube service my-service --url",
70
+ "minikube service list"
71
+ ]
72
+ },
73
+ {
74
+ "name": "tunnel",
75
+ "description": "Create network tunnel for LoadBalancers",
76
+ "examples": [
77
+ "minikube tunnel",
78
+ "minikube tunnel --cleanup"
79
+ ]
80
+ },
81
+ {
82
+ "name": "addons",
83
+ "description": "Manage addons",
84
+ "examples": [
85
+ "minikube addons list",
86
+ "minikube addons enable ingress",
87
+ "minikube addons enable metrics-server",
88
+ "minikube addons enable dashboard",
89
+ "minikube addons disable ingress"
90
+ ]
91
+ },
92
+ {
93
+ "name": "ssh",
94
+ "description": "SSH into the node",
95
+ "examples": [
96
+ "minikube ssh",
97
+ "minikube ssh -- ls /"
98
+ ]
99
+ },
100
+ {
101
+ "name": "kubectl",
102
+ "description": "Run kubectl",
103
+ "examples": [
104
+ "minikube kubectl -- get pods",
105
+ "minikube kubectl -- apply -f manifest.yaml"
106
+ ]
107
+ },
108
+ {
109
+ "name": "docker-env",
110
+ "description": "Configure Docker env for minikube",
111
+ "examples": [
112
+ "eval $(minikube docker-env)",
113
+ "minikube docker-env"
114
+ ]
115
+ },
116
+ {
117
+ "name": "image",
118
+ "description": "Manage images",
119
+ "examples": [
120
+ "minikube image load my-image:latest",
121
+ "minikube image build -t my-image .",
122
+ "minikube image ls"
123
+ ]
124
+ },
125
+ {
126
+ "name": "cp",
127
+ "description": "Copy files into minikube",
128
+ "examples": [
129
+ "minikube cp file.txt /home/docker/file.txt"
130
+ ]
131
+ },
132
+ {
133
+ "name": "mount",
134
+ "description": "Mount host directory",
135
+ "examples": [
136
+ "minikube mount /host/path:/vm/path"
137
+ ]
138
+ },
139
+ {
140
+ "name": "node",
141
+ "description": "Manage nodes",
142
+ "examples": [
143
+ "minikube node list",
144
+ "minikube node add",
145
+ "minikube node delete node-name"
146
+ ]
147
+ },
148
+ {
149
+ "name": "profile",
150
+ "description": "Manage profiles",
151
+ "examples": [
152
+ "minikube profile list",
153
+ "minikube profile my-cluster"
154
+ ]
155
+ },
156
+ {
157
+ "name": "config",
158
+ "description": "Manage config settings",
159
+ "examples": [
160
+ "minikube config set cpus 4",
161
+ "minikube config set memory 8192",
162
+ "minikube config view"
163
+ ]
164
+ },
165
+ {
166
+ "name": "logs",
167
+ "description": "View cluster logs",
168
+ "examples": [
169
+ "minikube logs",
170
+ "minikube logs --follow"
171
+ ]
172
+ },
173
+ {
174
+ "name": "ip",
175
+ "description": "Get cluster IP",
176
+ "examples": [
177
+ "minikube ip"
178
+ ]
179
+ },
180
+ {
181
+ "name": "version",
182
+ "description": "Print version",
183
+ "examples": [
184
+ "minikube version"
185
+ ]
186
+ },
187
+ {
188
+ "name": "update-check",
189
+ "description": "Check for updates",
190
+ "examples": [
191
+ "minikube update-check"
192
+ ]
193
+ }
194
+ ],
195
+ "globalOptions": [
196
+ {
197
+ "name": "--driver",
198
+ "description": "Driver (docker, virtualbox, hyperv, qemu, ssh)",
199
+ "type": "string"
200
+ },
201
+ {
202
+ "name": "--cpus",
203
+ "description": "Number of CPUs",
204
+ "type": "number"
205
+ },
206
+ {
207
+ "name": "--memory",
208
+ "description": "Memory in MB",
209
+ "type": "number"
210
+ },
211
+ {
212
+ "name": "--disk-size",
213
+ "description": "Disk size",
214
+ "type": "string"
215
+ },
216
+ {
217
+ "name": "--kubernetes-version",
218
+ "description": "K8s version",
219
+ "type": "string"
220
+ },
221
+ {
222
+ "name": "--container-runtime",
223
+ "description": "Runtime (docker, containerd, cri-o)",
224
+ "type": "string"
225
+ },
226
+ {
227
+ "name": "--profile",
228
+ "short": "-p",
229
+ "description": "Profile name",
230
+ "type": "string"
231
+ },
232
+ {
233
+ "name": "--nodes",
234
+ "description": "Number of nodes",
235
+ "type": "number"
236
+ },
237
+ {
238
+ "name": "--addons",
239
+ "description": "Addons to enable",
240
+ "type": "string"
241
+ }
242
+ ],
243
+ "examples": [
244
+ "minikube start",
245
+ "minikube start --driver=docker --cpus=4 --memory=8192",
246
+ "minikube status",
247
+ "minikube dashboard",
248
+ "minikube service my-service --url",
249
+ "minikube tunnel",
250
+ "minikube addons enable ingress",
251
+ "minikube image load my-image:latest",
252
+ "eval $(minikube docker-env)",
253
+ "minikube ssh",
254
+ "minikube stop",
255
+ "minikube delete --all"
256
+ ],
257
+ "relatedCommands": [
258
+ "kubectl",
259
+ "k3d",
260
+ "kind",
261
+ "docker",
262
+ "helm"
263
+ ]
264
+ }