@enjoys/context-engine 1.0.2 → 1.0.4

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 (58) hide show
  1. package/data/commands/linux.json +826 -21
  2. package/data/commands/manifest.json +3 -1
  3. package/data/completion/awk.json +203 -0
  4. package/data/completion/crontab.json +203 -0
  5. package/data/completion/dotenv.json +170 -0
  6. package/data/completion/go.json +9464 -773
  7. package/data/completion/graphql.json +181 -0
  8. package/data/completion/hcl.json +192 -0
  9. package/data/completion/ini.json +137 -0
  10. package/data/completion/json.json +170 -0
  11. package/data/completion/makefile.json +203 -0
  12. package/data/completion/markdown.json +225 -0
  13. package/data/completion/nginx.json +280 -0
  14. package/data/completion/perl.json +203 -0
  15. package/data/completion/powershell.json +225 -0
  16. package/data/completion/protobuf.json +181 -0
  17. package/data/completion/ssh_config.json +159 -0
  18. package/data/completion/systemd.json +170 -0
  19. package/data/completion/xml.json +159 -0
  20. package/data/completion/zsh.json +214 -0
  21. package/data/defination/awk.json +125 -0
  22. package/data/defination/crontab.json +107 -0
  23. package/data/defination/dotenv.json +71 -0
  24. package/data/defination/go.json +14555 -380
  25. package/data/defination/graphql.json +119 -0
  26. package/data/defination/hcl.json +125 -0
  27. package/data/defination/ini.json +77 -0
  28. package/data/defination/json.json +83 -0
  29. package/data/defination/makefile.json +113 -0
  30. package/data/defination/markdown.json +107 -0
  31. package/data/defination/nginx.json +131 -0
  32. package/data/defination/perl.json +101 -0
  33. package/data/defination/powershell.json +119 -0
  34. package/data/defination/protobuf.json +119 -0
  35. package/data/defination/ssh_config.json +89 -0
  36. package/data/defination/systemd.json +107 -0
  37. package/data/defination/xml.json +83 -0
  38. package/data/defination/zsh.json +113 -0
  39. package/data/hover/awk.json +47 -0
  40. package/data/hover/crontab.json +47 -0
  41. package/data/hover/dotenv.json +47 -0
  42. package/data/hover/go.json +4324 -202
  43. package/data/hover/graphql.json +47 -0
  44. package/data/hover/hcl.json +75 -0
  45. package/data/hover/ini.json +68 -0
  46. package/data/hover/json.json +89 -0
  47. package/data/hover/makefile.json +68 -0
  48. package/data/hover/markdown.json +68 -0
  49. package/data/hover/nginx.json +89 -0
  50. package/data/hover/perl.json +47 -0
  51. package/data/hover/powershell.json +54 -0
  52. package/data/hover/protobuf.json +47 -0
  53. package/data/hover/ssh_config.json +47 -0
  54. package/data/hover/systemd.json +54 -0
  55. package/data/hover/xml.json +61 -0
  56. package/data/hover/zsh.json +61 -0
  57. package/data/manifest.json +210 -6
  58. package/package.json +1 -1
@@ -0,0 +1,47 @@
1
+ {
2
+ "language": "ssh_config",
3
+ "hovers": {
4
+ "Host": {
5
+ "contents": [
6
+ {
7
+ "value": "```\nHost myserver\n HostName 10.0.1.50\n User deploy\n\nHost *.internal\n ProxyJump bastion\n\nHost *\n ServerAliveInterval 60\n```\n**Host** blocks match by name/pattern. `Host *` sets defaults. Wildcards and negation (`!pattern`) are supported."
8
+ }
9
+ ]
10
+ },
11
+ "IdentityFile": {
12
+ "contents": [
13
+ {
14
+ "value": "```\nIdentityFile ~/.ssh/id_ed25519\nIdentityFile ~/.ssh/work_key\n```\n**IdentityFile** specifies the private key. Multiple keys can be listed - SSH tries them in order. Ed25519 keys are recommended."
15
+ }
16
+ ]
17
+ },
18
+ "ProxyJump": {
19
+ "contents": [
20
+ {
21
+ "value": "```\nHost internal\n HostName 10.0.1.50\n ProxyJump bastion\n\n# Equivalent to:\n# ssh -J bastion internal\n```\n**ProxyJump** connects through a bastion/jump host. Supports chaining: `ProxyJump host1,host2`."
22
+ }
23
+ ]
24
+ },
25
+ "LocalForward": {
26
+ "contents": [
27
+ {
28
+ "value": "```\nLocalForward 5432 db-server:5432\nLocalForward 8080 localhost:80\n\n# Then connect:\n# psql -h localhost -p 5432\n```\n**LocalForward** tunnels a local port to a remote destination via SSH. Great for accessing internal databases."
29
+ }
30
+ ]
31
+ },
32
+ "ForwardAgent": {
33
+ "contents": [
34
+ {
35
+ "value": "```\nForwardAgent yes\n\n# Security warning: only enable for trusted hosts\n# Allows the remote host to use your SSH keys\n```\n**ForwardAgent** forwards your SSH agent. Useful for hopping between hosts but poses a security risk on untrusted servers."
36
+ }
37
+ ]
38
+ },
39
+ "ServerAliveInterval": {
40
+ "contents": [
41
+ {
42
+ "value": "```\nHost *\n ServerAliveInterval 60\n ServerAliveCountMax 3\n```\n**ServerAliveInterval** sends keep-alive packets every N seconds. With CountMax=3, connection drops after 180s of no response. Prevents idle disconnections."
43
+ }
44
+ ]
45
+ }
46
+ }
47
+ }
@@ -0,0 +1,54 @@
1
+ {
2
+ "language": "systemd",
3
+ "hovers": {
4
+ "Unit": {
5
+ "contents": [
6
+ {
7
+ "value": "```ini\n[Unit]\nDescription=My Web Application\nAfter=network.target postgresql.service\nRequires=postgresql.service\n```\n**[Unit]** section defines metadata and dependencies. `After` controls startup order. `Requires` enforces hard dependencies."
8
+ }
9
+ ]
10
+ },
11
+ "Service": {
12
+ "contents": [
13
+ {
14
+ "value": "```ini\n[Service]\nType=simple\nUser=www-data\nExecStart=/opt/app/server\nRestart=on-failure\nRestartSec=5\n```\n**[Service]** section defines how to run the service. Type, user, command, restart policy, and environment are set here."
15
+ }
16
+ ]
17
+ },
18
+ "Type": {
19
+ "contents": [
20
+ {
21
+ "value": "```ini\nType=simple # default, main process stays foreground\nType=forking # traditional daemon (forks to background)\nType=oneshot # run once and exit\nType=notify # signals readiness via sd_notify()\n```\n**Type** defines the process start-up type. Most modern services use `simple`."
22
+ }
23
+ ]
24
+ },
25
+ "Restart": {
26
+ "contents": [
27
+ {
28
+ "value": "```ini\nRestart=on-failure # restart on non-zero exit, signal, timeout\nRestart=always # restart no matter what\nRestart=no # never restart (default)\nRestartSec=5 # wait 5 seconds before restart\n```\n**Restart** controls automatic restart behavior. Use `on-failure` for production services."
29
+ }
30
+ ]
31
+ },
32
+ "Timer": {
33
+ "contents": [
34
+ {
35
+ "value": "```ini\n[Timer]\nOnCalendar=*-*-* 02:00:00 # daily at 2 AM\nOnCalendar=Mon *-*-* 09:00 # Mondays at 9 AM\nOnCalendar=hourly # every hour\nPersistent=true # catch up missed runs\n```\n**Timer** units are the modern systemd alternative to cron. More flexible and integrated with logging."
36
+ }
37
+ ]
38
+ },
39
+ "Install": {
40
+ "contents": [
41
+ {
42
+ "value": "```ini\n[Install]\nWantedBy=multi-user.target # start on boot (non-GUI)\nWantedBy=graphical.target # start on boot (GUI)\n```\n**[Install]** defines how `systemctl enable` sets up the unit. `WantedBy` creates a dependency symlink."
43
+ }
44
+ ]
45
+ },
46
+ "security": {
47
+ "contents": [
48
+ {
49
+ "value": "```ini\nProtectSystem=strict\nProtectHome=true\nNoNewPrivileges=true\nPrivateTmp=true\nReadOnlyPaths=/\nReadWritePaths=/var/lib/myapp\n```\n**Security hardening** restricts what the service can access. Use `systemd-analyze security myservice` to audit."
50
+ }
51
+ ]
52
+ }
53
+ }
54
+ }
@@ -0,0 +1,61 @@
1
+ {
2
+ "language": "xml",
3
+ "hovers": {
4
+ "element": {
5
+ "contents": [
6
+ {
7
+ "value": "```xml\n<person>\n <name>John</name>\n <age>30</age>\n</person>\n```\n**Elements** are the building blocks of XML. They contain text, attributes, and/or child elements. Tags are case-sensitive."
8
+ }
9
+ ]
10
+ },
11
+ "attribute": {
12
+ "contents": [
13
+ {
14
+ "value": "```xml\n<item id=\"123\" type=\"book\">\n```\n**Attributes** provide metadata about elements. Values must always be quoted (single or double). Attribute names must be unique per element."
15
+ }
16
+ ]
17
+ },
18
+ "namespace": {
19
+ "contents": [
20
+ {
21
+ "value": "```xml\n<root xmlns:app=\"http://example.com/app\">\n <app:config>value</app:config>\n</root>\n```\n**Namespaces** qualify element/attribute names with a URI to avoid conflicts between different XML vocabularies."
22
+ }
23
+ ]
24
+ },
25
+ "CDATA": {
26
+ "contents": [
27
+ {
28
+ "value": "```xml\n<script><![CDATA[\n if (a < b && c > d) { ... }\n]]></script>\n```\n**CDATA** sections are not parsed by the XML parser. Useful for embedding code or text with special characters like `<`, `>`, `&`."
29
+ }
30
+ ]
31
+ },
32
+ "comment": {
33
+ "contents": [
34
+ {
35
+ "value": "```xml\n<!-- This is a comment -->\n<!-- TODO: fix this section -->\n```\n**Comments** are ignored by XML parsers. Cannot contain `--` within the comment body."
36
+ }
37
+ ]
38
+ },
39
+ "declaration": {
40
+ "contents": [
41
+ {
42
+ "value": "```xml\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n```\n**XML declaration** specifies version and encoding. Must appear at the very beginning of the document (before any whitespace)."
43
+ }
44
+ ]
45
+ },
46
+ "XPath": {
47
+ "contents": [
48
+ {
49
+ "value": "```xpath\n/root/child select child elements\n//element select anywhere in doc\n.//node[@attr] relative with predicate\ntext() get text content\n```\n**XPath** is a query language for navigating XML documents and selecting nodes."
50
+ }
51
+ ]
52
+ },
53
+ "entity": {
54
+ "contents": [
55
+ {
56
+ "value": "```xml\n&lt; <\n&gt; >\n&amp; &\n&quot; \"\n&apos; '\n```\n**Predefined entities** represent special characters that cannot appear literally in XML content."
57
+ }
58
+ ]
59
+ }
60
+ }
61
+ }
@@ -0,0 +1,61 @@
1
+ {
2
+ "language": "zsh",
3
+ "hovers": {
4
+ "alias": {
5
+ "contents": [
6
+ {
7
+ "value": "```zsh\nalias ll='ls -la'\nalias gs='git status'\nalias dc='docker-compose'\nalias -g L='| less' # global alias\nalias -s txt=vim # suffix alias\n```\n**alias** creates command shortcuts. `-g` creates global aliases (expanded anywhere). `-s` creates suffix aliases."
8
+ }
9
+ ]
10
+ },
11
+ "setopt": {
12
+ "contents": [
13
+ {
14
+ "value": "```zsh\nsetopt AUTO_CD # type dir name to cd\nsetopt CORRECT # spell correction\nsetopt GLOB_DOTS # include dotfiles in globs\nsetopt SHARE_HISTORY # share history across sessions\nsetopt HIST_IGNORE_DUPS # no duplicate history entries\n```\n**setopt** enables zsh options. There are 100+ options. Use `unsetopt` to disable."
15
+ }
16
+ ]
17
+ },
18
+ "autoload": {
19
+ "contents": [
20
+ {
21
+ "value": "```zsh\nautoload -Uz compinit && compinit\nautoload -Uz vcs_info\nautoload -Uz add-zsh-hook\n```\n**autoload** lazily loads functions from fpath. `-U` prevents alias expansion. `-z` uses zsh-style functions."
22
+ }
23
+ ]
24
+ },
25
+ "PROMPT": {
26
+ "contents": [
27
+ {
28
+ "value": "```zsh\n# Escape sequences:\n# %n username %m hostname\n# %~ cwd %d full path\n# %# # for root, % for user\n# %F{color}...%f foreground color\n# %B...%b bold\n\nPROMPT='%F{green}%n@%m%f:%F{blue}%~%f$ '\n```\n**PROMPT** format sequences for building custom prompts."
29
+ }
30
+ ]
31
+ },
32
+ "bindkey": {
33
+ "contents": [
34
+ {
35
+ "value": "```zsh\nbindkey '^R' history-incremental-search-backward\nbindkey '^[[A' up-line-or-search # Up arrow\nbindkey '^[[B' down-line-or-search # Down arrow\nbindkey '^E' end-of-line\nbindkey '^A' beginning-of-line\n```\n**bindkey** maps key sequences to ZLE widgets. Use `bindkey -l` to list keymaps, `bindkey` alone to show bindings."
36
+ }
37
+ ]
38
+ },
39
+ "zstyle": {
40
+ "contents": [
41
+ {
42
+ "value": "```zsh\nzstyle ':completion:*' menu select\nzstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}'\nzstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}\n```\n**zstyle** configures the completion system. Pattern-based context matching allows fine-grained control."
43
+ }
44
+ ]
45
+ },
46
+ "history": {
47
+ "contents": [
48
+ {
49
+ "value": "```zsh\nHISTFILE=~/.zsh_history\nHISTSIZE=50000\nSAVEHIST=50000\nsetopt SHARE_HISTORY # share across sessions\nsetopt HIST_IGNORE_DUPS # no adjacent dupes\nsetopt HIST_IGNORE_ALL_DUPS # no dupes at all\nsetopt HIST_REDUCE_BLANKS # trim whitespace\n```\n**History** configuration. Large HISTSIZE values are recommended. SHARE_HISTORY syncs between terminals."
50
+ }
51
+ ]
52
+ },
53
+ "oh_my_zsh": {
54
+ "contents": [
55
+ {
56
+ "value": "```zsh\nexport ZSH=\"$HOME/.oh-my-zsh\"\nZSH_THEME=\"robbyrussell\"\nplugins=(git docker kubectl z fzf)\nsource $ZSH/oh-my-zsh.sh\n```\n**Oh My Zsh** is a framework for managing zsh configuration. Provides 300+ plugins and 150+ themes out of the box."
57
+ }
58
+ ]
59
+ }
60
+ }
61
+ }
@@ -3,6 +3,15 @@
3
3
  "description": "Monaco editor language support data for completion, definition, and hover providers",
4
4
  "generatedAt": "2026-03-03",
5
5
  "languages": [
6
+ {
7
+ "id": "awk",
8
+ "name": "Awk",
9
+ "files": {
10
+ "completion": "completion/awk.json",
11
+ "defination": "defination/awk.json",
12
+ "hover": "hover/awk.json"
13
+ }
14
+ },
6
15
  {
7
16
  "id": "bash",
8
17
  "name": "Shell/Bash",
@@ -30,6 +39,15 @@
30
39
  "hover": "hover/cpp.json"
31
40
  }
32
41
  },
42
+ {
43
+ "id": "crontab",
44
+ "name": "Crontab",
45
+ "files": {
46
+ "completion": "completion/crontab.json",
47
+ "defination": "defination/crontab.json",
48
+ "hover": "hover/crontab.json"
49
+ }
50
+ },
33
51
  {
34
52
  "id": "csharp",
35
53
  "name": "C#",
@@ -48,6 +66,15 @@
48
66
  "hover": "hover/dockerfile.json"
49
67
  }
50
68
  },
69
+ {
70
+ "id": "dotenv",
71
+ "name": "Dotenv (.env)",
72
+ "files": {
73
+ "completion": "completion/dotenv.json",
74
+ "defination": "defination/dotenv.json",
75
+ "hover": "hover/dotenv.json"
76
+ }
77
+ },
51
78
  {
52
79
  "id": "go",
53
80
  "name": "Go",
@@ -57,6 +84,24 @@
57
84
  "hover": "hover/go.json"
58
85
  }
59
86
  },
87
+ {
88
+ "id": "graphql",
89
+ "name": "GraphQL",
90
+ "files": {
91
+ "completion": "completion/graphql.json",
92
+ "defination": "defination/graphql.json",
93
+ "hover": "hover/graphql.json"
94
+ }
95
+ },
96
+ {
97
+ "id": "hcl",
98
+ "name": "HCL/Terraform",
99
+ "files": {
100
+ "completion": "completion/hcl.json",
101
+ "defination": "defination/hcl.json",
102
+ "hover": "hover/hcl.json"
103
+ }
104
+ },
60
105
  {
61
106
  "id": "html",
62
107
  "name": "HTML/CSS",
@@ -66,6 +111,15 @@
66
111
  "hover": "hover/html.json"
67
112
  }
68
113
  },
114
+ {
115
+ "id": "ini",
116
+ "name": "INI/Config",
117
+ "files": {
118
+ "completion": "completion/ini.json",
119
+ "defination": "defination/ini.json",
120
+ "hover": "hover/ini.json"
121
+ }
122
+ },
69
123
  {
70
124
  "id": "java",
71
125
  "name": "Java",
@@ -84,6 +138,15 @@
84
138
  "hover": "hover/javascript.json"
85
139
  }
86
140
  },
141
+ {
142
+ "id": "json",
143
+ "name": "JSON",
144
+ "files": {
145
+ "completion": "completion/json.json",
146
+ "defination": "defination/json.json",
147
+ "hover": "hover/json.json"
148
+ }
149
+ },
87
150
  {
88
151
  "id": "lua",
89
152
  "name": "Lua",
@@ -93,6 +156,42 @@
93
156
  "hover": "hover/lua.json"
94
157
  }
95
158
  },
159
+ {
160
+ "id": "makefile",
161
+ "name": "Makefile",
162
+ "files": {
163
+ "completion": "completion/makefile.json",
164
+ "defination": "defination/makefile.json",
165
+ "hover": "hover/makefile.json"
166
+ }
167
+ },
168
+ {
169
+ "id": "markdown",
170
+ "name": "Markdown",
171
+ "files": {
172
+ "completion": "completion/markdown.json",
173
+ "defination": "defination/markdown.json",
174
+ "hover": "hover/markdown.json"
175
+ }
176
+ },
177
+ {
178
+ "id": "nginx",
179
+ "name": "Nginx",
180
+ "files": {
181
+ "completion": "completion/nginx.json",
182
+ "defination": "defination/nginx.json",
183
+ "hover": "hover/nginx.json"
184
+ }
185
+ },
186
+ {
187
+ "id": "perl",
188
+ "name": "Perl",
189
+ "files": {
190
+ "completion": "completion/perl.json",
191
+ "defination": "defination/perl.json",
192
+ "hover": "hover/perl.json"
193
+ }
194
+ },
96
195
  {
97
196
  "id": "php",
98
197
  "name": "PHP",
@@ -102,6 +201,24 @@
102
201
  "hover": "hover/php.json"
103
202
  }
104
203
  },
204
+ {
205
+ "id": "powershell",
206
+ "name": "PowerShell",
207
+ "files": {
208
+ "completion": "completion/powershell.json",
209
+ "defination": "defination/powershell.json",
210
+ "hover": "hover/powershell.json"
211
+ }
212
+ },
213
+ {
214
+ "id": "protobuf",
215
+ "name": "Protocol Buffers",
216
+ "files": {
217
+ "completion": "completion/protobuf.json",
218
+ "defination": "defination/protobuf.json",
219
+ "hover": "hover/protobuf.json"
220
+ }
221
+ },
105
222
  {
106
223
  "id": "python",
107
224
  "name": "Python",
@@ -138,6 +255,24 @@
138
255
  "hover": "hover/sql.json"
139
256
  }
140
257
  },
258
+ {
259
+ "id": "ssh_config",
260
+ "name": "SSH Config",
261
+ "files": {
262
+ "completion": "completion/ssh_config.json",
263
+ "defination": "defination/ssh_config.json",
264
+ "hover": "hover/ssh_config.json"
265
+ }
266
+ },
267
+ {
268
+ "id": "systemd",
269
+ "name": "Systemd Unit",
270
+ "files": {
271
+ "completion": "completion/systemd.json",
272
+ "defination": "defination/systemd.json",
273
+ "hover": "hover/systemd.json"
274
+ }
275
+ },
141
276
  {
142
277
  "id": "toml",
143
278
  "name": "TOML",
@@ -156,6 +291,15 @@
156
291
  "hover": "hover/typescript.json"
157
292
  }
158
293
  },
294
+ {
295
+ "id": "xml",
296
+ "name": "XML",
297
+ "files": {
298
+ "completion": "completion/xml.json",
299
+ "defination": "defination/xml.json",
300
+ "hover": "hover/xml.json"
301
+ }
302
+ },
159
303
  {
160
304
  "id": "yaml",
161
305
  "name": "YAML",
@@ -164,79 +308,139 @@
164
308
  "defination": "defination/yaml.json",
165
309
  "hover": "hover/yaml.json"
166
310
  }
311
+ },
312
+ {
313
+ "id": "zsh",
314
+ "name": "Zsh",
315
+ "files": {
316
+ "completion": "completion/zsh.json",
317
+ "defination": "defination/zsh.json",
318
+ "hover": "hover/zsh.json"
319
+ }
167
320
  }
168
321
  ],
169
322
  "directories": {
170
323
  "completion": {
171
324
  "description": "Autocomplete suggestions with snippets, functions, keywords, and documentation",
172
325
  "files": [
326
+ "awk.json",
173
327
  "bash.json",
174
328
  "c.json",
175
329
  "cpp.json",
330
+ "crontab.json",
176
331
  "csharp.json",
177
332
  "dockerfile.json",
333
+ "dotenv.json",
178
334
  "go.json",
335
+ "graphql.json",
336
+ "hcl.json",
179
337
  "html.json",
338
+ "ini.json",
180
339
  "java.json",
181
340
  "javascript.json",
341
+ "json.json",
182
342
  "lua.json",
343
+ "makefile.json",
344
+ "markdown.json",
345
+ "nginx.json",
346
+ "perl.json",
183
347
  "php.json",
348
+ "powershell.json",
349
+ "protobuf.json",
184
350
  "python.json",
185
351
  "ruby.json",
186
352
  "rust.json",
187
353
  "sql.json",
354
+ "ssh_config.json",
355
+ "systemd.json",
188
356
  "toml.json",
189
357
  "typescript.json",
190
- "yaml.json"
358
+ "xml.json",
359
+ "yaml.json",
360
+ "zsh.json"
191
361
  ]
192
362
  },
193
363
  "defination": {
194
364
  "description": "Type definitions, class signatures, method members, and module documentation",
195
365
  "files": [
366
+ "awk.json",
196
367
  "bash.json",
197
368
  "c.json",
198
369
  "cpp.json",
370
+ "crontab.json",
199
371
  "csharp.json",
200
372
  "dockerfile.json",
373
+ "dotenv.json",
201
374
  "go.json",
375
+ "graphql.json",
376
+ "hcl.json",
202
377
  "html.json",
378
+ "ini.json",
203
379
  "java.json",
204
380
  "javascript.json",
381
+ "json.json",
205
382
  "lua.json",
383
+ "makefile.json",
384
+ "markdown.json",
385
+ "nginx.json",
386
+ "perl.json",
206
387
  "php.json",
388
+ "powershell.json",
389
+ "protobuf.json",
207
390
  "python.json",
208
391
  "ruby.json",
209
392
  "rust.json",
210
393
  "sql.json",
394
+ "ssh_config.json",
395
+ "systemd.json",
211
396
  "toml.json",
212
397
  "typescript.json",
213
- "yaml.json"
398
+ "xml.json",
399
+ "yaml.json",
400
+ "zsh.json"
214
401
  ]
215
402
  },
216
403
  "hover": {
217
404
  "description": "Hover tooltips with function signatures, descriptions, and usage examples",
218
405
  "files": [
406
+ "awk.json",
219
407
  "bash.json",
220
408
  "c.json",
221
409
  "cpp.json",
410
+ "crontab.json",
222
411
  "csharp.json",
223
412
  "dockerfile.json",
413
+ "dotenv.json",
224
414
  "go.json",
415
+ "graphql.json",
416
+ "hcl.json",
225
417
  "html.json",
418
+ "ini.json",
226
419
  "java.json",
227
420
  "javascript.json",
421
+ "json.json",
228
422
  "lua.json",
423
+ "makefile.json",
424
+ "markdown.json",
425
+ "nginx.json",
426
+ "perl.json",
229
427
  "php.json",
428
+ "powershell.json",
429
+ "protobuf.json",
230
430
  "python.json",
231
431
  "ruby.json",
232
432
  "rust.json",
233
433
  "sql.json",
434
+ "ssh_config.json",
435
+ "systemd.json",
234
436
  "toml.json",
235
437
  "typescript.json",
236
- "yaml.json"
438
+ "xml.json",
439
+ "yaml.json",
440
+ "zsh.json"
237
441
  ]
238
442
  }
239
443
  },
240
- "totalLanguages": 18,
241
- "totalFiles": 54
242
- }
444
+ "totalLanguages": 35,
445
+ "totalFiles": 105
446
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enjoys/context-engine",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Comprehensive CLI command context engine with 133 tools — subcommands, options, examples, and runtime context detectors for intelligent terminal autocomplete",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",