@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "argocd",
3
- "description": "Declarative GitOps continuous delivery for Kubernetes",
3
+ "description": "Argo CD CLI for declarative GitOps continuous delivery on Kubernetes",
4
4
  "category": "containers",
5
5
  "platforms": [
6
6
  "linux",
@@ -15,95 +15,204 @@
15
15
  ],
16
16
  "subcommands": [
17
17
  {
18
- "name": "app create",
19
- "description": "Create an application",
18
+ "name": "login",
19
+ "description": "Login to Argo CD server",
20
20
  "examples": [
21
- "argocd app create myapp --repo https://github.com/org/repo --path k8s --dest-server https://kubernetes.default.svc"
21
+ "argocd login argocd.example.com",
22
+ "argocd login argocd.example.com --username admin --password secret",
23
+ "argocd login argocd.example.com --sso",
24
+ "argocd login argocd.example.com --insecure"
22
25
  ]
23
26
  },
24
27
  {
25
- "name": "app get",
26
- "description": "Get application details",
28
+ "name": "app",
29
+ "description": "Manage applications",
27
30
  "examples": [
28
- "argocd app get myapp"
31
+ "argocd app list",
32
+ "argocd app create my-app --repo https://github.com/org/repo.git --path k8s --dest-server https://kubernetes.default.svc --dest-namespace default",
33
+ "argocd app get my-app",
34
+ "argocd app sync my-app",
35
+ "argocd app sync my-app --prune",
36
+ "argocd app diff my-app",
37
+ "argocd app history my-app",
38
+ "argocd app rollback my-app 1",
39
+ "argocd app set my-app --values values-prod.yaml",
40
+ "argocd app wait my-app",
41
+ "argocd app delete my-app",
42
+ "argocd app logs my-app",
43
+ "argocd app manifests my-app",
44
+ "argocd app terminate-op my-app",
45
+ "argocd app resources my-app"
29
46
  ]
30
47
  },
31
48
  {
32
- "name": "app sync",
33
- "description": "Sync application",
49
+ "name": "proj",
50
+ "description": "Manage projects",
34
51
  "examples": [
35
- "argocd app sync myapp"
52
+ "argocd proj list",
53
+ "argocd proj create my-project",
54
+ "argocd proj get my-project",
55
+ "argocd proj add-source my-project https://github.com/org/repo.git",
56
+ "argocd proj add-destination my-project https://kubernetes.default.svc default",
57
+ "argocd proj delete my-project"
36
58
  ]
37
59
  },
38
60
  {
39
- "name": "app list",
40
- "description": "List applications",
61
+ "name": "repo",
62
+ "description": "Manage repository connections",
41
63
  "examples": [
42
- "argocd app list"
64
+ "argocd repo add https://github.com/org/repo.git",
65
+ "argocd repo add https://github.com/org/repo.git --ssh-private-key-path ~/.ssh/id_rsa",
66
+ "argocd repo list",
67
+ "argocd repo rm https://github.com/org/repo.git"
43
68
  ]
44
69
  },
45
70
  {
46
- "name": "app delete",
47
- "description": "Delete application",
71
+ "name": "cluster",
72
+ "description": "Manage cluster connections",
48
73
  "examples": [
49
- "argocd app delete myapp"
74
+ "argocd cluster add my-context",
75
+ "argocd cluster list",
76
+ "argocd cluster get https://kubernetes.default.svc",
77
+ "argocd cluster rm https://1.2.3.4"
50
78
  ]
51
79
  },
52
80
  {
53
- "name": "app diff",
54
- "description": "Show diff against live state",
81
+ "name": "account",
82
+ "description": "Manage accounts",
55
83
  "examples": [
56
- "argocd app diff myapp"
84
+ "argocd account list",
85
+ "argocd account get --account admin",
86
+ "argocd account update-password",
87
+ "argocd account generate-token --account my-account",
88
+ "argocd account can-i sync applications '*'"
57
89
  ]
58
90
  },
59
91
  {
60
- "name": "login",
61
- "description": "Login to ArgoCD server",
92
+ "name": "cert",
93
+ "description": "Manage repository certificates",
94
+ "examples": [
95
+ "argocd cert add-tls example.com --from server.crt",
96
+ "argocd cert list",
97
+ "argocd cert rm example.com"
98
+ ]
99
+ },
100
+ {
101
+ "name": "gpg",
102
+ "description": "Manage GnuPG keys",
103
+ "examples": [
104
+ "argocd gpg add --from pubkey.gpg",
105
+ "argocd gpg list",
106
+ "argocd gpg rm KEYID"
107
+ ]
108
+ },
109
+ {
110
+ "name": "repocreds",
111
+ "description": "Manage repository credentials",
112
+ "examples": [
113
+ "argocd repocreds add https://github.com/org --username user --password token",
114
+ "argocd repocreds list"
115
+ ]
116
+ },
117
+ {
118
+ "name": "appset",
119
+ "description": "Manage ApplicationSets",
120
+ "examples": [
121
+ "argocd appset list",
122
+ "argocd appset create appset.yaml",
123
+ "argocd appset get my-appset",
124
+ "argocd appset delete my-appset"
125
+ ]
126
+ },
127
+ {
128
+ "name": "admin",
129
+ "description": "Admin tools",
62
130
  "examples": [
63
- "argocd login argocd.example.com"
131
+ "argocd admin cluster kubeconfig",
132
+ "argocd admin dashboard",
133
+ "argocd admin settings validate"
64
134
  ]
65
135
  },
66
136
  {
67
- "name": "repo add",
68
- "description": "Add a Git repository",
137
+ "name": "logout",
138
+ "description": "Logout",
69
139
  "examples": [
70
- "argocd repo add https://github.com/org/repo"
140
+ "argocd logout argocd.example.com"
71
141
  ]
72
142
  },
73
143
  {
74
- "name": "cluster add",
75
- "description": "Add a cluster",
144
+ "name": "context",
145
+ "description": "Manage CLI contexts",
76
146
  "examples": [
77
- "argocd cluster add my-cluster"
147
+ "argocd context",
148
+ "argocd context argocd.example.com"
149
+ ]
150
+ },
151
+ {
152
+ "name": "version",
153
+ "description": "Show version",
154
+ "examples": [
155
+ "argocd version",
156
+ "argocd version --client"
78
157
  ]
79
158
  }
80
159
  ],
81
160
  "globalOptions": [
82
161
  {
83
162
  "name": "--server",
84
- "description": "ArgoCD server address",
163
+ "description": "Argo CD server address",
164
+ "type": "string"
165
+ },
166
+ {
167
+ "name": "--auth-token",
168
+ "description": "Auth token",
85
169
  "type": "string"
86
170
  },
87
171
  {
88
172
  "name": "--grpc-web",
89
- "description": "Use gRPC-web protocol"
173
+ "description": "Use gRPC-web"
90
174
  },
91
175
  {
92
176
  "name": "--insecure",
93
- "description": "Skip TLS verification"
177
+ "description": "Skip TLS verify"
178
+ },
179
+ {
180
+ "name": "--plaintext",
181
+ "description": "Use plaintext connection"
182
+ },
183
+ {
184
+ "name": "--port-forward",
185
+ "description": "Port-forward to ArgoCD"
186
+ },
187
+ {
188
+ "name": "--port-forward-namespace",
189
+ "description": "Namespace for port-forward",
190
+ "type": "string"
191
+ },
192
+ {
193
+ "name": "--header",
194
+ "description": "Additional headers",
195
+ "type": "string"
94
196
  }
95
197
  ],
96
198
  "examples": [
97
199
  "argocd login argocd.example.com",
98
200
  "argocd app list",
99
- "argocd app sync myapp",
100
- "argocd app get myapp",
101
- "argocd app create myapp --repo url --path k8s --dest-server svc"
201
+ "argocd app create my-app --repo https://github.com/org/repo.git --path deploy --dest-server https://kubernetes.default.svc",
202
+ "argocd app sync my-app",
203
+ "argocd app get my-app",
204
+ "argocd repo add https://github.com/org/repo.git",
205
+ "argocd cluster add my-context",
206
+ "argocd account update-password",
207
+ "argocd proj list",
208
+ "argocd appset list",
209
+ "argocd version"
102
210
  ],
103
211
  "relatedCommands": [
104
212
  "kubectl",
105
213
  "helm",
214
+ "flux",
106
215
  "kustomize",
107
- "flux"
216
+ "git"
108
217
  ]
109
218
  }
@@ -0,0 +1,161 @@
1
+ {
2
+ "name": "aws-copilot",
3
+ "description": "AWS Copilot — build, release, and operate containerized apps on ECS/Fargate",
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": "init",
19
+ "description": "Initialize a new application",
20
+ "examples": [
21
+ "copilot init",
22
+ "copilot init --app my-app --name api --type 'Load Balanced Web Service' --dockerfile ./Dockerfile --deploy"
23
+ ]
24
+ },
25
+ {
26
+ "name": "app",
27
+ "description": "Manage applications",
28
+ "examples": [
29
+ "copilot app init my-app",
30
+ "copilot app show",
31
+ "copilot app ls",
32
+ "copilot app delete"
33
+ ]
34
+ },
35
+ {
36
+ "name": "env",
37
+ "description": "Manage environments",
38
+ "examples": [
39
+ "copilot env init --name prod --profile prod --default-config",
40
+ "copilot env deploy --name prod",
41
+ "copilot env ls",
42
+ "copilot env show --name prod",
43
+ "copilot env delete --name staging"
44
+ ]
45
+ },
46
+ {
47
+ "name": "svc",
48
+ "description": "Manage services",
49
+ "examples": [
50
+ "copilot svc init --name api --svc-type 'Load Balanced Web Service'",
51
+ "copilot svc deploy --name api",
52
+ "copilot svc ls",
53
+ "copilot svc show --name api",
54
+ "copilot svc status --name api",
55
+ "copilot svc logs --name api --follow",
56
+ "copilot svc exec --name api",
57
+ "copilot svc delete --name api"
58
+ ]
59
+ },
60
+ {
61
+ "name": "job",
62
+ "description": "Manage scheduled jobs",
63
+ "examples": [
64
+ "copilot job init --name report --dockerfile ./Dockerfile --schedule '@daily'",
65
+ "copilot job deploy --name report",
66
+ "copilot job ls",
67
+ "copilot job logs --name report"
68
+ ]
69
+ },
70
+ {
71
+ "name": "pipeline",
72
+ "description": "Manage CI/CD pipelines",
73
+ "examples": [
74
+ "copilot pipeline init",
75
+ "copilot pipeline deploy",
76
+ "copilot pipeline show",
77
+ "copilot pipeline status"
78
+ ]
79
+ },
80
+ {
81
+ "name": "storage",
82
+ "description": "Manage storage resources",
83
+ "examples": [
84
+ "copilot storage init --name my-table --storage-type DynamoDB --workload api",
85
+ "copilot storage init --name my-bucket --storage-type S3 --workload api"
86
+ ]
87
+ },
88
+ {
89
+ "name": "secret",
90
+ "description": "Manage secrets",
91
+ "examples": [
92
+ "copilot secret init --name DB_PASSWORD",
93
+ "copilot secret init --name API_KEY --values prod=xxx,staging=yyy"
94
+ ]
95
+ },
96
+ {
97
+ "name": "task",
98
+ "description": "Run one-off tasks",
99
+ "examples": [
100
+ "copilot task run --command 'python migrate.py'",
101
+ "copilot task run --image public.ecr.aws/nginx/nginx --command '/bin/sh'"
102
+ ]
103
+ },
104
+ {
105
+ "name": "deploy",
106
+ "description": "Deploy service to environment",
107
+ "examples": [
108
+ "copilot deploy",
109
+ "copilot deploy --name api --env prod"
110
+ ]
111
+ },
112
+ {
113
+ "name": "version",
114
+ "description": "Print version",
115
+ "examples": [
116
+ "copilot version"
117
+ ]
118
+ }
119
+ ],
120
+ "globalOptions": [
121
+ {
122
+ "name": "--app",
123
+ "description": "Application name",
124
+ "type": "string"
125
+ },
126
+ {
127
+ "name": "--env",
128
+ "description": "Environment name",
129
+ "type": "string"
130
+ },
131
+ {
132
+ "name": "--name",
133
+ "description": "Service/job name",
134
+ "type": "string"
135
+ },
136
+ {
137
+ "name": "--json",
138
+ "description": "Output as JSON"
139
+ },
140
+ {
141
+ "name": "--yes",
142
+ "description": "Skip confirmation prompts"
143
+ }
144
+ ],
145
+ "examples": [
146
+ "copilot init",
147
+ "copilot svc deploy --name api",
148
+ "copilot svc logs --name api --follow",
149
+ "copilot env init --name prod",
150
+ "copilot svc status --name api",
151
+ "copilot pipeline init",
152
+ "copilot task run --command 'python migrate.py'",
153
+ "copilot secret init --name DB_PASSWORD"
154
+ ],
155
+ "relatedCommands": [
156
+ "aws",
157
+ "docker",
158
+ "ecs-cli",
159
+ "kubectl"
160
+ ]
161
+ }
@@ -0,0 +1,155 @@
1
+ {
2
+ "name": "az-devops",
3
+ "description": "Azure DevOps CLI extension for pipelines, repos, boards",
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 with PAT",
20
+ "examples": [
21
+ "az devops login",
22
+ "az devops login --organization https://dev.azure.com/myorg"
23
+ ]
24
+ },
25
+ {
26
+ "name": "configure",
27
+ "description": "Configure defaults",
28
+ "examples": [
29
+ "az devops configure --defaults organization=https://dev.azure.com/myorg project=myproject"
30
+ ]
31
+ },
32
+ {
33
+ "name": "project",
34
+ "description": "Manage projects",
35
+ "examples": [
36
+ "az devops project list",
37
+ "az devops project show --project myproject",
38
+ "az devops project create --name new-project"
39
+ ]
40
+ },
41
+ {
42
+ "name": "repos",
43
+ "description": "Manage repositories",
44
+ "examples": [
45
+ "az repos list",
46
+ "az repos show --repository myrepo",
47
+ "az repos create --name new-repo",
48
+ "az repos clone --repository myrepo"
49
+ ]
50
+ },
51
+ {
52
+ "name": "repos pr",
53
+ "description": "Manage pull requests",
54
+ "examples": [
55
+ "az repos pr list",
56
+ "az repos pr create --title 'My PR' --source-branch feature --target-branch main",
57
+ "az repos pr show --id 123",
58
+ "az repos pr update --id 123 --status completed"
59
+ ]
60
+ },
61
+ {
62
+ "name": "pipelines",
63
+ "description": "Manage pipelines",
64
+ "examples": [
65
+ "az pipelines list",
66
+ "az pipelines show --id 1",
67
+ "az pipelines run --id 1 --branch main",
68
+ "az pipelines create --name my-pipe --yml-path azure-pipelines.yml --repository myrepo",
69
+ "az pipelines build list"
70
+ ]
71
+ },
72
+ {
73
+ "name": "pipelines release",
74
+ "description": "Manage releases",
75
+ "examples": [
76
+ "az pipelines release list",
77
+ "az pipelines release create --definition-id 1",
78
+ "az pipelines release show --id 10"
79
+ ]
80
+ },
81
+ {
82
+ "name": "boards",
83
+ "description": "Manage work items and boards",
84
+ "examples": [
85
+ "az boards work-item list",
86
+ "az boards work-item create --title 'Bug: fix login' --type Bug",
87
+ "az boards work-item show --id 123",
88
+ "az boards work-item update --id 123 --state Active"
89
+ ]
90
+ },
91
+ {
92
+ "name": "artifacts",
93
+ "description": "Manage artifacts/packages",
94
+ "examples": [
95
+ "az artifacts universal publish --organization org --feed myfeed --name pkg --version 1.0.0 --path ./dist",
96
+ "az artifacts universal download --organization org --feed myfeed --name pkg --version 1.0.0 --path ./out"
97
+ ]
98
+ },
99
+ {
100
+ "name": "wiki",
101
+ "description": "Manage wikis",
102
+ "examples": [
103
+ "az devops wiki list",
104
+ "az devops wiki create --name my-wiki --type projectWiki",
105
+ "az devops wiki page create --wiki my-wiki --path 'Home' --file-path home.md"
106
+ ]
107
+ },
108
+ {
109
+ "name": "service-endpoint",
110
+ "description": "Manage service connections",
111
+ "examples": [
112
+ "az devops service-endpoint list",
113
+ "az devops service-endpoint create --service-endpoint-configuration endpoint.json"
114
+ ]
115
+ }
116
+ ],
117
+ "globalOptions": [
118
+ {
119
+ "name": "--organization",
120
+ "description": "Azure DevOps organization URL",
121
+ "type": "string"
122
+ },
123
+ {
124
+ "name": "--project",
125
+ "short": "-p",
126
+ "description": "Project name",
127
+ "type": "string"
128
+ },
129
+ {
130
+ "name": "--output",
131
+ "short": "-o",
132
+ "description": "Output format (json, table, tsv, yaml)",
133
+ "type": "string"
134
+ },
135
+ {
136
+ "name": "--detect",
137
+ "description": "Auto-detect organization and project"
138
+ }
139
+ ],
140
+ "examples": [
141
+ "az devops configure --defaults organization=https://dev.azure.com/myorg project=myproject",
142
+ "az repos list",
143
+ "az repos pr create --title 'Fix' --source-branch feature --target-branch main",
144
+ "az pipelines list",
145
+ "az pipelines run --id 1",
146
+ "az boards work-item create --title 'Task' --type Task",
147
+ "az artifacts universal publish --feed myfeed --name pkg --version 1.0.0 --path ./dist"
148
+ ],
149
+ "relatedCommands": [
150
+ "az",
151
+ "gh",
152
+ "glab",
153
+ "git"
154
+ ]
155
+ }