@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,141 @@
1
+ {
2
+ "name": "rancher",
3
+ "description": "Rancher CLI for managing Rancher and RKE clusters",
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": "login",
19
+ "description": "Login to Rancher server",
20
+ "examples": [
21
+ "rancher login https://rancher.example.com --token token-xxxxx",
22
+ "rancher login https://rancher.example.com --token token-xxxxx --context c-xxxxx:p-xxxxx"
23
+ ]
24
+ },
25
+ {
26
+ "name": "context",
27
+ "description": "Switch project context",
28
+ "examples": [
29
+ "rancher context switch",
30
+ "rancher context current"
31
+ ]
32
+ },
33
+ {
34
+ "name": "cluster",
35
+ "description": "Manage clusters",
36
+ "examples": [
37
+ "rancher cluster ls",
38
+ "rancher cluster create --name my-cluster",
39
+ "rancher cluster delete my-cluster",
40
+ "rancher cluster kubeconfig my-cluster"
41
+ ]
42
+ },
43
+ {
44
+ "name": "node",
45
+ "description": "Manage nodes",
46
+ "examples": [
47
+ "rancher node ls",
48
+ "rancher node delete node-id"
49
+ ]
50
+ },
51
+ {
52
+ "name": "project",
53
+ "description": "Manage projects",
54
+ "examples": [
55
+ "rancher project ls",
56
+ "rancher project create --name my-project --cluster cluster-id"
57
+ ]
58
+ },
59
+ {
60
+ "name": "app",
61
+ "description": "Manage catalog apps",
62
+ "examples": [
63
+ "rancher app ls",
64
+ "rancher app install cattle-global-data/chart-name myapp",
65
+ "rancher app delete myapp"
66
+ ]
67
+ },
68
+ {
69
+ "name": "namespace",
70
+ "description": "Manage namespaces",
71
+ "examples": [
72
+ "rancher namespace ls",
73
+ "rancher namespace create my-ns"
74
+ ]
75
+ },
76
+ {
77
+ "name": "kubectl",
78
+ "description": "Run kubectl commands",
79
+ "examples": [
80
+ "rancher kubectl get pods",
81
+ "rancher kubectl get nodes",
82
+ "rancher kubectl apply -f manifest.yaml"
83
+ ]
84
+ },
85
+ {
86
+ "name": "ssh",
87
+ "description": "SSH into a node",
88
+ "examples": [
89
+ "rancher ssh node-id"
90
+ ]
91
+ },
92
+ {
93
+ "name": "inspect",
94
+ "description": "Inspect a resource",
95
+ "examples": [
96
+ "rancher inspect cluster-id"
97
+ ]
98
+ },
99
+ {
100
+ "name": "wait",
101
+ "description": "Wait for resource state",
102
+ "examples": [
103
+ "rancher wait cluster-id"
104
+ ]
105
+ },
106
+ {
107
+ "name": "token",
108
+ "description": "Manage API tokens",
109
+ "examples": [
110
+ "rancher token ls",
111
+ "rancher token delete token-id"
112
+ ]
113
+ }
114
+ ],
115
+ "globalOptions": [
116
+ {
117
+ "name": "--debug",
118
+ "description": "Enable debug output"
119
+ },
120
+ {
121
+ "name": "--config",
122
+ "description": "Config file path",
123
+ "type": "string"
124
+ }
125
+ ],
126
+ "examples": [
127
+ "rancher login https://rancher.example.com --token token-xxxxx",
128
+ "rancher cluster ls",
129
+ "rancher context switch",
130
+ "rancher kubectl get pods",
131
+ "rancher app ls",
132
+ "rancher ssh node-id",
133
+ "rancher cluster kubeconfig my-cluster"
134
+ ],
135
+ "relatedCommands": [
136
+ "kubectl",
137
+ "helm",
138
+ "k3s",
139
+ "rke"
140
+ ]
141
+ }
@@ -0,0 +1,275 @@
1
+ {
2
+ "name": "rclone",
3
+ "description": "rclone — sync files to and from cloud storage",
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": "config",
19
+ "description": "Interactive configuration",
20
+ "examples": [
21
+ "rclone config",
22
+ "rclone config show",
23
+ "rclone config create myremote s3 provider=AWS env_auth=true region=us-east-1"
24
+ ]
25
+ },
26
+ {
27
+ "name": "copy",
28
+ "description": "Copy files src to dst",
29
+ "examples": [
30
+ "rclone copy /local/path remote:bucket/path",
31
+ "rclone copy remote:bucket/path /local/path",
32
+ "rclone copy src:path dst:path"
33
+ ]
34
+ },
35
+ {
36
+ "name": "sync",
37
+ "description": "Sync src to dst (make identical)",
38
+ "examples": [
39
+ "rclone sync /local/path remote:bucket/",
40
+ "rclone sync remote:bucket/ /local/path",
41
+ "rclone sync --dry-run /local/ remote:bucket/"
42
+ ]
43
+ },
44
+ {
45
+ "name": "move",
46
+ "description": "Move files src to dst",
47
+ "examples": [
48
+ "rclone move /local/path remote:bucket/",
49
+ "rclone move --delete-empty-src-dirs /local/ remote:bucket/"
50
+ ]
51
+ },
52
+ {
53
+ "name": "ls",
54
+ "description": "List objects with size",
55
+ "examples": [
56
+ "rclone ls remote:bucket/",
57
+ "rclone ls remote:bucket/prefix/"
58
+ ]
59
+ },
60
+ {
61
+ "name": "lsd",
62
+ "description": "List directories",
63
+ "examples": [
64
+ "rclone lsd remote:",
65
+ "rclone lsd remote:bucket/"
66
+ ]
67
+ },
68
+ {
69
+ "name": "lsl",
70
+ "description": "List with modification time",
71
+ "examples": [
72
+ "rclone lsl remote:bucket/"
73
+ ]
74
+ },
75
+ {
76
+ "name": "lsf",
77
+ "description": "List with format",
78
+ "examples": [
79
+ "rclone lsf remote:bucket/",
80
+ "rclone lsf --format 'pst' remote:bucket/"
81
+ ]
82
+ },
83
+ {
84
+ "name": "mkdir",
85
+ "description": "Make directory",
86
+ "examples": [
87
+ "rclone mkdir remote:bucket/new-dir"
88
+ ]
89
+ },
90
+ {
91
+ "name": "rmdir",
92
+ "description": "Remove directory",
93
+ "examples": [
94
+ "rclone rmdir remote:bucket/old-dir"
95
+ ]
96
+ },
97
+ {
98
+ "name": "purge",
99
+ "description": "Remove directory and all contents",
100
+ "examples": [
101
+ "rclone purge remote:bucket/"
102
+ ]
103
+ },
104
+ {
105
+ "name": "delete",
106
+ "description": "Delete files",
107
+ "examples": [
108
+ "rclone delete remote:bucket/file.txt",
109
+ "rclone delete --min-age 30d remote:bucket/"
110
+ ]
111
+ },
112
+ {
113
+ "name": "cat",
114
+ "description": "Concatenate files",
115
+ "examples": [
116
+ "rclone cat remote:bucket/file.txt"
117
+ ]
118
+ },
119
+ {
120
+ "name": "check",
121
+ "description": "Check files match",
122
+ "examples": [
123
+ "rclone check /local/ remote:bucket/"
124
+ ]
125
+ },
126
+ {
127
+ "name": "bisync",
128
+ "description": "Bidirectional sync",
129
+ "examples": [
130
+ "rclone bisync /local/ remote:bucket/",
131
+ "rclone bisync --resync /local/ remote:bucket/"
132
+ ]
133
+ },
134
+ {
135
+ "name": "serve",
136
+ "description": "Serve remote over protocol",
137
+ "examples": [
138
+ "rclone serve http remote:bucket/ --addr :8080",
139
+ "rclone serve webdav remote:bucket/ --addr :8080",
140
+ "rclone serve sftp remote:bucket/ --addr :2022",
141
+ "rclone serve docker remote:"
142
+ ]
143
+ },
144
+ {
145
+ "name": "mount",
146
+ "description": "Mount remote as filesystem",
147
+ "examples": [
148
+ "rclone mount remote:bucket/ /mnt/bucket",
149
+ "rclone mount remote:bucket/ /mnt/bucket --daemon",
150
+ "rclone mount remote:bucket/ /mnt/bucket --vfs-cache-mode full"
151
+ ]
152
+ },
153
+ {
154
+ "name": "ncdu",
155
+ "description": "Interactive file explorer",
156
+ "examples": [
157
+ "rclone ncdu remote:bucket/"
158
+ ]
159
+ },
160
+ {
161
+ "name": "about",
162
+ "description": "Get quota info",
163
+ "examples": [
164
+ "rclone about remote:"
165
+ ]
166
+ },
167
+ {
168
+ "name": "size",
169
+ "description": "Get total size and count",
170
+ "examples": [
171
+ "rclone size remote:bucket/"
172
+ ]
173
+ },
174
+ {
175
+ "name": "tree",
176
+ "description": "List in tree format",
177
+ "examples": [
178
+ "rclone tree remote:bucket/"
179
+ ]
180
+ },
181
+ {
182
+ "name": "cryptdecode",
183
+ "description": "Decode encrypted path",
184
+ "examples": [
185
+ "rclone cryptdecode my-crypt: /encrypted/path"
186
+ ]
187
+ }
188
+ ],
189
+ "globalOptions": [
190
+ {
191
+ "name": "--dry-run",
192
+ "short": "-n",
193
+ "description": "Dry run without changes"
194
+ },
195
+ {
196
+ "name": "--progress",
197
+ "short": "-P",
198
+ "description": "Show progress"
199
+ },
200
+ {
201
+ "name": "--verbose",
202
+ "short": "-v",
203
+ "description": "Verbose output"
204
+ },
205
+ {
206
+ "name": "--transfers",
207
+ "description": "Number of parallel transfers",
208
+ "type": "number"
209
+ },
210
+ {
211
+ "name": "--checkers",
212
+ "description": "Number of checkers",
213
+ "type": "number"
214
+ },
215
+ {
216
+ "name": "--filter",
217
+ "short": "-f",
218
+ "description": "Filter rule",
219
+ "type": "string"
220
+ },
221
+ {
222
+ "name": "--include",
223
+ "description": "Include pattern",
224
+ "type": "string"
225
+ },
226
+ {
227
+ "name": "--exclude",
228
+ "description": "Exclude pattern",
229
+ "type": "string"
230
+ },
231
+ {
232
+ "name": "--bwlimit",
233
+ "description": "Bandwidth limit",
234
+ "type": "string"
235
+ },
236
+ {
237
+ "name": "--log-file",
238
+ "description": "Log file path",
239
+ "type": "string"
240
+ },
241
+ {
242
+ "name": "--log-level",
243
+ "description": "Log level",
244
+ "type": "string"
245
+ },
246
+ {
247
+ "name": "--config",
248
+ "description": "Config file path",
249
+ "type": "string"
250
+ },
251
+ {
252
+ "name": "--stats",
253
+ "description": "Stats printing interval",
254
+ "type": "string"
255
+ }
256
+ ],
257
+ "examples": [
258
+ "rclone config",
259
+ "rclone copy /local/ remote:bucket/",
260
+ "rclone sync /local/ remote:bucket/ -P",
261
+ "rclone ls remote:bucket/",
262
+ "rclone mount remote:bucket/ /mnt/bucket --vfs-cache-mode full",
263
+ "rclone serve http remote:bucket/ --addr :8080",
264
+ "rclone ncdu remote:bucket/",
265
+ "rclone size remote:bucket/",
266
+ "rclone bisync /local/ remote:bucket/"
267
+ ],
268
+ "relatedCommands": [
269
+ "s3cmd",
270
+ "gsutil",
271
+ "aws",
272
+ "rsync",
273
+ "mc"
274
+ ]
275
+ }
@@ -0,0 +1,201 @@
1
+ {
2
+ "name": "s3cmd",
3
+ "description": "Command line tool for managing Amazon S3 and S3-compatible storage",
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": "ls",
19
+ "description": "List buckets or objects",
20
+ "examples": [
21
+ "s3cmd ls",
22
+ "s3cmd ls s3://my-bucket/",
23
+ "s3cmd ls s3://my-bucket/prefix/"
24
+ ]
25
+ },
26
+ {
27
+ "name": "mb",
28
+ "description": "Make bucket",
29
+ "examples": [
30
+ "s3cmd mb s3://new-bucket"
31
+ ]
32
+ },
33
+ {
34
+ "name": "rb",
35
+ "description": "Remove bucket",
36
+ "examples": [
37
+ "s3cmd rb s3://my-bucket"
38
+ ]
39
+ },
40
+ {
41
+ "name": "put",
42
+ "description": "Upload files",
43
+ "examples": [
44
+ "s3cmd put file.txt s3://my-bucket/",
45
+ "s3cmd put --recursive ./dir/ s3://my-bucket/dir/",
46
+ "s3cmd put --acl-public file.txt s3://my-bucket/"
47
+ ]
48
+ },
49
+ {
50
+ "name": "get",
51
+ "description": "Download files",
52
+ "examples": [
53
+ "s3cmd get s3://my-bucket/file.txt",
54
+ "s3cmd get --recursive s3://my-bucket/dir/ ./local/"
55
+ ]
56
+ },
57
+ {
58
+ "name": "del",
59
+ "description": "Delete objects",
60
+ "examples": [
61
+ "s3cmd del s3://my-bucket/file.txt",
62
+ "s3cmd del --recursive s3://my-bucket/dir/"
63
+ ]
64
+ },
65
+ {
66
+ "name": "sync",
67
+ "description": "Sync directories",
68
+ "examples": [
69
+ "s3cmd sync ./local/ s3://my-bucket/",
70
+ "s3cmd sync s3://my-bucket/ ./local/",
71
+ "s3cmd sync --delete-removed ./local/ s3://my-bucket/"
72
+ ]
73
+ },
74
+ {
75
+ "name": "cp",
76
+ "description": "Copy objects",
77
+ "examples": [
78
+ "s3cmd cp s3://bucket1/file.txt s3://bucket2/file.txt"
79
+ ]
80
+ },
81
+ {
82
+ "name": "mv",
83
+ "description": "Move objects",
84
+ "examples": [
85
+ "s3cmd mv s3://my-bucket/old.txt s3://my-bucket/new.txt"
86
+ ]
87
+ },
88
+ {
89
+ "name": "du",
90
+ "description": "Disk usage",
91
+ "examples": [
92
+ "s3cmd du",
93
+ "s3cmd du s3://my-bucket/"
94
+ ]
95
+ },
96
+ {
97
+ "name": "info",
98
+ "description": "Object info",
99
+ "examples": [
100
+ "s3cmd info s3://my-bucket/file.txt"
101
+ ]
102
+ },
103
+ {
104
+ "name": "setacl",
105
+ "description": "Set ACL",
106
+ "examples": [
107
+ "s3cmd setacl --acl-public s3://my-bucket/file.txt"
108
+ ]
109
+ },
110
+ {
111
+ "name": "signurl",
112
+ "description": "Generate presigned URL",
113
+ "examples": [
114
+ "s3cmd signurl s3://my-bucket/file.txt 3600"
115
+ ]
116
+ },
117
+ {
118
+ "name": "expire",
119
+ "description": "Set expiration policy",
120
+ "examples": [
121
+ "s3cmd expire s3://my-bucket/ --expiry-days 30"
122
+ ]
123
+ }
124
+ ],
125
+ "globalOptions": [
126
+ {
127
+ "name": "--configure",
128
+ "description": "Run interactive configuration"
129
+ },
130
+ {
131
+ "name": "--acl-public",
132
+ "description": "Set public ACL"
133
+ },
134
+ {
135
+ "name": "--acl-private",
136
+ "description": "Set private ACL"
137
+ },
138
+ {
139
+ "name": "--recursive",
140
+ "short": "-r",
141
+ "description": "Recursive operation"
142
+ },
143
+ {
144
+ "name": "--dry-run",
145
+ "description": "Simulate operation"
146
+ },
147
+ {
148
+ "name": "--delete-removed",
149
+ "description": "Delete files not in source (sync)"
150
+ },
151
+ {
152
+ "name": "--exclude",
153
+ "description": "Exclude files matching pattern",
154
+ "type": "string"
155
+ },
156
+ {
157
+ "name": "--include",
158
+ "description": "Include files matching pattern",
159
+ "type": "string"
160
+ },
161
+ {
162
+ "name": "--verbose",
163
+ "short": "-v",
164
+ "description": "Verbose output"
165
+ },
166
+ {
167
+ "name": "--progress",
168
+ "description": "Show progress"
169
+ },
170
+ {
171
+ "name": "--no-progress",
172
+ "description": "Hide progress"
173
+ },
174
+ {
175
+ "name": "--host",
176
+ "description": "S3 endpoint",
177
+ "type": "string"
178
+ },
179
+ {
180
+ "name": "--host-bucket",
181
+ "description": "Bucket endpoint pattern",
182
+ "type": "string"
183
+ }
184
+ ],
185
+ "examples": [
186
+ "s3cmd ls",
187
+ "s3cmd put file.txt s3://my-bucket/",
188
+ "s3cmd get s3://my-bucket/file.txt .",
189
+ "s3cmd sync ./dir/ s3://my-bucket/dir/",
190
+ "s3cmd del --recursive s3://my-bucket/old/",
191
+ "s3cmd du s3://my-bucket/",
192
+ "s3cmd mb s3://new-bucket",
193
+ "s3cmd signurl s3://my-bucket/file.txt 3600"
194
+ ],
195
+ "relatedCommands": [
196
+ "aws",
197
+ "gsutil",
198
+ "rclone",
199
+ "mc"
200
+ ]
201
+ }