@enjoys/context-engine 1.0.0 → 1.0.1

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 (105) hide show
  1. package/data/commands/adb.json +322 -0
  2. package/data/commands/alembic.json +301 -0
  3. package/data/commands/artisan.json +277 -0
  4. package/data/commands/atlas.json +426 -0
  5. package/data/commands/auth0.json +648 -0
  6. package/data/commands/bat.json +84 -0
  7. package/data/commands/bundle.json +321 -0
  8. package/data/commands/composer.json +507 -0
  9. package/data/commands/dart.json +216 -0
  10. package/data/commands/dbmate.json +257 -0
  11. package/data/commands/docker-compose.json +384 -0
  12. package/data/commands/drizzle-kit.json +217 -0
  13. package/data/commands/expo.json +65 -0
  14. package/data/commands/fastlane.json +243 -0
  15. package/data/commands/fd.json +86 -0
  16. package/data/commands/flutter.json +298 -0
  17. package/data/commands/flyway.json +261 -0
  18. package/data/commands/fzf.json +103 -0
  19. package/data/commands/gem.json +267 -0
  20. package/data/commands/jq.json +100 -0
  21. package/data/commands/k9s.json +62 -0
  22. package/data/commands/liquibase.json +399 -0
  23. package/data/commands/manifest.json +619 -0
  24. package/data/commands/minikube.json +60 -0
  25. package/data/commands/ng.json +64 -0
  26. package/data/commands/nuxt.json +60 -0
  27. package/data/commands/php.json +157 -0
  28. package/data/commands/pm2.json +259 -0
  29. package/data/commands/pod.json +175 -0
  30. package/data/commands/prisma.json +257 -0
  31. package/data/commands/rails.json +372 -0
  32. package/data/commands/rake.json +360 -0
  33. package/data/commands/react-native.json +57 -0
  34. package/data/commands/rg.json +103 -0
  35. package/data/commands/rspec.json +257 -0
  36. package/data/commands/ruby.json +108 -0
  37. package/data/commands/sequelize.json +342 -0
  38. package/data/commands/snyk.json +442 -0
  39. package/data/commands/sonar-scanner.json +219 -0
  40. package/data/commands/stripe.json +314 -0
  41. package/data/commands/symfony.json +449 -0
  42. package/data/commands/tmux.json +197 -0
  43. package/data/commands/trivy.json +367 -0
  44. package/data/commands/twilio.json +382 -0
  45. package/data/commands/typeorm.json +262 -0
  46. package/data/commands/vue.json +60 -0
  47. package/data/commands/wp.json +857 -0
  48. package/data/commands/xcodebuild.json +141 -0
  49. package/data/commands/yq.json +57 -0
  50. package/data/completion/bash.json +1184 -0
  51. package/data/completion/c.json +1067 -0
  52. package/data/completion/cpp.json +824 -0
  53. package/data/completion/csharp.json +860 -0
  54. package/data/completion/dockerfile.json +536 -0
  55. package/data/completion/go.json +1346 -0
  56. package/data/completion/html.json +806 -0
  57. package/data/completion/java.json +1112 -0
  58. package/data/completion/javascript.json +914 -0
  59. package/data/completion/lua.json +968 -0
  60. package/data/completion/php.json +1535 -0
  61. package/data/completion/python.json +1427 -0
  62. package/data/completion/ruby.json +1531 -0
  63. package/data/completion/rust.json +698 -0
  64. package/data/completion/sql.json +887 -0
  65. package/data/completion/toml.json +428 -0
  66. package/data/completion/typescript.json +338 -0
  67. package/data/completion/yaml.json +563 -0
  68. package/data/defination/bash.json +565 -0
  69. package/data/defination/c.json +865 -0
  70. package/data/defination/cpp.json +348 -0
  71. package/data/defination/csharp.json +144 -0
  72. package/data/defination/dockerfile.json +113 -0
  73. package/data/defination/go.json +561 -0
  74. package/data/defination/html.json +559 -0
  75. package/data/defination/java.json +184 -0
  76. package/data/defination/javascript.json +265 -0
  77. package/data/defination/lua.json +181 -0
  78. package/data/defination/php.json +726 -0
  79. package/data/defination/python.json +717 -0
  80. package/data/defination/ruby.json +670 -0
  81. package/data/defination/rust.json +207 -0
  82. package/data/defination/sql.json +473 -0
  83. package/data/defination/toml.json +251 -0
  84. package/data/defination/typescript.json +29 -0
  85. package/data/defination/yaml.json +197 -0
  86. package/data/hover/bash.json +245 -0
  87. package/data/hover/c.json +265 -0
  88. package/data/hover/cpp.json +210 -0
  89. package/data/hover/csharp.json +290 -0
  90. package/data/hover/dockerfile.json +145 -0
  91. package/data/hover/go.json +580 -0
  92. package/data/hover/html.json +250 -0
  93. package/data/hover/java.json +395 -0
  94. package/data/hover/javascript.json +330 -0
  95. package/data/hover/lua.json +265 -0
  96. package/data/hover/php.json +300 -0
  97. package/data/hover/python.json +380 -0
  98. package/data/hover/ruby.json +265 -0
  99. package/data/hover/rust.json +275 -0
  100. package/data/hover/sql.json +230 -0
  101. package/data/hover/toml.json +145 -0
  102. package/data/hover/typescript.json +120 -0
  103. package/data/hover/yaml.json +165 -0
  104. package/data/manifest.json +242 -0
  105. package/package.json +1 -1
@@ -0,0 +1,175 @@
1
+ {
2
+ "name": "pod",
3
+ "description": "CocoaPods dependency manager for Swift and Objective-C Cocoa projects",
4
+ "category": "mobile",
5
+ "platforms": [
6
+ "macos"
7
+ ],
8
+ "shells": [
9
+ "bash",
10
+ "zsh",
11
+ "fish",
12
+ "powershell"
13
+ ],
14
+ "subcommands": [
15
+ {
16
+ "name": "install",
17
+ "description": "Install project dependencies to Podfile.lock versions",
18
+ "args": [],
19
+ "options": [
20
+ {
21
+ "name": "--repo-update",
22
+ "description": "Force running `pod repo update` before install"
23
+ },
24
+ {
25
+ "name": "--clean-install",
26
+ "description": "Ignore the contents of the project cache and force a full pod installation. This only applies to projects that have enabled incremental installation"
27
+ },
28
+ {
29
+ "name": "--silent",
30
+ "description": "Show nothing"
31
+ }
32
+ ],
33
+ "examples": [
34
+ "pod install",
35
+ "pod install --repo-update"
36
+ ]
37
+ },
38
+ {
39
+ "name": "update",
40
+ "description": "Update outdated project dependencies and create new Podfile.lock",
41
+ "args": [
42
+ {
43
+ "name": "[POD_NAMES...]",
44
+ "type": "string",
45
+ "required": false,
46
+ "description": "Name of the pods to update"
47
+ }
48
+ ],
49
+ "options": [
50
+ {
51
+ "name": "--sources",
52
+ "description": "The sources from which to update dependent pods.",
53
+ "type": "string"
54
+ },
55
+ {
56
+ "name": "--exclude-pods",
57
+ "description": "Pods to exclude during update.",
58
+ "type": "string"
59
+ },
60
+ {
61
+ "name": "--clean-install",
62
+ "description": "Ignore the contents of the project cache and force a full pod installation."
63
+ }
64
+ ],
65
+ "examples": [
66
+ "pod update",
67
+ "pod update Alamofire"
68
+ ]
69
+ },
70
+ {
71
+ "name": "init",
72
+ "description": "Generate a Podfile for the current directory",
73
+ "args": [],
74
+ "options": [],
75
+ "examples": [
76
+ "pod init"
77
+ ]
78
+ },
79
+ {
80
+ "name": "outdated",
81
+ "description": "Show outdated project dependencies",
82
+ "args": [],
83
+ "options": [],
84
+ "examples": [
85
+ "pod outdated"
86
+ ]
87
+ },
88
+ {
89
+ "name": "repo",
90
+ "description": "Manage spec-repositories",
91
+ "args": [],
92
+ "options": [],
93
+ "examples": [
94
+ "pod repo list",
95
+ "pod repo update"
96
+ ]
97
+ },
98
+ {
99
+ "name": "search",
100
+ "description": "Search for pods",
101
+ "args": [
102
+ {
103
+ "name": "QUERY",
104
+ "type": "string",
105
+ "required": true,
106
+ "description": "The pod to search for"
107
+ }
108
+ ],
109
+ "options": [
110
+ {
111
+ "name": "--regex",
112
+ "description": "Interpret the `QUERY` as a regular expression"
113
+ },
114
+ {
115
+ "name": "--ios",
116
+ "description": "Restricts the search to Pods supported on iOS"
117
+ },
118
+ {
119
+ "name": "--mac",
120
+ "description": "Restricts the search to Pods supported on macOS"
121
+ }
122
+ ],
123
+ "examples": [
124
+ "pod search AFNetworking"
125
+ ]
126
+ }
127
+ ],
128
+ "globalOptions": [
129
+ {
130
+ "name": "--allow-root",
131
+ "description": "Allows CocoaPods to run as root"
132
+ },
133
+ {
134
+ "name": "--silent",
135
+ "description": "Show nothing"
136
+ },
137
+ {
138
+ "name": "--version",
139
+ "description": "Show the version of the tool"
140
+ },
141
+ {
142
+ "name": "--verbose",
143
+ "description": "Show more debugging information"
144
+ },
145
+ {
146
+ "name": "--no-ansi",
147
+ "description": "Show output without ANSI codes"
148
+ },
149
+ {
150
+ "name": "--help",
151
+ "description": "Show help banner of specified command"
152
+ }
153
+ ],
154
+ "examples": [
155
+ "pod install",
156
+ "pod update",
157
+ "pod init"
158
+ ],
159
+ "relatedCommands": [
160
+ "xcodebuild",
161
+ "fastlane",
162
+ "flutter"
163
+ ],
164
+ "contextEngine": {
165
+ "detectors": [
166
+ {
167
+ "name": "podfile",
168
+ "description": "Podfile dependencies",
169
+ "command": "cat Podfile 2>/dev/null | grep \"pod \" | head -15",
170
+ "parser": "lines",
171
+ "cacheFor": 60
172
+ }
173
+ ]
174
+ }
175
+ }
@@ -0,0 +1,257 @@
1
+ {
2
+ "name": "prisma",
3
+ "description": "Next-generation ORM for Node.js and TypeScript",
4
+ "category": "database",
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": "Setup Prisma for your app",
20
+ "args": [],
21
+ "options": [
22
+ {
23
+ "name": "--datasource-provider",
24
+ "description": "Define the datasource provider (e.g. postgresql, mysql, sqlite)",
25
+ "type": "string"
26
+ },
27
+ {
28
+ "name": "--url",
29
+ "description": "Define a custom datasource url",
30
+ "type": "string"
31
+ }
32
+ ],
33
+ "examples": [
34
+ "prisma init",
35
+ "prisma init --datasource-provider mysql"
36
+ ]
37
+ },
38
+ {
39
+ "name": "generate",
40
+ "description": "Generate artifacts (e.g. Prisma Client)",
41
+ "args": [],
42
+ "options": [
43
+ {
44
+ "name": "--schema",
45
+ "description": "Custom path to your Prisma schema",
46
+ "type": "path"
47
+ },
48
+ {
49
+ "name": "--watch",
50
+ "description": "Watch the Prisma schema and rerun after a change"
51
+ }
52
+ ],
53
+ "examples": [
54
+ "prisma generate",
55
+ "prisma generate --watch",
56
+ "prisma generate --schema=./schema.prisma"
57
+ ]
58
+ },
59
+ {
60
+ "name": "db push",
61
+ "description": "Push the state from your Prisma schema to your database",
62
+ "args": [],
63
+ "options": [
64
+ {
65
+ "name": "--schema",
66
+ "description": "Custom path to your Prisma schema",
67
+ "type": "path"
68
+ },
69
+ {
70
+ "name": "--force-reset",
71
+ "description": "Force a reset of the database before push"
72
+ },
73
+ {
74
+ "name": "--skip-generate",
75
+ "description": "Skip generating artifacts (e.g. Prisma Client)"
76
+ },
77
+ {
78
+ "name": "--accept-data-loss",
79
+ "description": "Ignore data loss warnings"
80
+ }
81
+ ],
82
+ "examples": [
83
+ "prisma db push",
84
+ "prisma db push --force-reset"
85
+ ]
86
+ },
87
+ {
88
+ "name": "db pull",
89
+ "description": "Pull the schema from an existing database, updating the Prisma schema",
90
+ "args": [],
91
+ "options": [
92
+ {
93
+ "name": "--schema",
94
+ "description": "Custom path to your Prisma schema",
95
+ "type": "path"
96
+ },
97
+ {
98
+ "name": "--force",
99
+ "description": "Force the overwrite of manual changes made to schema"
100
+ },
101
+ {
102
+ "name": "--print",
103
+ "description": "Print the introspected schema to stdout"
104
+ }
105
+ ],
106
+ "examples": [
107
+ "prisma db pull",
108
+ "prisma db pull --force"
109
+ ]
110
+ },
111
+ {
112
+ "name": "db seed",
113
+ "description": "Seed your database",
114
+ "args": [],
115
+ "options": [
116
+ {
117
+ "name": "--schema",
118
+ "description": "Custom path to your Prisma schema",
119
+ "type": "path"
120
+ }
121
+ ],
122
+ "examples": [
123
+ "prisma db seed"
124
+ ]
125
+ },
126
+ {
127
+ "name": "migrate dev",
128
+ "description": "Create a migration from changes in Prisma schema, apply it to the database, trigger generators",
129
+ "args": [],
130
+ "options": [
131
+ {
132
+ "name": "--schema",
133
+ "description": "Custom path to your Prisma schema",
134
+ "type": "path"
135
+ },
136
+ {
137
+ "name": "--name",
138
+ "short": "-n",
139
+ "description": "Name the migration",
140
+ "type": "string"
141
+ },
142
+ {
143
+ "name": "--create-only",
144
+ "description": "Create a new migration but do not apply it"
145
+ }
146
+ ],
147
+ "examples": [
148
+ "prisma migrate dev",
149
+ "prisma migrate dev --name init_db"
150
+ ]
151
+ },
152
+ {
153
+ "name": "migrate deploy",
154
+ "description": "Apply pending migrations to the database",
155
+ "args": [],
156
+ "options": [
157
+ {
158
+ "name": "--schema",
159
+ "description": "Custom path to your Prisma schema",
160
+ "type": "path"
161
+ }
162
+ ],
163
+ "examples": [
164
+ "prisma migrate deploy"
165
+ ]
166
+ },
167
+ {
168
+ "name": "migrate reset",
169
+ "description": "Reset your database and apply all migrations, all data will be lost",
170
+ "args": [],
171
+ "options": [
172
+ {
173
+ "name": "--schema",
174
+ "description": "Custom path to your Prisma schema",
175
+ "type": "path"
176
+ },
177
+ {
178
+ "name": "--force",
179
+ "short": "-f",
180
+ "description": "Skip the confirmation prompt"
181
+ }
182
+ ],
183
+ "examples": [
184
+ "prisma migrate reset",
185
+ "prisma migrate reset --force"
186
+ ]
187
+ },
188
+ {
189
+ "name": "studio",
190
+ "description": "Browse your data with Prisma Studio",
191
+ "args": [],
192
+ "options": [
193
+ {
194
+ "name": "--schema",
195
+ "description": "Custom path to your Prisma schema",
196
+ "type": "path"
197
+ },
198
+ {
199
+ "name": "--port",
200
+ "short": "-p",
201
+ "description": "Port to start Studio on",
202
+ "type": "number"
203
+ },
204
+ {
205
+ "name": "--browser",
206
+ "short": "-b",
207
+ "description": "Browser to open Studio in",
208
+ "type": "string"
209
+ }
210
+ ],
211
+ "examples": [
212
+ "prisma studio",
213
+ "prisma studio --port 5555"
214
+ ]
215
+ }
216
+ ],
217
+ "globalOptions": [
218
+ {
219
+ "name": "--help",
220
+ "short": "-h",
221
+ "description": "Display help syntax"
222
+ },
223
+ {
224
+ "name": "--version",
225
+ "short": "-v",
226
+ "description": "Display Prisma version info"
227
+ }
228
+ ],
229
+ "examples": [
230
+ "prisma migrate dev --name init",
231
+ "prisma generate",
232
+ "prisma db push",
233
+ "prisma studio"
234
+ ],
235
+ "relatedCommands": [
236
+ "node",
237
+ "npm"
238
+ ],
239
+ "contextEngine": {
240
+ "detectors": [
241
+ {
242
+ "name": "schema",
243
+ "description": "Prisma Schema Config",
244
+ "command": "cat prisma/schema.prisma 2>/dev/null",
245
+ "parser": "text",
246
+ "cacheFor": 30
247
+ },
248
+ {
249
+ "name": "migrations",
250
+ "description": "Applied Migrations",
251
+ "command": "ls prisma/migrations 2>/dev/null | grep -v 'migration_lock' | tail -5",
252
+ "parser": "lines",
253
+ "cacheFor": 60
254
+ }
255
+ ]
256
+ }
257
+ }