@enjoys/context-engine 1.2.0 → 1.4.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 (270) hide show
  1. package/data/codeActions/angular.json +126 -0
  2. package/data/codeActions/css.json +111 -0
  3. package/data/codeActions/nestjs.json +124 -0
  4. package/data/codeActions/nextjs.json +198 -0
  5. package/data/codeActions/react.json +154 -0
  6. package/data/codeActions/shadcn.json +112 -0
  7. package/data/codeActions/shell.json +169 -26
  8. package/data/codeActions/tailwindcss.json +76 -0
  9. package/data/codeLens/angular.json +22 -0
  10. package/data/codeLens/css.json +68 -0
  11. package/data/codeLens/nestjs.json +21 -0
  12. package/data/codeLens/nextjs.json +117 -0
  13. package/data/codeLens/react.json +89 -0
  14. package/data/codeLens/shadcn.json +89 -0
  15. package/data/codeLens/shell.json +59 -17
  16. package/data/codeLens/tailwindcss.json +103 -0
  17. package/data/color/angular.json +21 -0
  18. package/data/color/css.json +124 -0
  19. package/data/color/nestjs.json +18 -0
  20. package/data/color/nextjs.json +22 -0
  21. package/data/color/react.json +93 -0
  22. package/data/color/shadcn.json +66 -0
  23. package/data/color/shell.json +106 -80
  24. package/data/color/tailwindcss.json +53 -0
  25. package/data/commands/angular.json +312 -0
  26. package/data/commands/css.json +41 -0
  27. package/data/commands/manifest.json +734 -727
  28. package/data/commands/nestjs.json +273 -0
  29. package/data/commands/nextjs.json +123 -0
  30. package/data/commands/react.json +210 -0
  31. package/data/commands/shadcn.json +410 -0
  32. package/data/commands/shell.json +571 -41
  33. package/data/commands/tailwindcss.json +53 -0
  34. package/data/completion/angular.json +1490 -0
  35. package/data/completion/css.json +1176 -0
  36. package/data/completion/javascript.json +27 -0
  37. package/data/completion/nestjs.json +1454 -0
  38. package/data/completion/nextjs.json +1373 -0
  39. package/data/completion/react.json +1319 -0
  40. package/data/completion/redis-cli.json +1 -1
  41. package/data/completion/shadcn.json +1202 -0
  42. package/data/completion/shell.json +2446 -510
  43. package/data/completion/tailwindcss.json +284 -0
  44. package/data/completion/typescript.json +27 -0
  45. package/data/declaration/angular.json +46 -0
  46. package/data/declaration/css.json +59 -0
  47. package/data/declaration/nestjs.json +47 -0
  48. package/data/declaration/nextjs.json +274 -0
  49. package/data/declaration/react.json +199 -0
  50. package/data/declaration/shadcn.json +211 -0
  51. package/data/declaration/shell.json +343 -24
  52. package/data/declaration/tailwindcss.json +137 -0
  53. package/data/definition/angular.json +670 -0
  54. package/data/definition/css.json +115 -0
  55. package/data/definition/nestjs.json +684 -0
  56. package/data/definition/nextjs.json +439 -0
  57. package/data/definition/react.json +397 -0
  58. package/data/definition/redis-cli.json +1 -1
  59. package/data/definition/shadcn.json +99 -0
  60. package/data/definition/shell.json +820 -0
  61. package/data/definition/tailwindcss.json +115 -0
  62. package/data/documentHighlight/angular.json +414 -0
  63. package/data/documentHighlight/css.json +125 -0
  64. package/data/documentHighlight/nestjs.json +115 -0
  65. package/data/documentHighlight/nextjs.json +212 -0
  66. package/data/documentHighlight/react.json +119 -0
  67. package/data/documentHighlight/shadcn.json +168 -0
  68. package/data/documentHighlight/shell.json +664 -334
  69. package/data/documentHighlight/tailwindcss.json +160 -0
  70. package/data/documentRangeFormatting/angular.json +45 -0
  71. package/data/documentRangeFormatting/css.json +101 -0
  72. package/data/documentRangeFormatting/nestjs.json +17 -0
  73. package/data/documentRangeFormatting/nextjs.json +17 -0
  74. package/data/documentRangeFormatting/react.json +78 -0
  75. package/data/documentRangeFormatting/shadcn.json +45 -0
  76. package/data/documentRangeFormatting/shell.json +120 -53
  77. package/data/documentRangeFormatting/tailwindcss.json +55 -0
  78. package/data/documentSymbol/angular.json +180 -0
  79. package/data/documentSymbol/css.json +96 -0
  80. package/data/documentSymbol/nestjs.json +152 -0
  81. package/data/documentSymbol/nextjs.json +159 -0
  82. package/data/documentSymbol/react.json +145 -0
  83. package/data/documentSymbol/shadcn.json +131 -0
  84. package/data/documentSymbol/shell.json +166 -26
  85. package/data/documentSymbol/tailwindcss.json +110 -0
  86. package/data/foldingRange/angular.json +99 -0
  87. package/data/foldingRange/css.json +66 -0
  88. package/data/foldingRange/nestjs.json +26 -0
  89. package/data/foldingRange/nextjs.json +26 -0
  90. package/data/foldingRange/react.json +120 -0
  91. package/data/foldingRange/shadcn.json +93 -0
  92. package/data/foldingRange/shell.json +106 -46
  93. package/data/foldingRange/tailwindcss.json +60 -0
  94. package/data/formatting/angular.json +21 -0
  95. package/data/formatting/css.json +73 -0
  96. package/data/formatting/nestjs.json +23 -0
  97. package/data/formatting/nextjs.json +23 -0
  98. package/data/formatting/react.json +71 -0
  99. package/data/formatting/shadcn.json +61 -0
  100. package/data/formatting/shell.json +103 -19
  101. package/data/formatting/tailwindcss.json +48 -0
  102. package/data/hover/angular.json +455 -0
  103. package/data/hover/css.json +300 -0
  104. package/data/hover/nestjs.json +296 -0
  105. package/data/hover/nextjs.json +305 -0
  106. package/data/hover/react.json +173 -0
  107. package/data/hover/redis-cli.json +1 -1
  108. package/data/hover/shadcn.json +450 -0
  109. package/data/hover/shell.json +684 -75
  110. package/data/hover/tailwindcss.json +968 -0
  111. package/data/implementation/angular.json +22 -0
  112. package/data/implementation/css.json +65 -0
  113. package/data/implementation/nestjs.json +24 -0
  114. package/data/implementation/nextjs.json +137 -0
  115. package/data/implementation/react.json +125 -0
  116. package/data/implementation/shadcn.json +89 -0
  117. package/data/implementation/shell.json +59 -3
  118. package/data/implementation/tailwindcss.json +59 -0
  119. package/data/inlayHints/angular.json +24 -0
  120. package/data/inlayHints/css.json +87 -0
  121. package/data/inlayHints/nestjs.json +24 -0
  122. package/data/inlayHints/nextjs.json +143 -0
  123. package/data/inlayHints/react.json +177 -0
  124. package/data/inlayHints/shadcn.json +109 -0
  125. package/data/inlayHints/shell.json +223 -35
  126. package/data/inlayHints/tailwindcss.json +111 -0
  127. package/data/inlineCompletions/angular.json +135 -0
  128. package/data/inlineCompletions/css.json +125 -0
  129. package/data/inlineCompletions/javascript.json +12 -0
  130. package/data/inlineCompletions/nestjs.json +25 -0
  131. package/data/inlineCompletions/nextjs.json +179 -0
  132. package/data/inlineCompletions/react.json +203 -0
  133. package/data/inlineCompletions/shadcn.json +115 -0
  134. package/data/inlineCompletions/shell.json +185 -35
  135. package/data/inlineCompletions/tailwindcss.json +411 -0
  136. package/data/inlineCompletions/typescript.json +12 -0
  137. package/data/linkedEditingRange/angular.json +23 -0
  138. package/data/linkedEditingRange/css.json +40 -0
  139. package/data/linkedEditingRange/nestjs.json +10 -0
  140. package/data/linkedEditingRange/nextjs.json +11 -0
  141. package/data/linkedEditingRange/react.json +75 -0
  142. package/data/linkedEditingRange/shadcn.json +23 -0
  143. package/data/linkedEditingRange/shell.json +25 -25
  144. package/data/linkedEditingRange/tailwindcss.json +30 -0
  145. package/data/links/angular.json +95 -0
  146. package/data/links/css.json +55 -0
  147. package/data/links/nestjs.json +130 -0
  148. package/data/links/nextjs.json +91 -0
  149. package/data/links/react.json +75 -0
  150. package/data/links/shadcn.json +98 -0
  151. package/data/links/shell.json +56 -0
  152. package/data/links/tailwindcss.json +65 -0
  153. package/data/manifest.json +399 -150
  154. package/data/onTypeFormatting/angular.json +14 -0
  155. package/data/onTypeFormatting/css.json +82 -0
  156. package/data/onTypeFormatting/nestjs.json +16 -0
  157. package/data/onTypeFormatting/nextjs.json +17 -0
  158. package/data/onTypeFormatting/react.json +127 -0
  159. package/data/onTypeFormatting/shadcn.json +54 -0
  160. package/data/onTypeFormatting/shell.json +72 -68
  161. package/data/onTypeFormatting/tailwindcss.json +63 -0
  162. package/data/rangeSemanticTokens/angular.json +140 -0
  163. package/data/rangeSemanticTokens/css.json +125 -0
  164. package/data/rangeSemanticTokens/nestjs.json +27 -0
  165. package/data/rangeSemanticTokens/nextjs.json +28 -0
  166. package/data/rangeSemanticTokens/react.json +216 -0
  167. package/data/rangeSemanticTokens/shadcn.json +140 -0
  168. package/data/rangeSemanticTokens/shell.json +247 -69
  169. package/data/rangeSemanticTokens/tailwindcss.json +186 -0
  170. package/data/references/angular.json +26 -0
  171. package/data/references/css.json +65 -0
  172. package/data/references/nestjs.json +24 -0
  173. package/data/references/nextjs.json +178 -0
  174. package/data/references/react.json +192 -0
  175. package/data/references/shadcn.json +101 -0
  176. package/data/references/shell.json +323 -92
  177. package/data/references/tailwindcss.json +125 -0
  178. package/data/rename/angular.json +131 -0
  179. package/data/rename/css.json +91 -0
  180. package/data/rename/nestjs.json +32 -0
  181. package/data/rename/nextjs.json +31 -0
  182. package/data/rename/react.json +88 -0
  183. package/data/rename/shadcn.json +79 -0
  184. package/data/rename/shell.json +101 -31
  185. package/data/rename/tailwindcss.json +58 -0
  186. package/data/selectionRange/angular.json +95 -0
  187. package/data/selectionRange/css.json +55 -0
  188. package/data/selectionRange/nestjs.json +21 -0
  189. package/data/selectionRange/nextjs.json +22 -0
  190. package/data/selectionRange/react.json +87 -0
  191. package/data/selectionRange/shadcn.json +89 -0
  192. package/data/selectionRange/shell.json +65 -35
  193. package/data/selectionRange/tailwindcss.json +35 -0
  194. package/data/semanticTokens/angular.json +198 -0
  195. package/data/semanticTokens/css.json +107 -0
  196. package/data/semanticTokens/nestjs.json +35 -0
  197. package/data/semanticTokens/nextjs.json +38 -0
  198. package/data/semanticTokens/react.json +215 -0
  199. package/data/semanticTokens/shadcn.json +180 -0
  200. package/data/semanticTokens/shell.json +238 -65
  201. package/data/semanticTokens/tailwindcss.json +161 -0
  202. package/data/signatureHelp/angular.json +182 -0
  203. package/data/signatureHelp/css.json +137 -0
  204. package/data/signatureHelp/nestjs.json +128 -0
  205. package/data/signatureHelp/nextjs.json +127 -0
  206. package/data/signatureHelp/react.json +281 -0
  207. package/data/signatureHelp/shadcn.json +237 -0
  208. package/data/signatureHelp/shell.json +797 -104
  209. package/data/signatureHelp/tailwindcss.json +64 -0
  210. package/data/typeDefinition/angular.json +362 -0
  211. package/data/typeDefinition/css.json +53 -0
  212. package/data/typeDefinition/nestjs.json +334 -0
  213. package/data/typeDefinition/nextjs.json +285 -0
  214. package/data/typeDefinition/react.json +236 -0
  215. package/data/typeDefinition/shadcn.json +292 -0
  216. package/data/typeDefinition/shell.json +104 -40
  217. package/data/typeDefinition/tailwindcss.json +47 -0
  218. package/package.json +1 -1
  219. package/data/codeActions/bash.json +0 -169
  220. package/data/codeActions/zsh.json +0 -49
  221. package/data/codeLens/bash.json +0 -75
  222. package/data/codeLens/zsh.json +0 -19
  223. package/data/color/bash.json +0 -100
  224. package/data/color/zsh.json +0 -80
  225. package/data/commands/bash.json +0 -102
  226. package/data/commands/zsh.json +0 -166
  227. package/data/completion/bash.json +0 -1184
  228. package/data/completion/zsh.json +0 -973
  229. package/data/declaration/bash.json +0 -301
  230. package/data/declaration/zsh.json +0 -205
  231. package/data/definition/bash.json +0 -565
  232. package/data/definition/zsh.json +0 -350
  233. package/data/documentHighlight/bash.json +0 -393
  234. package/data/documentHighlight/zsh.json +0 -266
  235. package/data/documentRangeFormatting/bash.json +0 -41
  236. package/data/documentRangeFormatting/zsh.json +0 -59
  237. package/data/documentSymbol/bash.json +0 -124
  238. package/data/documentSymbol/zsh.json +0 -26
  239. package/data/foldingRange/bash.json +0 -76
  240. package/data/foldingRange/zsh.json +0 -46
  241. package/data/formatting/bash.json +0 -88
  242. package/data/formatting/zsh.json +0 -28
  243. package/data/hover/bash.json +0 -579
  244. package/data/hover/zsh.json +0 -96
  245. package/data/implementation/bash.json +0 -44
  246. package/data/implementation/zsh.json +0 -41
  247. package/data/inlayHints/bash.json +0 -207
  248. package/data/inlayHints/zsh.json +0 -43
  249. package/data/inlineCompletions/bash.json +0 -155
  250. package/data/inlineCompletions/zsh.json +0 -17
  251. package/data/linkedEditingRange/bash.json +0 -25
  252. package/data/linkedEditingRange/zsh.json +0 -25
  253. package/data/links/bash.json +0 -56
  254. package/data/links/zsh.json +0 -15
  255. package/data/onTypeFormatting/bash.json +0 -68
  256. package/data/onTypeFormatting/zsh.json +0 -68
  257. package/data/rangeSemanticTokens/bash.json +0 -90
  258. package/data/rangeSemanticTokens/zsh.json +0 -76
  259. package/data/references/bash.json +0 -221
  260. package/data/references/zsh.json +0 -166
  261. package/data/rename/bash.json +0 -37
  262. package/data/rename/zsh.json +0 -31
  263. package/data/selectionRange/bash.json +0 -35
  264. package/data/selectionRange/zsh.json +0 -35
  265. package/data/semanticTokens/bash.json +0 -71
  266. package/data/semanticTokens/zsh.json +0 -71
  267. package/data/signatureHelp/bash.json +0 -111
  268. package/data/signatureHelp/zsh.json +0 -118
  269. package/data/typeDefinition/bash.json +0 -95
  270. package/data/typeDefinition/zsh.json +0 -40
@@ -1,727 +1,734 @@
1
- {
2
- "files": [
3
- "abap.json",
4
- "adb.json",
5
- "air.json",
6
- "alembic.json",
7
- "ansible.json",
8
- "apachectl.json",
9
- "apex.json",
10
- "apt-get.json",
11
- "apt.json",
12
- "artisan.json",
13
- "atlas.json",
14
- "auth0.json",
15
- "awk.json",
16
- "aws-vault.json",
17
- "aws.json",
18
- "az.json",
19
- "azcli.json",
20
- "bash.json",
21
- "bat.json",
22
- "bazel.json",
23
- "bicep.json",
24
- "brew.json",
25
- "btop.json",
26
- "bun.json",
27
- "bundle.json",
28
- "c.json",
29
- "caddy.json",
30
- "cameligo.json",
31
- "cargo.json",
32
- "cat.json",
33
- "cd.json",
34
- "certbot.json",
35
- "chmod.json",
36
- "choco.json",
37
- "chown.json",
38
- "clickhouse-client.json",
39
- "clojure.json",
40
- "cloudflare.json",
41
- "cmake.json",
42
- "cockroach.json",
43
- "coffee.json",
44
- "composer.json",
45
- "conda.json",
46
- "consul.json",
47
- "cp.json",
48
- "cpp.json",
49
- "crontab.json",
50
- "csharp.json",
51
- "curl.json",
52
- "cypher.json",
53
- "cypress.json",
54
- "dart.json",
55
- "dbmate.json",
56
- "deno.json",
57
- "django-admin.json",
58
- "dnf.json",
59
- "docker-compose.json",
60
- "docker.json",
61
- "dockerfile.json",
62
- "doctest.json",
63
- "doctl.json",
64
- "dotenv.json",
65
- "drizzle-kit.json",
66
- "ecl.json",
67
- "elixir.json",
68
- "eslint.json",
69
- "expo.json",
70
- "fastlane.json",
71
- "fd.json",
72
- "find.json",
73
- "firebase.json",
74
- "flask.json",
75
- "flow9.json",
76
- "flutter.json",
77
- "flyctl.json",
78
- "flyway.json",
79
- "freemarker2.json",
80
- "fzf.json",
81
- "gcloud.json",
82
- "gem.json",
83
- "gh.json",
84
- "git.json",
85
- "glab.json",
86
- "go.json",
87
- "gofmt.json",
88
- "golangci-lint.json",
89
- "gradle.json",
90
- "graphql.json",
91
- "grep.json",
92
- "gunicorn.json",
93
- "hcl.json",
94
- "helm.json",
95
- "hg.json",
96
- "html.json",
97
- "htop.json",
98
- "httpd.json",
99
- "influx.json",
100
- "ini.json",
101
- "iptables.json",
102
- "java.json",
103
- "javascript.json",
104
- "jest.json",
105
- "journalctl.json",
106
- "jq.json",
107
- "json.json",
108
- "julia.json",
109
- "just.json",
110
- "k6.json",
111
- "k9s.json",
112
- "kotlin.json",
113
- "kubectl.json",
114
- "less.json",
115
- "lexon.json",
116
- "linode-cli.json",
117
- "linux.json",
118
- "liquibase.json",
119
- "liquid.json",
120
- "locust.json",
121
- "ls.json",
122
- "lua.json",
123
- "m3.json",
124
- "make.json",
125
- "makefile.json",
126
- "markdown.json",
127
- "mdx.json",
128
- "minikube.json",
129
- "mips.json",
130
- "mocha.json",
131
- "mongosh.json",
132
- "msdax.json",
133
- "mv.json",
134
- "mvn.json",
135
- "mysql.json",
136
- "nest.json",
137
- "netlify.json",
138
- "next.json",
139
- "nft.json",
140
- "ng.json",
141
- "nginx.json",
142
- "nmap.json",
143
- "node.json",
144
- "nomad.json",
145
- "npm.json",
146
- "npx.json",
147
- "nuxt.json",
148
- "nvim.json",
149
- "nx.json",
150
- "objective-c.json",
151
- "openssl.json",
152
- "packer.json",
153
- "pacman.json",
154
- "pascal.json",
155
- "pascaligo.json",
156
- "perl.json",
157
- "pg_dump.json",
158
- "pg_restore.json",
159
- "pgsql.json",
160
- "php.json",
161
- "pip.json",
162
- "pipenv.json",
163
- "pipx.json",
164
- "pla.json",
165
- "playwright.json",
166
- "pm2.json",
167
- "pnpm.json",
168
- "pod.json",
169
- "poetry.json",
170
- "postiats.json",
171
- "powerquery.json",
172
- "powershell.json",
173
- "prettier.json",
174
- "prisma.json",
175
- "protobuf.json",
176
- "ps.json",
177
- "psql.json",
178
- "pulumi.json",
179
- "pytest.json",
180
- "python.json",
181
- "qsharp.json",
182
- "r.json",
183
- "rails.json",
184
- "railway.json",
185
- "rake.json",
186
- "razor.json",
187
- "react-native.json",
188
- "redis-cli.json",
189
- "redis.json",
190
- "redshift.json",
191
- "render.json",
192
- "restructuredtext.json",
193
- "rg.json",
194
- "rm.json",
195
- "rspec.json",
196
- "rsync.json",
197
- "ruby.json",
198
- "rust.json",
199
- "rustup.json",
200
- "sb.json",
201
- "scala.json",
202
- "scheme.json",
203
- "scp.json",
204
- "screen.json",
205
- "scss.json",
206
- "sed.json",
207
- "sequelize.json",
208
- "shell.json",
209
- "snyk.json",
210
- "sol.json",
211
- "sonar-scanner.json",
212
- "sparql.json",
213
- "sql.json",
214
- "sqlite3.json",
215
- "ssh-keygen.json",
216
- "ssh.json",
217
- "ssh_config.json",
218
- "st.json",
219
- "stripe.json",
220
- "sudo.json",
221
- "supabase.json",
222
- "svn.json",
223
- "swift.json",
224
- "symfony.json",
225
- "systemctl.json",
226
- "systemd-analyze.json",
227
- "systemd.json",
228
- "systemverilog.json",
229
- "tar.json",
230
- "tcl.json",
231
- "tcpdump.json",
232
- "terraform.json",
233
- "terragrunt.json",
234
- "tmux.json",
235
- "toml.json",
236
- "top.json",
237
- "trivy.json",
238
- "tsc.json",
239
- "turbo.json",
240
- "twig.json",
241
- "twilio.json",
242
- "typeorm.json",
243
- "typescript.json",
244
- "ufw.json",
245
- "unzip.json",
246
- "uvicorn.json",
247
- "vault.json",
248
- "vb.json",
249
- "vercel.json",
250
- "vim.json",
251
- "vite.json",
252
- "vitest.json",
253
- "vue.json",
254
- "wasm-pack.json",
255
- "wget.json",
256
- "wgsl.json",
257
- "winget.json",
258
- "wireshark.json",
259
- "wp.json",
260
- "xcodebuild.json",
261
- "xml.json",
262
- "yaml.json",
263
- "yarn.json",
264
- "yq.json",
265
- "yum.json",
266
- "zip.json",
267
- "zsh.json"
268
- ],
269
- "context": [
270
- {
271
- "category": "☁️ Cloud CLIs",
272
- "context": [
273
- "Logged-in account",
274
- "Active project",
275
- "Regions",
276
- "Services",
277
- "Deployed apps",
278
- "Buckets",
279
- "Databases"
280
- ],
281
- "files": [
282
- "aws.json",
283
- "aws-vault.json",
284
- "gcloud.json",
285
- "az.json",
286
- "doctl.json",
287
- "linode-cli.json",
288
- "vercel.json",
289
- "netlify.json",
290
- "cloudflare.json",
291
- "firebase.json",
292
- "supabase.json",
293
- "railway.json",
294
- "render.json",
295
- "flyctl.json"
296
- ]
297
- },
298
- {
299
- "category": "🌱 Version Control",
300
- "context": [
301
- "Current branch",
302
- "Local branches",
303
- "Remote branches",
304
- "Tags",
305
- "Stashes",
306
- "PRs",
307
- "Repo status"
308
- ],
309
- "files": [
310
- "git.json",
311
- "gh.json",
312
- "glab.json",
313
- "svn.json",
314
- "hg.json"
315
- ]
316
- },
317
- {
318
- "category": "📦 Node Ecosystem",
319
- "context": [
320
- "package.json scripts",
321
- "Installed dependencies",
322
- "Node version",
323
- "Monorepo structure",
324
- "Workspaces"
325
- ],
326
- "files": [
327
- "node.json",
328
- "npm.json",
329
- "npx.json",
330
- "yarn.json",
331
- "pnpm.json",
332
- "bun.json",
333
- "turbo.json",
334
- "nx.json",
335
- "vite.json",
336
- "next.json",
337
- "nest.json",
338
- "tsc.json",
339
- "eslint.json",
340
- "prettier.json",
341
- "deno.json"
342
- ]
343
- },
344
- {
345
- "category": "🐍 Python Ecosystem",
346
- "context": [
347
- "virtualenv",
348
- "requirements.txt",
349
- "pyproject.toml",
350
- "Installed packages",
351
- "Django apps",
352
- "Flask entrypoints"
353
- ],
354
- "files": [
355
- "python.json",
356
- "pip.json",
357
- "pipx.json",
358
- "poetry.json",
359
- "pipenv.json",
360
- "conda.json",
361
- "pytest.json",
362
- "uvicorn.json",
363
- "gunicorn.json",
364
- "django-admin.json",
365
- "flask.json"
366
- ]
367
- },
368
- {
369
- "category": "🦀 Rust Ecosystem",
370
- "context": [
371
- "Cargo.toml",
372
- "Features",
373
- "Installed toolchains",
374
- "Targets"
375
- ],
376
- "files": [
377
- "cargo.json",
378
- "rustup.json",
379
- "wasm-pack.json",
380
- "rust.json"
381
- ]
382
- },
383
- {
384
- "category": "🐹 Go Ecosystem",
385
- "context": [
386
- "go.mod",
387
- "Modules",
388
- "Installed binaries"
389
- ],
390
- "files": [
391
- "go.json",
392
- "gofmt.json",
393
- "golangci-lint.json",
394
- "air.json"
395
- ]
396
- },
397
- {
398
- "category": "🐘 Databases",
399
- "context": [
400
- "Connected DB",
401
- "Schemas",
402
- "Tables",
403
- "Databases",
404
- "Redis keys",
405
- "Collections"
406
- ],
407
- "files": [
408
- "psql.json",
409
- "pg_dump.json",
410
- "pg_restore.json",
411
- "mysql.json",
412
- "mongosh.json",
413
- "redis-cli.json",
414
- "sqlite3.json",
415
- "cockroach.json",
416
- "influx.json",
417
- "clickhouse-client.json"
418
- ]
419
- },
420
- {
421
- "category": "🔐 DevOps / Infra",
422
- "context": [
423
- "tfstate",
424
- "Modules",
425
- "Workspaces",
426
- "Environments",
427
- "Secrets engines"
428
- ],
429
- "files": [
430
- "terraform.json",
431
- "terragrunt.json",
432
- "pulumi.json",
433
- "ansible.json",
434
- "packer.json",
435
- "vault.json",
436
- "consul.json",
437
- "nomad.json"
438
- ]
439
- },
440
- {
441
- "category": "🐳 Containers / Kubernetes",
442
- "context": [
443
- "Containers",
444
- "Images",
445
- "Pods",
446
- "Deployments",
447
- "Helm Releases",
448
- "Docker compose services",
449
- "Compose volumes",
450
- "Minikube status",
451
- "Profiles",
452
- "Kube contexts",
453
- "Namespaces"
454
- ],
455
- "files": [
456
- "docker.json",
457
- "kubectl.json",
458
- "helm.json",
459
- "docker-compose.json",
460
- "minikube.json",
461
- "k9s.json"
462
- ]
463
- },
464
- {
465
- "category": "🔧 Build Tools",
466
- "context": [
467
- "Makefile targets",
468
- "Gradle tasks",
469
- "Maven goals",
470
- "Bazel targets"
471
- ],
472
- "files": [
473
- "make.json",
474
- "cmake.json",
475
- "gradle.json",
476
- "mvn.json",
477
- "bazel.json",
478
- "just.json"
479
- ]
480
- },
481
- {
482
- "category": "⚙️ Linux Coreutils (Smart FS Context)",
483
- "context": [
484
- "Files",
485
- "Directories",
486
- "SSH configs",
487
- "Services",
488
- "Logs",
489
- "Network interfaces"
490
- ],
491
- "files": [
492
- "ls.json",
493
- "cd.json",
494
- "cp.json",
495
- "mv.json",
496
- "rm.json",
497
- "chmod.json",
498
- "chown.json",
499
- "find.json",
500
- "grep.json",
501
- "sed.json",
502
- "awk.json",
503
- "tar.json",
504
- "zip.json",
505
- "unzip.json",
506
- "curl.json",
507
- "wget.json",
508
- "ssh.json",
509
- "scp.json",
510
- "rsync.json",
511
- "systemctl.json",
512
- "systemd-analyze.json",
513
- "journalctl.json",
514
- "ufw.json",
515
- "iptables.json",
516
- "nft.json",
517
- "cat.json",
518
- "ps.json",
519
- "sudo.json",
520
- "ssh-keygen.json",
521
- "linux.json",
522
- "zsh.json"
523
- ]
524
- },
525
- {
526
- "category": "🧪 Testing Tools",
527
- "context": [
528
- "Test files",
529
- "Config files",
530
- "Environments"
531
- ],
532
- "files": [
533
- "jest.json",
534
- "vitest.json",
535
- "mocha.json",
536
- "playwright.json",
537
- "cypress.json",
538
- "k6.json",
539
- "locust.json"
540
- ]
541
- },
542
- {
543
- "category": "📡 Networking / Security",
544
- "context": [
545
- "Open ports",
546
- "Certificates",
547
- "vhost configs"
548
- ],
549
- "files": [
550
- "nmap.json",
551
- "tcpdump.json",
552
- "wireshark.json",
553
- "openssl.json",
554
- "nginx.json",
555
- "apachectl.json",
556
- "certbot.json",
557
- "caddy.json",
558
- "httpd.json"
559
- ]
560
- },
561
- {
562
- "category": "🖥 Package Managers (System)",
563
- "context": [
564
- "Installed packages",
565
- "Available packages",
566
- "OS detection"
567
- ],
568
- "files": [
569
- "apt.json",
570
- "apt-get.json",
571
- "yum.json",
572
- "dnf.json",
573
- "pacman.json",
574
- "brew.json",
575
- "choco.json",
576
- "winget.json"
577
- ]
578
- },
579
- {
580
- "category": "☕ Java Ecosystem",
581
- "context": [
582
- "Classes",
583
- "Jar files"
584
- ],
585
- "files": [
586
- "java.json"
587
- ]
588
- },
589
- {
590
- "category": "🐘 PHP & Ruby Ecosystems",
591
- "context": [
592
- "PHP version",
593
- "Modules",
594
- "Config path",
595
- "Dependencies",
596
- "Autoloaders",
597
- "Routes",
598
- "Migrations",
599
- "Artisan commands",
600
- "Ruby version",
601
- "Gems",
602
- "Gemfile"
603
- ],
604
- "files": [
605
- "php.json",
606
- "composer.json",
607
- "artisan.json",
608
- "ruby.json",
609
- "bundle.json",
610
- "gem.json",
611
- "rails.json"
612
- ]
613
- },
614
- {
615
- "category": "🛠️ Text Processing & Utilities",
616
- "context": [
617
- "JSON files",
618
- "Parsed outputs",
619
- "Terminal sessions",
620
- "Windows",
621
- "Panes",
622
- "YAML files",
623
- "Parsed YAML output"
624
- ],
625
- "files": [
626
- "jq.json",
627
- "tmux.json",
628
- "yq.json"
629
- ]
630
- },
631
- {
632
- "category": "📱 Mobile Development",
633
- "context": [
634
- "Connected Devices",
635
- "Flutter packages",
636
- "Dart files",
637
- "Emulators",
638
- "Expo app.json",
639
- "EAS builds",
640
- "Metro config",
641
- "Native modules",
642
- "iOS Podfile",
643
- "Installed pods",
644
- "Xcode Workspaces",
645
- "Xcode Projects",
646
- "Schemes",
647
- "Fastlane lanes",
648
- "Certificates"
649
- ],
650
- "files": [
651
- "flutter.json",
652
- "dart.json",
653
- "adb.json",
654
- "expo.json",
655
- "react-native.json",
656
- "pod.json",
657
- "xcodebuild.json",
658
- "fastlane.json"
659
- ]
660
- },
661
- {
662
- "category": "🗄️ Database ORMs & Migrations",
663
- "context": [
664
- "Prisma Schema",
665
- "Migrations"
666
- ],
667
- "files": [
668
- "prisma.json"
669
- ]
670
- },
671
- {
672
- "category": "🔐 Security & APIs",
673
- "context": [
674
- "Webhook events",
675
- "Stripe config"
676
- ],
677
- "files": [
678
- "stripe.json"
679
- ]
680
- },
681
- {
682
- "category": "⚙️ Node Version & Process Managers",
683
- "context": [
684
- "Running processes",
685
- "Daemon logs"
686
- ],
687
- "files": [
688
- "pm2.json"
689
- ]
690
- },
691
- {
692
- "category": "🖼️ Frontend Frameworks",
693
- "context": [
694
- "Angular projects",
695
- "Components",
696
- "Vue config files",
697
- "Plugins",
698
- "Nuxt pages",
699
- "Nuxt modules"
700
- ],
701
- "files": [
702
- "ng.json",
703
- "vue.json",
704
- "nuxt.json"
705
- ]
706
- },
707
- {
708
- "category": "📱 Mobile Development CLIs",
709
- "context": [],
710
- "files": [
711
- "flutter.json",
712
- "dart.json",
713
- "pod.json",
714
- "xcodebuild.json",
715
- "fastlane.json",
716
- "adb.json"
717
- ]
718
- },
719
- {
720
- "category": "🌐 API, Security & SaaS CLIs",
721
- "context": [],
722
- "files": [
723
- "stripe.json"
724
- ]
725
- }
726
- ]
727
- }
1
+ {
2
+ "files": [
3
+ "abap.json",
4
+ "adb.json",
5
+ "air.json",
6
+ "alembic.json",
7
+ "angular.json",
8
+ "ansible.json",
9
+ "apachectl.json",
10
+ "apex.json",
11
+ "apt-get.json",
12
+ "apt.json",
13
+ "artisan.json",
14
+ "atlas.json",
15
+ "auth0.json",
16
+ "awk.json",
17
+ "aws-vault.json",
18
+ "aws.json",
19
+ "az.json",
20
+ "azcli.json",
21
+ "bash.json",
22
+ "bat.json",
23
+ "bazel.json",
24
+ "bicep.json",
25
+ "brew.json",
26
+ "btop.json",
27
+ "bun.json",
28
+ "bundle.json",
29
+ "c.json",
30
+ "caddy.json",
31
+ "cameligo.json",
32
+ "cargo.json",
33
+ "cat.json",
34
+ "cd.json",
35
+ "certbot.json",
36
+ "chmod.json",
37
+ "choco.json",
38
+ "chown.json",
39
+ "clickhouse-client.json",
40
+ "clojure.json",
41
+ "cloudflare.json",
42
+ "cmake.json",
43
+ "cockroach.json",
44
+ "coffee.json",
45
+ "composer.json",
46
+ "conda.json",
47
+ "consul.json",
48
+ "cp.json",
49
+ "cpp.json",
50
+ "crontab.json",
51
+ "csharp.json",
52
+ "css.json",
53
+ "curl.json",
54
+ "cypher.json",
55
+ "cypress.json",
56
+ "dart.json",
57
+ "dbmate.json",
58
+ "deno.json",
59
+ "django-admin.json",
60
+ "dnf.json",
61
+ "docker-compose.json",
62
+ "docker.json",
63
+ "dockerfile.json",
64
+ "doctest.json",
65
+ "doctl.json",
66
+ "dotenv.json",
67
+ "drizzle-kit.json",
68
+ "ecl.json",
69
+ "elixir.json",
70
+ "eslint.json",
71
+ "expo.json",
72
+ "fastlane.json",
73
+ "fd.json",
74
+ "find.json",
75
+ "firebase.json",
76
+ "flask.json",
77
+ "flow9.json",
78
+ "flutter.json",
79
+ "flyctl.json",
80
+ "flyway.json",
81
+ "freemarker2.json",
82
+ "fzf.json",
83
+ "gcloud.json",
84
+ "gem.json",
85
+ "gh.json",
86
+ "git.json",
87
+ "glab.json",
88
+ "go.json",
89
+ "gofmt.json",
90
+ "golangci-lint.json",
91
+ "gradle.json",
92
+ "graphql.json",
93
+ "grep.json",
94
+ "gunicorn.json",
95
+ "hcl.json",
96
+ "helm.json",
97
+ "hg.json",
98
+ "html.json",
99
+ "htop.json",
100
+ "httpd.json",
101
+ "influx.json",
102
+ "ini.json",
103
+ "iptables.json",
104
+ "java.json",
105
+ "javascript.json",
106
+ "jest.json",
107
+ "journalctl.json",
108
+ "jq.json",
109
+ "json.json",
110
+ "julia.json",
111
+ "just.json",
112
+ "k6.json",
113
+ "k9s.json",
114
+ "kotlin.json",
115
+ "kubectl.json",
116
+ "less.json",
117
+ "lexon.json",
118
+ "linode-cli.json",
119
+ "linux.json",
120
+ "liquibase.json",
121
+ "liquid.json",
122
+ "locust.json",
123
+ "ls.json",
124
+ "lua.json",
125
+ "m3.json",
126
+ "make.json",
127
+ "makefile.json",
128
+ "markdown.json",
129
+ "mdx.json",
130
+ "minikube.json",
131
+ "mips.json",
132
+ "mocha.json",
133
+ "mongosh.json",
134
+ "msdax.json",
135
+ "mv.json",
136
+ "mvn.json",
137
+ "mysql.json",
138
+ "nest.json",
139
+ "nestjs.json",
140
+ "netlify.json",
141
+ "next.json",
142
+ "nextjs.json",
143
+ "nft.json",
144
+ "ng.json",
145
+ "nginx.json",
146
+ "nmap.json",
147
+ "node.json",
148
+ "nomad.json",
149
+ "npm.json",
150
+ "npx.json",
151
+ "nuxt.json",
152
+ "nvim.json",
153
+ "nx.json",
154
+ "objective-c.json",
155
+ "openssl.json",
156
+ "packer.json",
157
+ "pacman.json",
158
+ "pascal.json",
159
+ "pascaligo.json",
160
+ "perl.json",
161
+ "pg_dump.json",
162
+ "pg_restore.json",
163
+ "pgsql.json",
164
+ "php.json",
165
+ "pip.json",
166
+ "pipenv.json",
167
+ "pipx.json",
168
+ "pla.json",
169
+ "playwright.json",
170
+ "pm2.json",
171
+ "pnpm.json",
172
+ "pod.json",
173
+ "poetry.json",
174
+ "postiats.json",
175
+ "powerquery.json",
176
+ "powershell.json",
177
+ "prettier.json",
178
+ "prisma.json",
179
+ "protobuf.json",
180
+ "ps.json",
181
+ "psql.json",
182
+ "pulumi.json",
183
+ "pytest.json",
184
+ "python.json",
185
+ "qsharp.json",
186
+ "r.json",
187
+ "rails.json",
188
+ "railway.json",
189
+ "rake.json",
190
+ "razor.json",
191
+ "react-native.json",
192
+ "react.json",
193
+ "redis-cli.json",
194
+ "redis.json",
195
+ "redshift.json",
196
+ "render.json",
197
+ "restructuredtext.json",
198
+ "rg.json",
199
+ "rm.json",
200
+ "rspec.json",
201
+ "rsync.json",
202
+ "ruby.json",
203
+ "rust.json",
204
+ "rustup.json",
205
+ "sb.json",
206
+ "scala.json",
207
+ "scheme.json",
208
+ "scp.json",
209
+ "screen.json",
210
+ "scss.json",
211
+ "sed.json",
212
+ "sequelize.json",
213
+ "shadcn.json",
214
+ "shell.json",
215
+ "snyk.json",
216
+ "sol.json",
217
+ "sonar-scanner.json",
218
+ "sparql.json",
219
+ "sql.json",
220
+ "sqlite3.json",
221
+ "ssh-keygen.json",
222
+ "ssh.json",
223
+ "ssh_config.json",
224
+ "st.json",
225
+ "stripe.json",
226
+ "sudo.json",
227
+ "supabase.json",
228
+ "svn.json",
229
+ "swift.json",
230
+ "symfony.json",
231
+ "systemctl.json",
232
+ "systemd-analyze.json",
233
+ "systemd.json",
234
+ "systemverilog.json",
235
+ "tailwindcss.json",
236
+ "tar.json",
237
+ "tcl.json",
238
+ "tcpdump.json",
239
+ "terraform.json",
240
+ "terragrunt.json",
241
+ "tmux.json",
242
+ "toml.json",
243
+ "top.json",
244
+ "trivy.json",
245
+ "tsc.json",
246
+ "turbo.json",
247
+ "twig.json",
248
+ "twilio.json",
249
+ "typeorm.json",
250
+ "typescript.json",
251
+ "ufw.json",
252
+ "unzip.json",
253
+ "uvicorn.json",
254
+ "vault.json",
255
+ "vb.json",
256
+ "vercel.json",
257
+ "vim.json",
258
+ "vite.json",
259
+ "vitest.json",
260
+ "vue.json",
261
+ "wasm-pack.json",
262
+ "wget.json",
263
+ "wgsl.json",
264
+ "winget.json",
265
+ "wireshark.json",
266
+ "wp.json",
267
+ "xcodebuild.json",
268
+ "xml.json",
269
+ "yaml.json",
270
+ "yarn.json",
271
+ "yq.json",
272
+ "yum.json",
273
+ "zip.json",
274
+ "zsh.json"
275
+ ],
276
+ "context": [
277
+ {
278
+ "category": "☁️ Cloud CLIs",
279
+ "context": [
280
+ "Logged-in account",
281
+ "Active project",
282
+ "Regions",
283
+ "Services",
284
+ "Deployed apps",
285
+ "Buckets",
286
+ "Databases"
287
+ ],
288
+ "files": [
289
+ "aws.json",
290
+ "aws-vault.json",
291
+ "gcloud.json",
292
+ "az.json",
293
+ "doctl.json",
294
+ "linode-cli.json",
295
+ "vercel.json",
296
+ "netlify.json",
297
+ "cloudflare.json",
298
+ "firebase.json",
299
+ "supabase.json",
300
+ "railway.json",
301
+ "render.json",
302
+ "flyctl.json"
303
+ ]
304
+ },
305
+ {
306
+ "category": "🌱 Version Control",
307
+ "context": [
308
+ "Current branch",
309
+ "Local branches",
310
+ "Remote branches",
311
+ "Tags",
312
+ "Stashes",
313
+ "PRs",
314
+ "Repo status"
315
+ ],
316
+ "files": [
317
+ "git.json",
318
+ "gh.json",
319
+ "glab.json",
320
+ "svn.json",
321
+ "hg.json"
322
+ ]
323
+ },
324
+ {
325
+ "category": "📦 Node Ecosystem",
326
+ "context": [
327
+ "package.json scripts",
328
+ "Installed dependencies",
329
+ "Node version",
330
+ "Monorepo structure",
331
+ "Workspaces"
332
+ ],
333
+ "files": [
334
+ "node.json",
335
+ "npm.json",
336
+ "npx.json",
337
+ "yarn.json",
338
+ "pnpm.json",
339
+ "bun.json",
340
+ "turbo.json",
341
+ "nx.json",
342
+ "vite.json",
343
+ "next.json",
344
+ "nest.json",
345
+ "tsc.json",
346
+ "eslint.json",
347
+ "prettier.json",
348
+ "deno.json"
349
+ ]
350
+ },
351
+ {
352
+ "category": "🐍 Python Ecosystem",
353
+ "context": [
354
+ "virtualenv",
355
+ "requirements.txt",
356
+ "pyproject.toml",
357
+ "Installed packages",
358
+ "Django apps",
359
+ "Flask entrypoints"
360
+ ],
361
+ "files": [
362
+ "python.json",
363
+ "pip.json",
364
+ "pipx.json",
365
+ "poetry.json",
366
+ "pipenv.json",
367
+ "conda.json",
368
+ "pytest.json",
369
+ "uvicorn.json",
370
+ "gunicorn.json",
371
+ "django-admin.json",
372
+ "flask.json"
373
+ ]
374
+ },
375
+ {
376
+ "category": "🦀 Rust Ecosystem",
377
+ "context": [
378
+ "Cargo.toml",
379
+ "Features",
380
+ "Installed toolchains",
381
+ "Targets"
382
+ ],
383
+ "files": [
384
+ "cargo.json",
385
+ "rustup.json",
386
+ "wasm-pack.json",
387
+ "rust.json"
388
+ ]
389
+ },
390
+ {
391
+ "category": "🐹 Go Ecosystem",
392
+ "context": [
393
+ "go.mod",
394
+ "Modules",
395
+ "Installed binaries"
396
+ ],
397
+ "files": [
398
+ "go.json",
399
+ "gofmt.json",
400
+ "golangci-lint.json",
401
+ "air.json"
402
+ ]
403
+ },
404
+ {
405
+ "category": "🐘 Databases",
406
+ "context": [
407
+ "Connected DB",
408
+ "Schemas",
409
+ "Tables",
410
+ "Databases",
411
+ "Redis keys",
412
+ "Collections"
413
+ ],
414
+ "files": [
415
+ "psql.json",
416
+ "pg_dump.json",
417
+ "pg_restore.json",
418
+ "mysql.json",
419
+ "mongosh.json",
420
+ "redis-cli.json",
421
+ "sqlite3.json",
422
+ "cockroach.json",
423
+ "influx.json",
424
+ "clickhouse-client.json"
425
+ ]
426
+ },
427
+ {
428
+ "category": "🔐 DevOps / Infra",
429
+ "context": [
430
+ "tfstate",
431
+ "Modules",
432
+ "Workspaces",
433
+ "Environments",
434
+ "Secrets engines"
435
+ ],
436
+ "files": [
437
+ "terraform.json",
438
+ "terragrunt.json",
439
+ "pulumi.json",
440
+ "ansible.json",
441
+ "packer.json",
442
+ "vault.json",
443
+ "consul.json",
444
+ "nomad.json"
445
+ ]
446
+ },
447
+ {
448
+ "category": "🐳 Containers / Kubernetes",
449
+ "context": [
450
+ "Containers",
451
+ "Images",
452
+ "Pods",
453
+ "Deployments",
454
+ "Helm Releases",
455
+ "Docker compose services",
456
+ "Compose volumes",
457
+ "Minikube status",
458
+ "Profiles",
459
+ "Kube contexts",
460
+ "Namespaces"
461
+ ],
462
+ "files": [
463
+ "docker.json",
464
+ "kubectl.json",
465
+ "helm.json",
466
+ "docker-compose.json",
467
+ "minikube.json",
468
+ "k9s.json"
469
+ ]
470
+ },
471
+ {
472
+ "category": "🔧 Build Tools",
473
+ "context": [
474
+ "Makefile targets",
475
+ "Gradle tasks",
476
+ "Maven goals",
477
+ "Bazel targets"
478
+ ],
479
+ "files": [
480
+ "make.json",
481
+ "cmake.json",
482
+ "gradle.json",
483
+ "mvn.json",
484
+ "bazel.json",
485
+ "just.json"
486
+ ]
487
+ },
488
+ {
489
+ "category": "⚙️ Linux Coreutils (Smart FS Context)",
490
+ "context": [
491
+ "Files",
492
+ "Directories",
493
+ "SSH configs",
494
+ "Services",
495
+ "Logs",
496
+ "Network interfaces"
497
+ ],
498
+ "files": [
499
+ "ls.json",
500
+ "cd.json",
501
+ "cp.json",
502
+ "mv.json",
503
+ "rm.json",
504
+ "chmod.json",
505
+ "chown.json",
506
+ "find.json",
507
+ "grep.json",
508
+ "sed.json",
509
+ "awk.json",
510
+ "tar.json",
511
+ "zip.json",
512
+ "unzip.json",
513
+ "curl.json",
514
+ "wget.json",
515
+ "ssh.json",
516
+ "scp.json",
517
+ "rsync.json",
518
+ "systemctl.json",
519
+ "systemd-analyze.json",
520
+ "journalctl.json",
521
+ "ufw.json",
522
+ "iptables.json",
523
+ "nft.json",
524
+ "cat.json",
525
+ "ps.json",
526
+ "sudo.json",
527
+ "ssh-keygen.json",
528
+ "linux.json",
529
+ "zsh.json"
530
+ ]
531
+ },
532
+ {
533
+ "category": "🧪 Testing Tools",
534
+ "context": [
535
+ "Test files",
536
+ "Config files",
537
+ "Environments"
538
+ ],
539
+ "files": [
540
+ "jest.json",
541
+ "vitest.json",
542
+ "mocha.json",
543
+ "playwright.json",
544
+ "cypress.json",
545
+ "k6.json",
546
+ "locust.json"
547
+ ]
548
+ },
549
+ {
550
+ "category": "📡 Networking / Security",
551
+ "context": [
552
+ "Open ports",
553
+ "Certificates",
554
+ "vhost configs"
555
+ ],
556
+ "files": [
557
+ "nmap.json",
558
+ "tcpdump.json",
559
+ "wireshark.json",
560
+ "openssl.json",
561
+ "nginx.json",
562
+ "apachectl.json",
563
+ "certbot.json",
564
+ "caddy.json",
565
+ "httpd.json"
566
+ ]
567
+ },
568
+ {
569
+ "category": "🖥 Package Managers (System)",
570
+ "context": [
571
+ "Installed packages",
572
+ "Available packages",
573
+ "OS detection"
574
+ ],
575
+ "files": [
576
+ "apt.json",
577
+ "apt-get.json",
578
+ "yum.json",
579
+ "dnf.json",
580
+ "pacman.json",
581
+ "brew.json",
582
+ "choco.json",
583
+ "winget.json"
584
+ ]
585
+ },
586
+ {
587
+ "category": "☕ Java Ecosystem",
588
+ "context": [
589
+ "Classes",
590
+ "Jar files"
591
+ ],
592
+ "files": [
593
+ "java.json"
594
+ ]
595
+ },
596
+ {
597
+ "category": "🐘 PHP & Ruby Ecosystems",
598
+ "context": [
599
+ "PHP version",
600
+ "Modules",
601
+ "Config path",
602
+ "Dependencies",
603
+ "Autoloaders",
604
+ "Routes",
605
+ "Migrations",
606
+ "Artisan commands",
607
+ "Ruby version",
608
+ "Gems",
609
+ "Gemfile"
610
+ ],
611
+ "files": [
612
+ "php.json",
613
+ "composer.json",
614
+ "artisan.json",
615
+ "ruby.json",
616
+ "bundle.json",
617
+ "gem.json",
618
+ "rails.json"
619
+ ]
620
+ },
621
+ {
622
+ "category": "🛠️ Text Processing & Utilities",
623
+ "context": [
624
+ "JSON files",
625
+ "Parsed outputs",
626
+ "Terminal sessions",
627
+ "Windows",
628
+ "Panes",
629
+ "YAML files",
630
+ "Parsed YAML output"
631
+ ],
632
+ "files": [
633
+ "jq.json",
634
+ "tmux.json",
635
+ "yq.json"
636
+ ]
637
+ },
638
+ {
639
+ "category": "📱 Mobile Development",
640
+ "context": [
641
+ "Connected Devices",
642
+ "Flutter packages",
643
+ "Dart files",
644
+ "Emulators",
645
+ "Expo app.json",
646
+ "EAS builds",
647
+ "Metro config",
648
+ "Native modules",
649
+ "iOS Podfile",
650
+ "Installed pods",
651
+ "Xcode Workspaces",
652
+ "Xcode Projects",
653
+ "Schemes",
654
+ "Fastlane lanes",
655
+ "Certificates"
656
+ ],
657
+ "files": [
658
+ "flutter.json",
659
+ "dart.json",
660
+ "adb.json",
661
+ "expo.json",
662
+ "react-native.json",
663
+ "pod.json",
664
+ "xcodebuild.json",
665
+ "fastlane.json"
666
+ ]
667
+ },
668
+ {
669
+ "category": "🗄️ Database ORMs & Migrations",
670
+ "context": [
671
+ "Prisma Schema",
672
+ "Migrations"
673
+ ],
674
+ "files": [
675
+ "prisma.json"
676
+ ]
677
+ },
678
+ {
679
+ "category": "🔐 Security & APIs",
680
+ "context": [
681
+ "Webhook events",
682
+ "Stripe config"
683
+ ],
684
+ "files": [
685
+ "stripe.json"
686
+ ]
687
+ },
688
+ {
689
+ "category": "⚙️ Node Version & Process Managers",
690
+ "context": [
691
+ "Running processes",
692
+ "Daemon logs"
693
+ ],
694
+ "files": [
695
+ "pm2.json"
696
+ ]
697
+ },
698
+ {
699
+ "category": "🖼️ Frontend Frameworks",
700
+ "context": [
701
+ "Angular projects",
702
+ "Components",
703
+ "Vue config files",
704
+ "Plugins",
705
+ "Nuxt pages",
706
+ "Nuxt modules"
707
+ ],
708
+ "files": [
709
+ "ng.json",
710
+ "vue.json",
711
+ "nuxt.json"
712
+ ]
713
+ },
714
+ {
715
+ "category": "📱 Mobile Development CLIs",
716
+ "context": [],
717
+ "files": [
718
+ "flutter.json",
719
+ "dart.json",
720
+ "pod.json",
721
+ "xcodebuild.json",
722
+ "fastlane.json",
723
+ "adb.json"
724
+ ]
725
+ },
726
+ {
727
+ "category": "🌐 API, Security & SaaS CLIs",
728
+ "context": [],
729
+ "files": [
730
+ "stripe.json"
731
+ ]
732
+ }
733
+ ]
734
+ }