@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,178 @@
1
+ {
2
+ "name": "helmfile",
3
+ "description": "Deploy Kubernetes Helm charts declaratively",
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": "sync",
19
+ "description": "Sync releases to cluster",
20
+ "examples": [
21
+ "helmfile sync",
22
+ "helmfile -f helmfile.yaml sync",
23
+ "helmfile -e production sync"
24
+ ]
25
+ },
26
+ {
27
+ "name": "apply",
28
+ "description": "Apply changes (sync with diff)",
29
+ "examples": [
30
+ "helmfile apply",
31
+ "helmfile -e staging apply"
32
+ ]
33
+ },
34
+ {
35
+ "name": "diff",
36
+ "description": "Show diff of pending changes",
37
+ "examples": [
38
+ "helmfile diff",
39
+ "helmfile -e production diff"
40
+ ]
41
+ },
42
+ {
43
+ "name": "template",
44
+ "description": "Template releases locally",
45
+ "examples": [
46
+ "helmfile template",
47
+ "helmfile template --output-dir ./out"
48
+ ]
49
+ },
50
+ {
51
+ "name": "lint",
52
+ "description": "Lint releases",
53
+ "examples": [
54
+ "helmfile lint"
55
+ ]
56
+ },
57
+ {
58
+ "name": "list",
59
+ "description": "List releases",
60
+ "examples": [
61
+ "helmfile list",
62
+ "helmfile -e production list"
63
+ ]
64
+ },
65
+ {
66
+ "name": "status",
67
+ "description": "Show status of releases",
68
+ "examples": [
69
+ "helmfile status"
70
+ ]
71
+ },
72
+ {
73
+ "name": "destroy",
74
+ "description": "Destroy releases",
75
+ "examples": [
76
+ "helmfile destroy",
77
+ "helmfile -e staging destroy"
78
+ ]
79
+ },
80
+ {
81
+ "name": "repos",
82
+ "description": "Add/update chart repos",
83
+ "examples": [
84
+ "helmfile repos"
85
+ ]
86
+ },
87
+ {
88
+ "name": "deps",
89
+ "description": "Build chart dependencies",
90
+ "examples": [
91
+ "helmfile deps"
92
+ ]
93
+ },
94
+ {
95
+ "name": "build",
96
+ "description": "Build helmfile state",
97
+ "examples": [
98
+ "helmfile build"
99
+ ]
100
+ },
101
+ {
102
+ "name": "fetch",
103
+ "description": "Fetch charts",
104
+ "examples": [
105
+ "helmfile fetch",
106
+ "helmfile fetch --output-dir charts/"
107
+ ]
108
+ },
109
+ {
110
+ "name": "write-values",
111
+ "description": "Write computed values",
112
+ "examples": [
113
+ "helmfile write-values"
114
+ ]
115
+ },
116
+ {
117
+ "name": "test",
118
+ "description": "Test releases",
119
+ "examples": [
120
+ "helmfile test"
121
+ ]
122
+ }
123
+ ],
124
+ "globalOptions": [
125
+ {
126
+ "name": "--file",
127
+ "short": "-f",
128
+ "description": "Helmfile path",
129
+ "type": "string"
130
+ },
131
+ {
132
+ "name": "--environment",
133
+ "short": "-e",
134
+ "description": "Environment name",
135
+ "type": "string"
136
+ },
137
+ {
138
+ "name": "--selector",
139
+ "short": "-l",
140
+ "description": "Label selector for releases",
141
+ "type": "string"
142
+ },
143
+ {
144
+ "name": "--interactive",
145
+ "description": "Interactive mode"
146
+ },
147
+ {
148
+ "name": "--debug",
149
+ "description": "Debug output"
150
+ },
151
+ {
152
+ "name": "--state-values-set",
153
+ "description": "Set state values",
154
+ "type": "string"
155
+ },
156
+ {
157
+ "name": "--concurrency",
158
+ "description": "Max concurrent helm executions",
159
+ "type": "number"
160
+ }
161
+ ],
162
+ "examples": [
163
+ "helmfile sync",
164
+ "helmfile apply",
165
+ "helmfile diff",
166
+ "helmfile template",
167
+ "helmfile -e production apply",
168
+ "helmfile -l name=my-release apply",
169
+ "helmfile list",
170
+ "helmfile destroy"
171
+ ],
172
+ "relatedCommands": [
173
+ "helm",
174
+ "kubectl",
175
+ "kustomize",
176
+ "argocd"
177
+ ]
178
+ }
@@ -0,0 +1,239 @@
1
+ {
2
+ "name": "heroku",
3
+ "description": "Heroku CLI — build, deploy, and manage Heroku apps",
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": "create",
19
+ "description": "Create a new Heroku app",
20
+ "examples": [
21
+ "heroku create",
22
+ "heroku create my-app",
23
+ "heroku create --region eu"
24
+ ]
25
+ },
26
+ {
27
+ "name": "apps",
28
+ "description": "List apps",
29
+ "examples": [
30
+ "heroku apps",
31
+ "heroku apps --json",
32
+ "heroku apps:info -a my-app"
33
+ ]
34
+ },
35
+ {
36
+ "name": "ps",
37
+ "description": "List dynos",
38
+ "examples": [
39
+ "heroku ps -a my-app",
40
+ "heroku ps:scale web=2 -a my-app",
41
+ "heroku ps:type standard-1x -a my-app",
42
+ "heroku ps:restart -a my-app"
43
+ ]
44
+ },
45
+ {
46
+ "name": "logs",
47
+ "description": "Display recent log output",
48
+ "examples": [
49
+ "heroku logs -a my-app",
50
+ "heroku logs --tail -a my-app",
51
+ "heroku logs -n 200 -a my-app",
52
+ "heroku logs --source app -a my-app"
53
+ ]
54
+ },
55
+ {
56
+ "name": "config",
57
+ "description": "Display config vars",
58
+ "examples": [
59
+ "heroku config -a my-app",
60
+ "heroku config:set KEY=value -a my-app",
61
+ "heroku config:unset KEY -a my-app",
62
+ "heroku config:get DATABASE_URL -a my-app"
63
+ ]
64
+ },
65
+ {
66
+ "name": "addons",
67
+ "description": "Manage add-ons",
68
+ "examples": [
69
+ "heroku addons -a my-app",
70
+ "heroku addons:create heroku-postgresql:mini -a my-app",
71
+ "heroku addons:destroy heroku-postgresql -a my-app",
72
+ "heroku addons:info heroku-postgresql -a my-app"
73
+ ]
74
+ },
75
+ {
76
+ "name": "run",
77
+ "description": "Run one-off dyno",
78
+ "examples": [
79
+ "heroku run bash -a my-app",
80
+ "heroku run rails console -a my-app",
81
+ "heroku run python manage.py migrate -a my-app"
82
+ ]
83
+ },
84
+ {
85
+ "name": "releases",
86
+ "description": "Display releases",
87
+ "examples": [
88
+ "heroku releases -a my-app",
89
+ "heroku releases:info v10 -a my-app",
90
+ "heroku releases:rollback v9 -a my-app"
91
+ ]
92
+ },
93
+ {
94
+ "name": "pg",
95
+ "description": "Manage Postgres databases",
96
+ "examples": [
97
+ "heroku pg:info -a my-app",
98
+ "heroku pg:psql -a my-app",
99
+ "heroku pg:backups -a my-app",
100
+ "heroku pg:backups:capture -a my-app",
101
+ "heroku pg:push local_db DATABASE_URL -a my-app"
102
+ ]
103
+ },
104
+ {
105
+ "name": "domains",
106
+ "description": "Manage custom domains",
107
+ "examples": [
108
+ "heroku domains -a my-app",
109
+ "heroku domains:add example.com -a my-app",
110
+ "heroku domains:remove example.com -a my-app"
111
+ ]
112
+ },
113
+ {
114
+ "name": "certs",
115
+ "description": "Manage SSL certificates",
116
+ "examples": [
117
+ "heroku certs -a my-app",
118
+ "heroku certs:auto -a my-app",
119
+ "heroku certs:auto:enable -a my-app"
120
+ ]
121
+ },
122
+ {
123
+ "name": "pipelines",
124
+ "description": "Manage deployment pipelines",
125
+ "examples": [
126
+ "heroku pipelines:create my-pipeline -a my-app",
127
+ "heroku pipelines:promote -a my-app",
128
+ "heroku pipelines:info my-pipeline"
129
+ ]
130
+ },
131
+ {
132
+ "name": "container",
133
+ "description": "Manage container deploys",
134
+ "examples": [
135
+ "heroku container:push web -a my-app",
136
+ "heroku container:release web -a my-app",
137
+ "heroku container:login"
138
+ ]
139
+ },
140
+ {
141
+ "name": "buildpacks",
142
+ "description": "Manage buildpacks",
143
+ "examples": [
144
+ "heroku buildpacks -a my-app",
145
+ "heroku buildpacks:set heroku/nodejs -a my-app",
146
+ "heroku buildpacks:add heroku/python -a my-app"
147
+ ]
148
+ },
149
+ {
150
+ "name": "maintenance",
151
+ "description": "Manage maintenance mode",
152
+ "examples": [
153
+ "heroku maintenance:on -a my-app",
154
+ "heroku maintenance:off -a my-app"
155
+ ]
156
+ },
157
+ {
158
+ "name": "drains",
159
+ "description": "Manage log drains",
160
+ "examples": [
161
+ "heroku drains -a my-app",
162
+ "heroku drains:add syslog://logs.example.com -a my-app"
163
+ ]
164
+ },
165
+ {
166
+ "name": "auth",
167
+ "description": "Authentication commands",
168
+ "examples": [
169
+ "heroku auth:whoami",
170
+ "heroku auth:token",
171
+ "heroku auth:login"
172
+ ]
173
+ },
174
+ {
175
+ "name": "git",
176
+ "description": "Git remote management",
177
+ "examples": [
178
+ "heroku git:remote -a my-app",
179
+ "heroku git:clone my-app"
180
+ ]
181
+ },
182
+ {
183
+ "name": "spaces",
184
+ "description": "Manage Heroku Private Spaces",
185
+ "examples": [
186
+ "heroku spaces",
187
+ "heroku spaces:create my-space --region virginia"
188
+ ]
189
+ },
190
+ {
191
+ "name": "reviewapps",
192
+ "description": "Manage review apps",
193
+ "examples": [
194
+ "heroku reviewapps:enable -p my-pipeline",
195
+ "heroku reviewapps:disable -p my-pipeline"
196
+ ]
197
+ }
198
+ ],
199
+ "globalOptions": [
200
+ {
201
+ "name": "-a",
202
+ "description": "App to run command against",
203
+ "type": "string"
204
+ },
205
+ {
206
+ "name": "-r",
207
+ "description": "Git remote to use",
208
+ "type": "string"
209
+ },
210
+ {
211
+ "name": "--json",
212
+ "description": "Output as JSON"
213
+ },
214
+ {
215
+ "name": "--team",
216
+ "short": "-t",
217
+ "description": "Team name",
218
+ "type": "string"
219
+ }
220
+ ],
221
+ "examples": [
222
+ "heroku create my-app",
223
+ "heroku logs --tail -a my-app",
224
+ "heroku config:set NODE_ENV=production -a my-app",
225
+ "heroku ps:scale web=2 worker=1 -a my-app",
226
+ "heroku run bash -a my-app",
227
+ "heroku pg:backups:capture -a my-app",
228
+ "heroku container:push web -a my-app",
229
+ "heroku pipelines:promote -a my-app",
230
+ "heroku addons:create heroku-redis:mini -a my-app",
231
+ "heroku releases:rollback v9 -a my-app"
232
+ ],
233
+ "relatedCommands": [
234
+ "git",
235
+ "docker",
236
+ "railway",
237
+ "flyctl"
238
+ ]
239
+ }
@@ -0,0 +1,184 @@
1
+ {
2
+ "name": "ibmcloud",
3
+ "description": "IBM Cloud CLI",
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": "login",
19
+ "description": "Login to IBM Cloud",
20
+ "examples": [
21
+ "ibmcloud login",
22
+ "ibmcloud login --sso",
23
+ "ibmcloud login --apikey @apikey.json",
24
+ "ibmcloud login -r us-south"
25
+ ]
26
+ },
27
+ {
28
+ "name": "target",
29
+ "description": "Set target org/space/group",
30
+ "examples": [
31
+ "ibmcloud target -g default",
32
+ "ibmcloud target -r us-south",
33
+ "ibmcloud target --cf-api https://api.us-south.cf.cloud.ibm.com"
34
+ ]
35
+ },
36
+ {
37
+ "name": "ks cluster",
38
+ "description": "Kubernetes Service clusters",
39
+ "examples": [
40
+ "ibmcloud ks cluster ls",
41
+ "ibmcloud ks cluster create --name mycluster --zone dal10",
42
+ "ibmcloud ks cluster config --cluster mycluster",
43
+ "ibmcloud ks cluster rm --cluster mycluster -f"
44
+ ]
45
+ },
46
+ {
47
+ "name": "ce",
48
+ "description": "Code Engine",
49
+ "examples": [
50
+ "ibmcloud ce project list",
51
+ "ibmcloud ce project create --name my-project",
52
+ "ibmcloud ce app create --name myapp --image icr.io/ns/app:latest",
53
+ "ibmcloud ce app list"
54
+ ]
55
+ },
56
+ {
57
+ "name": "cr",
58
+ "description": "Container Registry",
59
+ "examples": [
60
+ "ibmcloud cr namespace-list",
61
+ "ibmcloud cr image-list",
62
+ "ibmcloud cr login",
63
+ "ibmcloud cr namespace-add my-ns"
64
+ ]
65
+ },
66
+ {
67
+ "name": "is",
68
+ "description": "VPC Infrastructure Service",
69
+ "examples": [
70
+ "ibmcloud is instances",
71
+ "ibmcloud is instance-create my-vm vpc-id subnet-id profile bx2-2x8 --image ibm-ubuntu-22-04",
72
+ "ibmcloud is vpcs",
73
+ "ibmcloud is subnets"
74
+ ]
75
+ },
76
+ {
77
+ "name": "cos",
78
+ "description": "Cloud Object Storage",
79
+ "examples": [
80
+ "ibmcloud cos bucket-list",
81
+ "ibmcloud cos object-put --bucket my-bucket --key file.txt --body ./file.txt",
82
+ "ibmcloud cos object-list --bucket my-bucket"
83
+ ]
84
+ },
85
+ {
86
+ "name": "fn",
87
+ "description": "Cloud Functions",
88
+ "examples": [
89
+ "ibmcloud fn action list",
90
+ "ibmcloud fn action create hello hello.js",
91
+ "ibmcloud fn action invoke hello --result"
92
+ ]
93
+ },
94
+ {
95
+ "name": "resource",
96
+ "description": "Resource management",
97
+ "examples": [
98
+ "ibmcloud resource groups",
99
+ "ibmcloud resource service-instances",
100
+ "ibmcloud resource service-instance-create my-db databases-for-postgresql standard us-south"
101
+ ]
102
+ },
103
+ {
104
+ "name": "iam",
105
+ "description": "Identity and Access Management",
106
+ "examples": [
107
+ "ibmcloud iam api-keys",
108
+ "ibmcloud iam api-key-create mykey",
109
+ "ibmcloud iam access-groups",
110
+ "ibmcloud iam service-ids"
111
+ ]
112
+ },
113
+ {
114
+ "name": "plugin",
115
+ "description": "Manage CLI plugins",
116
+ "examples": [
117
+ "ibmcloud plugin list",
118
+ "ibmcloud plugin install container-service",
119
+ "ibmcloud plugin update --all"
120
+ ]
121
+ },
122
+ {
123
+ "name": "cf",
124
+ "description": "Cloud Foundry commands",
125
+ "examples": [
126
+ "ibmcloud cf apps",
127
+ "ibmcloud cf push",
128
+ "ibmcloud cf logs app-name --recent"
129
+ ]
130
+ },
131
+ {
132
+ "name": "catalog",
133
+ "description": "Browse service catalog",
134
+ "examples": [
135
+ "ibmcloud catalog service-marketplace",
136
+ "ibmcloud catalog search postgresql"
137
+ ]
138
+ }
139
+ ],
140
+ "globalOptions": [
141
+ {
142
+ "name": "-r",
143
+ "description": "Region",
144
+ "type": "string"
145
+ },
146
+ {
147
+ "name": "-g",
148
+ "description": "Resource group",
149
+ "type": "string"
150
+ },
151
+ {
152
+ "name": "--output",
153
+ "description": "Output format (json)",
154
+ "type": "string"
155
+ },
156
+ {
157
+ "name": "-q",
158
+ "description": "Quiet mode"
159
+ },
160
+ {
161
+ "name": "--apikey",
162
+ "description": "API key for auth",
163
+ "type": "string"
164
+ }
165
+ ],
166
+ "examples": [
167
+ "ibmcloud login --sso",
168
+ "ibmcloud login --apikey @apikey.json",
169
+ "ibmcloud ks cluster ls",
170
+ "ibmcloud is instances",
171
+ "ibmcloud cos bucket-list",
172
+ "ibmcloud target -r us-south -g default",
173
+ "ibmcloud cr image-list",
174
+ "ibmcloud ce app list",
175
+ "ibmcloud resource service-instances"
176
+ ],
177
+ "relatedCommands": [
178
+ "aws",
179
+ "az",
180
+ "gcloud",
181
+ "oci",
182
+ "terraform"
183
+ ]
184
+ }