@enjoys/context-engine 1.0.3 → 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 (53) hide show
  1. package/data/completion/awk.json +203 -0
  2. package/data/completion/crontab.json +203 -0
  3. package/data/completion/dotenv.json +170 -0
  4. package/data/completion/graphql.json +181 -0
  5. package/data/completion/hcl.json +192 -0
  6. package/data/completion/ini.json +137 -0
  7. package/data/completion/json.json +170 -0
  8. package/data/completion/makefile.json +203 -0
  9. package/data/completion/markdown.json +225 -0
  10. package/data/completion/nginx.json +280 -0
  11. package/data/completion/perl.json +203 -0
  12. package/data/completion/powershell.json +225 -0
  13. package/data/completion/protobuf.json +181 -0
  14. package/data/completion/ssh_config.json +159 -0
  15. package/data/completion/systemd.json +170 -0
  16. package/data/completion/xml.json +159 -0
  17. package/data/completion/zsh.json +214 -0
  18. package/data/defination/awk.json +125 -0
  19. package/data/defination/crontab.json +107 -0
  20. package/data/defination/dotenv.json +71 -0
  21. package/data/defination/graphql.json +119 -0
  22. package/data/defination/hcl.json +125 -0
  23. package/data/defination/ini.json +77 -0
  24. package/data/defination/json.json +83 -0
  25. package/data/defination/makefile.json +113 -0
  26. package/data/defination/markdown.json +107 -0
  27. package/data/defination/nginx.json +131 -0
  28. package/data/defination/perl.json +101 -0
  29. package/data/defination/powershell.json +119 -0
  30. package/data/defination/protobuf.json +119 -0
  31. package/data/defination/ssh_config.json +89 -0
  32. package/data/defination/systemd.json +107 -0
  33. package/data/defination/xml.json +83 -0
  34. package/data/defination/zsh.json +113 -0
  35. package/data/hover/awk.json +47 -0
  36. package/data/hover/crontab.json +47 -0
  37. package/data/hover/dotenv.json +47 -0
  38. package/data/hover/graphql.json +47 -0
  39. package/data/hover/hcl.json +75 -0
  40. package/data/hover/ini.json +68 -0
  41. package/data/hover/json.json +89 -0
  42. package/data/hover/makefile.json +68 -0
  43. package/data/hover/markdown.json +68 -0
  44. package/data/hover/nginx.json +89 -0
  45. package/data/hover/perl.json +47 -0
  46. package/data/hover/powershell.json +54 -0
  47. package/data/hover/protobuf.json +47 -0
  48. package/data/hover/ssh_config.json +47 -0
  49. package/data/hover/systemd.json +54 -0
  50. package/data/hover/xml.json +61 -0
  51. package/data/hover/zsh.json +61 -0
  52. package/data/manifest.json +210 -6
  53. package/package.json +1 -1
@@ -0,0 +1,113 @@
1
+ {
2
+ "language": "makefile",
3
+ "definitions": {
4
+ "target": {
5
+ "signature": "target: prerequisites\\n\\trecipe",
6
+ "description": "A target is a rule that defines what to build, its dependencies, and how to build it.",
7
+ "type": "syntax",
8
+ "module": "GNU Make"
9
+ },
10
+ "phony": {
11
+ "signature": ".PHONY: target",
12
+ "description": "Declares targets that don't represent files. Prevents conflicts with files of the same name.",
13
+ "type": "directive",
14
+ "module": "GNU Make"
15
+ },
16
+ "variable_simple": {
17
+ "signature": "VAR := value",
18
+ "description": "Simple expansion variable. Value is expanded at the time of assignment.",
19
+ "type": "syntax",
20
+ "module": "GNU Make"
21
+ },
22
+ "variable_recursive": {
23
+ "signature": "VAR = value",
24
+ "description": "Recursive expansion variable. Value is expanded each time the variable is referenced.",
25
+ "type": "syntax",
26
+ "module": "GNU Make"
27
+ },
28
+ "variable_conditional": {
29
+ "signature": "VAR ?= value",
30
+ "description": "Conditional assignment. Only sets the variable if it is not already defined.",
31
+ "type": "syntax",
32
+ "module": "GNU Make"
33
+ },
34
+ "variable_append": {
35
+ "signature": "VAR += value",
36
+ "description": "Append to an existing variable's value.",
37
+ "type": "syntax",
38
+ "module": "GNU Make"
39
+ },
40
+ "automatic_at": {
41
+ "signature": "$@",
42
+ "description": "Automatic variable: the file name of the target of the rule.",
43
+ "type": "variable",
44
+ "module": "GNU Make"
45
+ },
46
+ "automatic_less": {
47
+ "signature": "$<",
48
+ "description": "Automatic variable: the name of the first prerequisite.",
49
+ "type": "variable",
50
+ "module": "GNU Make"
51
+ },
52
+ "automatic_caret": {
53
+ "signature": "$^",
54
+ "description": "Automatic variable: the names of all prerequisites, with spaces between them.",
55
+ "type": "variable",
56
+ "module": "GNU Make"
57
+ },
58
+ "automatic_star": {
59
+ "signature": "$*",
60
+ "description": "Automatic variable: the stem with which an implicit rule matches.",
61
+ "type": "variable",
62
+ "module": "GNU Make"
63
+ },
64
+ "shell": {
65
+ "signature": "$(shell command)",
66
+ "description": "Execute a shell command and return its output as the function's value.",
67
+ "type": "function",
68
+ "module": "GNU Make"
69
+ },
70
+ "wildcard": {
71
+ "signature": "$(wildcard pattern)",
72
+ "description": "Expands to a list of existing files matching the pattern.",
73
+ "type": "function",
74
+ "module": "GNU Make"
75
+ },
76
+ "patsubst": {
77
+ "signature": "$(patsubst pattern,replacement,text)",
78
+ "description": "Pattern substitution - replace words matching pattern with replacement.",
79
+ "type": "function",
80
+ "module": "GNU Make"
81
+ },
82
+ "include": {
83
+ "signature": "include filename",
84
+ "description": "Include another Makefile. Make will suspend reading the current Makefile and process the included one.",
85
+ "type": "directive",
86
+ "module": "GNU Make"
87
+ },
88
+ "ifeq": {
89
+ "signature": "ifeq (a,b) ... endif",
90
+ "description": "Conditional directive - evaluate the enclosed text only if the two arguments are equal.",
91
+ "type": "directive",
92
+ "module": "GNU Make"
93
+ },
94
+ "pattern_rule": {
95
+ "signature": "%.o: %.c",
96
+ "description": "Pattern rules use % as a wildcard to define implicit rules for building files.",
97
+ "type": "syntax",
98
+ "module": "GNU Make"
99
+ },
100
+ "recipe_prefix": {
101
+ "signature": "\\t(TAB character)",
102
+ "description": "Recipe lines MUST start with a TAB character, not spaces. This is a common source of errors.",
103
+ "type": "syntax",
104
+ "module": "GNU Make"
105
+ },
106
+ "silent": {
107
+ "signature": "@command",
108
+ "description": "Prefix a recipe line with @ to suppress echoing the command itself.",
109
+ "type": "syntax",
110
+ "module": "GNU Make"
111
+ }
112
+ }
113
+ }
@@ -0,0 +1,107 @@
1
+ {
2
+ "language": "markdown",
3
+ "definitions": {
4
+ "heading": {
5
+ "signature": "# Heading (1-6 levels)",
6
+ "description": "Headings use 1-6 hash symbols. # is H1 (largest), ###### is H6 (smallest).",
7
+ "type": "syntax",
8
+ "module": "CommonMark"
9
+ },
10
+ "paragraph": {
11
+ "signature": "text block",
12
+ "description": "A paragraph is one or more consecutive lines of text, separated by blank lines.",
13
+ "type": "syntax",
14
+ "module": "CommonMark"
15
+ },
16
+ "emphasis": {
17
+ "signature": "*italic* **bold** ***both***",
18
+ "description": "Single asterisks or underscores for italic, double for bold, triple for both.",
19
+ "type": "syntax",
20
+ "module": "CommonMark"
21
+ },
22
+ "link": {
23
+ "signature": "[text](url \"title\")",
24
+ "description": "Inline links contain the URL in parentheses. Optional title in quotes.",
25
+ "type": "syntax",
26
+ "module": "CommonMark"
27
+ },
28
+ "image": {
29
+ "signature": "![alt](url \"title\")",
30
+ "description": "Images use the same syntax as links but prefixed with !.",
31
+ "type": "syntax",
32
+ "module": "CommonMark"
33
+ },
34
+ "code_inline": {
35
+ "signature": "`code`",
36
+ "description": "Inline code is wrapped in backticks. Use double backticks to include literal backticks.",
37
+ "type": "syntax",
38
+ "module": "CommonMark"
39
+ },
40
+ "code_block": {
41
+ "signature": "```lang\\ncode\\n```",
42
+ "description": "Fenced code blocks use triple backticks with optional language identifier for syntax highlighting.",
43
+ "type": "syntax",
44
+ "module": "CommonMark"
45
+ },
46
+ "list_unordered": {
47
+ "signature": "- item or * item",
48
+ "description": "Unordered lists use -, *, or + as markers. Nested lists indent by 2-4 spaces.",
49
+ "type": "syntax",
50
+ "module": "CommonMark"
51
+ },
52
+ "list_ordered": {
53
+ "signature": "1. item",
54
+ "description": "Ordered lists use numbers followed by a period. The actual numbers don't matter for rendering.",
55
+ "type": "syntax",
56
+ "module": "CommonMark"
57
+ },
58
+ "blockquote": {
59
+ "signature": "> quoted text",
60
+ "description": "Blockquotes prefix lines with >. Can be nested with multiple > characters.",
61
+ "type": "syntax",
62
+ "module": "CommonMark"
63
+ },
64
+ "horizontal_rule": {
65
+ "signature": "--- or *** or ___",
66
+ "description": "Three or more hyphens, asterisks, or underscores on a line create a horizontal rule.",
67
+ "type": "syntax",
68
+ "module": "CommonMark"
69
+ },
70
+ "table": {
71
+ "signature": "| H1 | H2 |\\n|---|---|\\n| cell | cell |",
72
+ "description": "Tables use pipes and hyphens. Alignment: :--- (left), :---: (center), ---: (right).",
73
+ "type": "syntax",
74
+ "module": "GFM"
75
+ },
76
+ "task_list": {
77
+ "signature": "- [ ] task or - [x] done",
78
+ "description": "Task lists use - [ ] for unchecked and - [x] for checked items (GitHub Flavored Markdown).",
79
+ "type": "syntax",
80
+ "module": "GFM"
81
+ },
82
+ "strikethrough": {
83
+ "signature": "~~text~~",
84
+ "description": "Strikethrough text is wrapped in double tildes (GitHub Flavored Markdown).",
85
+ "type": "syntax",
86
+ "module": "GFM"
87
+ },
88
+ "footnote": {
89
+ "signature": "[^id] and [^id]: text",
90
+ "description": "Footnotes use [^id] for reference and [^id]: for the definition.",
91
+ "type": "syntax",
92
+ "module": "Extended"
93
+ },
94
+ "frontmatter": {
95
+ "signature": "---\\nyaml\\n---",
96
+ "description": "YAML frontmatter between --- delimiters provides metadata (title, date, tags) for static site generators.",
97
+ "type": "syntax",
98
+ "module": "Extended"
99
+ },
100
+ "html": {
101
+ "signature": "<tag>content</tag>",
102
+ "description": "Raw HTML can be embedded in Markdown. Block-level HTML must be separated by blank lines.",
103
+ "type": "syntax",
104
+ "module": "CommonMark"
105
+ }
106
+ }
107
+ }
@@ -0,0 +1,131 @@
1
+ {
2
+ "language": "nginx",
3
+ "definitions": {
4
+ "server": {
5
+ "signature": "server { ... }",
6
+ "description": "Defines a virtual server. Each server block can listen on different ports and respond to different domain names.",
7
+ "type": "block",
8
+ "module": "ngx_http_core_module"
9
+ },
10
+ "location": {
11
+ "signature": "location [modifier] uri { ... }",
12
+ "description": "Sets configuration based on the request URI. Modifiers: = (exact), ~ (regex), ~* (case-insensitive regex), ^~ (prefix priority).",
13
+ "type": "block",
14
+ "module": "ngx_http_core_module"
15
+ },
16
+ "upstream": {
17
+ "signature": "upstream name { ... }",
18
+ "description": "Defines a group of servers for load balancing. Supports round-robin, least_conn, ip_hash, and hash methods.",
19
+ "type": "block",
20
+ "module": "ngx_http_upstream_module"
21
+ },
22
+ "listen": {
23
+ "signature": "listen address[:port] [ssl] [http2]",
24
+ "description": "Sets the address and port on which the server accepts requests. Can include ssl and http2 parameters.",
25
+ "type": "directive",
26
+ "module": "ngx_http_core_module"
27
+ },
28
+ "server_name": {
29
+ "signature": "server_name name [...]",
30
+ "description": "Sets the virtual server names. Supports exact names, wildcard names (*.example.com), and regex names.",
31
+ "type": "directive",
32
+ "module": "ngx_http_core_module"
33
+ },
34
+ "root": {
35
+ "signature": "root path",
36
+ "description": "Sets the root directory for requests. The full path is formed by appending the URI to the root path.",
37
+ "type": "directive",
38
+ "module": "ngx_http_core_module"
39
+ },
40
+ "proxy_pass": {
41
+ "signature": "proxy_pass URL",
42
+ "description": "Passes the request to a proxied server. The URL can include protocol, server address, and optional URI.",
43
+ "type": "directive",
44
+ "module": "ngx_http_proxy_module"
45
+ },
46
+ "proxy_set_header": {
47
+ "signature": "proxy_set_header field value",
48
+ "description": "Redefines or appends fields to the request header passed to the proxied server.",
49
+ "type": "directive",
50
+ "module": "ngx_http_proxy_module"
51
+ },
52
+ "ssl_certificate": {
53
+ "signature": "ssl_certificate file",
54
+ "description": "Specifies the PEM-format certificate file for the server. Can include intermediate certificates.",
55
+ "type": "directive",
56
+ "module": "ngx_http_ssl_module"
57
+ },
58
+ "ssl_certificate_key": {
59
+ "signature": "ssl_certificate_key file",
60
+ "description": "Specifies the PEM-format private key file for the server certificate.",
61
+ "type": "directive",
62
+ "module": "ngx_http_ssl_module"
63
+ },
64
+ "try_files": {
65
+ "signature": "try_files file ... uri | =code",
66
+ "description": "Checks the existence of files in order, and uses the first found. Often used for SPA routing with =404 fallback.",
67
+ "type": "directive",
68
+ "module": "ngx_http_core_module"
69
+ },
70
+ "rewrite": {
71
+ "signature": "rewrite regex replacement [flag]",
72
+ "description": "Rewrites the request URI using PCRE regex. Flags: last, break, redirect (302), permanent (301).",
73
+ "type": "directive",
74
+ "module": "ngx_http_rewrite_module"
75
+ },
76
+ "return": {
77
+ "signature": "return code [text|URL]",
78
+ "description": "Stops processing and returns the specified code. Commonly used with 301/302 for redirects.",
79
+ "type": "directive",
80
+ "module": "ngx_http_rewrite_module"
81
+ },
82
+ "gzip": {
83
+ "signature": "gzip on|off",
84
+ "description": "Enables or disables gzip compression of responses. Reduces transfer size at the cost of CPU.",
85
+ "type": "directive",
86
+ "module": "ngx_http_gzip_module"
87
+ },
88
+ "access_log": {
89
+ "signature": "access_log path [format]",
90
+ "description": "Sets the path, format, and configuration for the access log.",
91
+ "type": "directive",
92
+ "module": "ngx_http_log_module"
93
+ },
94
+ "error_log": {
95
+ "signature": "error_log file [level]",
96
+ "description": "Configures error logging. Levels: debug, info, notice, warn, error, crit, alert, emerg.",
97
+ "type": "directive",
98
+ "module": "ngx_core_module"
99
+ },
100
+ "client_max_body_size": {
101
+ "signature": "client_max_body_size size",
102
+ "description": "Sets the maximum allowed size of the client request body. Default is 1m. Set to 0 to disable checking.",
103
+ "type": "directive",
104
+ "module": "ngx_http_core_module"
105
+ },
106
+ "add_header": {
107
+ "signature": "add_header name value [always]",
108
+ "description": "Adds a custom header to the response. Use always to add header regardless of response code.",
109
+ "type": "directive",
110
+ "module": "ngx_http_headers_module"
111
+ },
112
+ "limit_req_zone": {
113
+ "signature": "limit_req_zone key zone=name:size rate=rate",
114
+ "description": "Defines a shared memory zone for rate limiting. Key is typically $binary_remote_addr.",
115
+ "type": "directive",
116
+ "module": "ngx_http_limit_req_module"
117
+ },
118
+ "expires": {
119
+ "signature": "expires [modified] time | epoch | max | off",
120
+ "description": "Sets the Expires header and Cache-Control max-age. Common values: 30d, 1h, max.",
121
+ "type": "directive",
122
+ "module": "ngx_http_headers_module"
123
+ },
124
+ "index": {
125
+ "signature": "index file [...]",
126
+ "description": "Defines files that will be used as an index. Checked in order, the first found is used.",
127
+ "type": "directive",
128
+ "module": "ngx_http_index_module"
129
+ }
130
+ }
131
+ }
@@ -0,0 +1,101 @@
1
+ {
2
+ "language": "perl",
3
+ "definitions": {
4
+ "scalar": {
5
+ "signature": "$variable",
6
+ "description": "A scalar variable holds a single value - string, number, or reference. Prefixed with $.",
7
+ "type": "type",
8
+ "module": "Perl"
9
+ },
10
+ "array": {
11
+ "signature": "@array",
12
+ "description": "An array holds an ordered list of scalars. Prefixed with @. Access elements with $array[index].",
13
+ "type": "type",
14
+ "module": "Perl"
15
+ },
16
+ "hash": {
17
+ "signature": "%hash",
18
+ "description": "A hash holds key-value pairs. Prefixed with %. Access values with $hash{key}.",
19
+ "type": "type",
20
+ "module": "Perl"
21
+ },
22
+ "sub": {
23
+ "signature": "sub name { ... }",
24
+ "description": "Defines a subroutine (function). Arguments are passed via @_.",
25
+ "type": "keyword",
26
+ "module": "Perl"
27
+ },
28
+ "my": {
29
+ "signature": "my $var = value",
30
+ "description": "Declares a lexically scoped variable. Always use with 'use strict'.",
31
+ "type": "keyword",
32
+ "module": "Perl"
33
+ },
34
+ "use": {
35
+ "signature": "use Module;",
36
+ "description": "Load and import a module at compile time.",
37
+ "type": "keyword",
38
+ "module": "Perl"
39
+ },
40
+ "regex": {
41
+ "signature": "=~ /pattern/flags",
42
+ "description": "Perl regex matching. Flags: g (global), i (case-insensitive), m (multiline), s (single-line), x (extended).",
43
+ "type": "operator",
44
+ "module": "Perl"
45
+ },
46
+ "substitution": {
47
+ "signature": "s/pattern/replacement/flags",
48
+ "description": "Regex substitution. Replaces matched text with replacement string.",
49
+ "type": "operator",
50
+ "module": "Perl"
51
+ },
52
+ "open": {
53
+ "signature": "open(FH, mode, file)",
54
+ "description": "Open a file. Modes: < (read), > (write), >> (append), +< (read/write).",
55
+ "type": "builtin",
56
+ "module": "Perl"
57
+ },
58
+ "chomp": {
59
+ "signature": "chomp($string)",
60
+ "description": "Removes the trailing newline from a string. Returns number of characters removed.",
61
+ "type": "builtin",
62
+ "module": "Perl"
63
+ },
64
+ "split": {
65
+ "signature": "split(/pattern/, $string, $limit)",
66
+ "description": "Split a string into a list based on a delimiter pattern.",
67
+ "type": "builtin",
68
+ "module": "Perl"
69
+ },
70
+ "join": {
71
+ "signature": "join($separator, @list)",
72
+ "description": "Join list elements into a single string with separator.",
73
+ "type": "builtin",
74
+ "module": "Perl"
75
+ },
76
+ "print": {
77
+ "signature": "print [FILEHANDLE] LIST",
78
+ "description": "Output to stdout or a filehandle. No newline added automatically.",
79
+ "type": "builtin",
80
+ "module": "Perl"
81
+ },
82
+ "die": {
83
+ "signature": "die \"message\"",
84
+ "description": "Raise an exception. Commonly used with or: open() or die \"...\";",
85
+ "type": "builtin",
86
+ "module": "Perl"
87
+ },
88
+ "strict": {
89
+ "signature": "use strict",
90
+ "description": "Enables strict mode - requires variable declaration, restricts barewords, and prevents soft references.",
91
+ "type": "pragma",
92
+ "module": "Perl"
93
+ },
94
+ "warnings": {
95
+ "signature": "use warnings",
96
+ "description": "Enables compile-time and runtime warnings for common mistakes.",
97
+ "type": "pragma",
98
+ "module": "Perl"
99
+ }
100
+ }
101
+ }
@@ -0,0 +1,119 @@
1
+ {
2
+ "language": "powershell",
3
+ "definitions": {
4
+ "function": {
5
+ "signature": "function Name { param() ... }",
6
+ "description": "Defines a reusable function. Supports parameters, pipeline input, and output.",
7
+ "type": "keyword",
8
+ "module": "PowerShell"
9
+ },
10
+ "param": {
11
+ "signature": "param([Type]$Name)",
12
+ "description": "Parameter block for functions and scripts. Supports mandatory, default values, validation.",
13
+ "type": "keyword",
14
+ "module": "PowerShell"
15
+ },
16
+ "if": {
17
+ "signature": "if (cond) { } elseif { } else { }",
18
+ "description": "Conditional execution. Conditions use comparison operators like -eq, -ne, -gt, -lt, -like, -match.",
19
+ "type": "keyword",
20
+ "module": "PowerShell"
21
+ },
22
+ "foreach": {
23
+ "signature": "foreach ($item in $collection) { }",
24
+ "description": "Iterate over each item in a collection.",
25
+ "type": "keyword",
26
+ "module": "PowerShell"
27
+ },
28
+ "try_catch": {
29
+ "signature": "try { } catch { } finally { }",
30
+ "description": "Error handling. $_ in catch block contains the error. finally always executes.",
31
+ "type": "keyword",
32
+ "module": "PowerShell"
33
+ },
34
+ "switch": {
35
+ "signature": "switch ($var) { 'val' { } default { } }",
36
+ "description": "Pattern matching. Supports -Regex, -Wildcard, and -File options.",
37
+ "type": "keyword",
38
+ "module": "PowerShell"
39
+ },
40
+ "pipeline": {
41
+ "signature": "cmd1 | cmd2 | cmd3",
42
+ "description": "Pipeline passes objects (not text) between commands. Each command processes the output of the previous.",
43
+ "type": "concept",
44
+ "module": "PowerShell"
45
+ },
46
+ "Get-Content": {
47
+ "signature": "Get-Content [-Path] <String>",
48
+ "description": "Reads content from a file. Alias: gc, cat, type.",
49
+ "type": "cmdlet",
50
+ "module": "Microsoft.PowerShell.Management"
51
+ },
52
+ "Set-Content": {
53
+ "signature": "Set-Content [-Path] <String> [-Value] <Object>",
54
+ "description": "Writes content to a file. Replaces existing content. Alias: sc.",
55
+ "type": "cmdlet",
56
+ "module": "Microsoft.PowerShell.Management"
57
+ },
58
+ "Get-ChildItem": {
59
+ "signature": "Get-ChildItem [-Path] [-Recurse] [-Filter]",
60
+ "description": "Lists files and directories. Alias: gci, ls, dir.",
61
+ "type": "cmdlet",
62
+ "module": "Microsoft.PowerShell.Management"
63
+ },
64
+ "Where-Object": {
65
+ "signature": "Where-Object { $_.Property -op Value }",
66
+ "description": "Filters objects in the pipeline. Alias: where, ?.",
67
+ "type": "cmdlet",
68
+ "module": "Microsoft.PowerShell.Core"
69
+ },
70
+ "Select-Object": {
71
+ "signature": "Select-Object [-Property] [-First] [-Last]",
72
+ "description": "Selects specific properties or a subset of objects. Alias: select.",
73
+ "type": "cmdlet",
74
+ "module": "Microsoft.PowerShell.Utility"
75
+ },
76
+ "ForEach-Object": {
77
+ "signature": "ForEach-Object { $_ }",
78
+ "description": "Processes each pipeline object. $_ is the current object. Alias: foreach, %.",
79
+ "type": "cmdlet",
80
+ "module": "Microsoft.PowerShell.Core"
81
+ },
82
+ "Invoke-WebRequest": {
83
+ "signature": "Invoke-WebRequest [-Uri] <String> [-Method]",
84
+ "description": "Makes HTTP/HTTPS requests. Alias: iwr, curl, wget.",
85
+ "type": "cmdlet",
86
+ "module": "Microsoft.PowerShell.Utility"
87
+ },
88
+ "Get-Service": {
89
+ "signature": "Get-Service [-Name] [-Status]",
90
+ "description": "Gets Windows services. Can filter by name or status.",
91
+ "type": "cmdlet",
92
+ "module": "Microsoft.PowerShell.Management"
93
+ },
94
+ "Get-Process": {
95
+ "signature": "Get-Process [-Name] [-Id]",
96
+ "description": "Gets running processes. Alias: gps, ps.",
97
+ "type": "cmdlet",
98
+ "module": "Microsoft.PowerShell.Management"
99
+ },
100
+ "comparison_operators": {
101
+ "signature": "-eq -ne -gt -lt -ge -le -like -match -contains -in",
102
+ "description": "PowerShell comparison operators. -like uses wildcards, -match uses regex.",
103
+ "type": "reference",
104
+ "module": "PowerShell"
105
+ },
106
+ "hashtable": {
107
+ "signature": "@{ Key = Value }",
108
+ "description": "Hash table (dictionary) literal. Keys are strings, values can be any type.",
109
+ "type": "type",
110
+ "module": "PowerShell"
111
+ },
112
+ "array": {
113
+ "signature": "@(item1, item2)",
114
+ "description": "Array literal. @() creates an empty array. Arrays are zero-indexed.",
115
+ "type": "type",
116
+ "module": "PowerShell"
117
+ }
118
+ }
119
+ }