bash-classify 0.1.0__py3-none-any.whl

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 (142) hide show
  1. bash_classify/__init__.py +14 -0
  2. bash_classify/__main__.py +3 -0
  3. bash_classify/classifier.py +244 -0
  4. bash_classify/cli.py +110 -0
  5. bash_classify/commands/apt.yaml +23 -0
  6. bash_classify/commands/awk.yaml +5 -0
  7. bash_classify/commands/basename.yaml +5 -0
  8. bash_classify/commands/bash.yaml +18 -0
  9. bash_classify/commands/brew.yaml +25 -0
  10. bash_classify/commands/builtin.yaml +6 -0
  11. bash_classify/commands/cargo.yaml +29 -0
  12. bash_classify/commands/cat.yaml +5 -0
  13. bash_classify/commands/chgrp.yaml +8 -0
  14. bash_classify/commands/chmod.yaml +8 -0
  15. bash_classify/commands/chown.yaml +8 -0
  16. bash_classify/commands/column.yaml +5 -0
  17. bash_classify/commands/comm.yaml +5 -0
  18. bash_classify/commands/command.yaml +10 -0
  19. bash_classify/commands/cp.yaml +5 -0
  20. bash_classify/commands/curl.yaml +28 -0
  21. bash_classify/commands/cut.yaml +5 -0
  22. bash_classify/commands/date.yaml +8 -0
  23. bash_classify/commands/df.yaml +5 -0
  24. bash_classify/commands/diff.yaml +5 -0
  25. bash_classify/commands/dig.yaml +5 -0
  26. bash_classify/commands/dirname.yaml +5 -0
  27. bash_classify/commands/docker.yaml +152 -0
  28. bash_classify/commands/du.yaml +5 -0
  29. bash_classify/commands/echo.yaml +5 -0
  30. bash_classify/commands/env.yaml +14 -0
  31. bash_classify/commands/expand.yaml +5 -0
  32. bash_classify/commands/false.yaml +5 -0
  33. bash_classify/commands/file.yaml +5 -0
  34. bash_classify/commands/find.yaml +27 -0
  35. bash_classify/commands/fmt.yaml +5 -0
  36. bash_classify/commands/fold.yaml +5 -0
  37. bash_classify/commands/free.yaml +5 -0
  38. bash_classify/commands/gawk.yaml +5 -0
  39. bash_classify/commands/git.yaml +441 -0
  40. bash_classify/commands/go.yaml +38 -0
  41. bash_classify/commands/grep.yaml +5 -0
  42. bash_classify/commands/groups.yaml +5 -0
  43. bash_classify/commands/gunzip.yaml +5 -0
  44. bash_classify/commands/gzip.yaml +5 -0
  45. bash_classify/commands/head.yaml +5 -0
  46. bash_classify/commands/helm.yaml +127 -0
  47. bash_classify/commands/hostname.yaml +5 -0
  48. bash_classify/commands/id.yaml +5 -0
  49. bash_classify/commands/install.yaml +5 -0
  50. bash_classify/commands/join.yaml +5 -0
  51. bash_classify/commands/journalctl.yaml +12 -0
  52. bash_classify/commands/jq.yaml +5 -0
  53. bash_classify/commands/kill.yaml +5 -0
  54. bash_classify/commands/killall.yaml +5 -0
  55. bash_classify/commands/kubectl.yaml +190 -0
  56. bash_classify/commands/less.yaml +5 -0
  57. bash_classify/commands/ln.yaml +5 -0
  58. bash_classify/commands/ls.yaml +5 -0
  59. bash_classify/commands/make.yaml +19 -0
  60. bash_classify/commands/md5sum.yaml +5 -0
  61. bash_classify/commands/mkdir.yaml +5 -0
  62. bash_classify/commands/more.yaml +5 -0
  63. bash_classify/commands/mv.yaml +5 -0
  64. bash_classify/commands/netstat.yaml +5 -0
  65. bash_classify/commands/nice.yaml +9 -0
  66. bash_classify/commands/nl.yaml +5 -0
  67. bash_classify/commands/node.yaml +5 -0
  68. bash_classify/commands/nohup.yaml +6 -0
  69. bash_classify/commands/npm.yaml +65 -0
  70. bash_classify/commands/nslookup.yaml +5 -0
  71. bash_classify/commands/paste.yaml +5 -0
  72. bash_classify/commands/ping.yaml +5 -0
  73. bash_classify/commands/pip.yaml +29 -0
  74. bash_classify/commands/pip3.yaml +29 -0
  75. bash_classify/commands/pkill.yaml +5 -0
  76. bash_classify/commands/poetry.yaml +74 -0
  77. bash_classify/commands/printenv.yaml +5 -0
  78. bash_classify/commands/printf.yaml +5 -0
  79. bash_classify/commands/ps.yaml +5 -0
  80. bash_classify/commands/pwd.yaml +5 -0
  81. bash_classify/commands/python.yaml +5 -0
  82. bash_classify/commands/python3.yaml +5 -0
  83. bash_classify/commands/read.yaml +5 -0
  84. bash_classify/commands/readlink.yaml +5 -0
  85. bash_classify/commands/realpath.yaml +5 -0
  86. bash_classify/commands/rev.yaml +5 -0
  87. bash_classify/commands/rm.yaml +5 -0
  88. bash_classify/commands/rsync.yaml +10 -0
  89. bash_classify/commands/scp.yaml +5 -0
  90. bash_classify/commands/sed.yaml +12 -0
  91. bash_classify/commands/seq.yaml +5 -0
  92. bash_classify/commands/sh.yaml +12 -0
  93. bash_classify/commands/sha1sum.yaml +5 -0
  94. bash_classify/commands/sha256sum.yaml +5 -0
  95. bash_classify/commands/sort.yaml +8 -0
  96. bash_classify/commands/ss.yaml +5 -0
  97. bash_classify/commands/ssh.yaml +39 -0
  98. bash_classify/commands/stat.yaml +5 -0
  99. bash_classify/commands/strace.yaml +18 -0
  100. bash_classify/commands/sudo.yaml +22 -0
  101. bash_classify/commands/systemctl.yaml +56 -0
  102. bash_classify/commands/tac.yaml +5 -0
  103. bash_classify/commands/tail.yaml +5 -0
  104. bash_classify/commands/tar.yaml +22 -0
  105. bash_classify/commands/tee.yaml +5 -0
  106. bash_classify/commands/terraform.yaml +68 -0
  107. bash_classify/commands/test.yaml +5 -0
  108. bash_classify/commands/time.yaml +6 -0
  109. bash_classify/commands/timeout.yaml +15 -0
  110. bash_classify/commands/top.yaml +5 -0
  111. bash_classify/commands/touch.yaml +5 -0
  112. bash_classify/commands/tr.yaml +5 -0
  113. bash_classify/commands/traceroute.yaml +5 -0
  114. bash_classify/commands/true.yaml +5 -0
  115. bash_classify/commands/type.yaml +5 -0
  116. bash_classify/commands/uname.yaml +5 -0
  117. bash_classify/commands/unexpand.yaml +5 -0
  118. bash_classify/commands/uniq.yaml +5 -0
  119. bash_classify/commands/unzip.yaml +7 -0
  120. bash_classify/commands/uptime.yaml +5 -0
  121. bash_classify/commands/uv.yaml +117 -0
  122. bash_classify/commands/wc.yaml +5 -0
  123. bash_classify/commands/wget.yaml +5 -0
  124. bash_classify/commands/whereis.yaml +5 -0
  125. bash_classify/commands/which.yaml +5 -0
  126. bash_classify/commands/whoami.yaml +5 -0
  127. bash_classify/commands/xargs.yaml +25 -0
  128. bash_classify/commands/xmllint.yaml +5 -0
  129. bash_classify/commands/yes.yaml +5 -0
  130. bash_classify/commands/yq.yaml +8 -0
  131. bash_classify/commands/zip.yaml +5 -0
  132. bash_classify/commands/zsh.yaml +12 -0
  133. bash_classify/database.py +257 -0
  134. bash_classify/matcher.py +702 -0
  135. bash_classify/models.py +148 -0
  136. bash_classify/parser.py +525 -0
  137. bash_classify/py.typed +0 -0
  138. bash_classify-0.1.0.dist-info/METADATA +147 -0
  139. bash_classify-0.1.0.dist-info/RECORD +142 -0
  140. bash_classify-0.1.0.dist-info/WHEEL +4 -0
  141. bash_classify-0.1.0.dist-info/entry_points.txt +2 -0
  142. bash_classify-0.1.0.dist-info/licenses/LICENSE +21 -0
@@ -0,0 +1,38 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: go
3
+ description: "Tool for managing Go source code"
4
+ strict: false
5
+ subcommands:
6
+ build:
7
+ classification: WRITE
8
+ test:
9
+ classification: WRITE
10
+ run:
11
+ classification: DANGEROUS
12
+ install:
13
+ classification: WRITE
14
+ get:
15
+ classification: WRITE
16
+ mod:
17
+ classification: WRITE
18
+ subcommands:
19
+ tidy:
20
+ classification: WRITE
21
+ download:
22
+ classification: WRITE
23
+ verify:
24
+ classification: READONLY
25
+ graph:
26
+ classification: READONLY
27
+ fmt:
28
+ classification: WRITE
29
+ vet:
30
+ classification: READONLY
31
+ doc:
32
+ classification: READONLY
33
+ version:
34
+ classification: READONLY
35
+ env:
36
+ classification: READONLY
37
+ list:
38
+ classification: READONLY
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: grep
3
+ description: "Search for patterns in files"
4
+ classification: READONLY
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: groups
3
+ description: "Print the groups a user is in"
4
+ classification: READONLY
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: gunzip
3
+ description: "Decompress gzip compressed files"
4
+ classification: WRITE
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: gzip
3
+ description: "Compress or decompress files using gzip"
4
+ classification: WRITE
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: head
3
+ description: "Output the first part of files"
4
+ classification: READONLY
5
+ strict: false
@@ -0,0 +1,127 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: helm
3
+ description: "Kubernetes package manager"
4
+ strict: false
5
+ subcommands:
6
+ list:
7
+ classification: READONLY
8
+ strict: false
9
+ status:
10
+ classification: READONLY
11
+ strict: false
12
+ get:
13
+ classification: READONLY
14
+ strict: false
15
+ subcommands:
16
+ all:
17
+ classification: READONLY
18
+ strict: false
19
+ values:
20
+ classification: READONLY
21
+ strict: false
22
+ manifest:
23
+ classification: READONLY
24
+ strict: false
25
+ hooks:
26
+ classification: READONLY
27
+ strict: false
28
+ notes:
29
+ classification: READONLY
30
+ strict: false
31
+ history:
32
+ classification: READONLY
33
+ strict: false
34
+ show:
35
+ classification: READONLY
36
+ strict: false
37
+ subcommands:
38
+ chart:
39
+ classification: READONLY
40
+ strict: false
41
+ readme:
42
+ classification: READONLY
43
+ strict: false
44
+ values:
45
+ classification: READONLY
46
+ strict: false
47
+ all:
48
+ classification: READONLY
49
+ strict: false
50
+ search:
51
+ classification: READONLY
52
+ strict: false
53
+ install:
54
+ classification: WRITE
55
+ strict: false
56
+ upgrade:
57
+ classification: WRITE
58
+ strict: false
59
+ rollback:
60
+ classification: DANGEROUS
61
+ strict: false
62
+ uninstall:
63
+ classification: DANGEROUS
64
+ strict: false
65
+ repo:
66
+ classification: WRITE
67
+ strict: false
68
+ subcommands:
69
+ list:
70
+ classification: READONLY
71
+ strict: false
72
+ template:
73
+ classification: READONLY
74
+ strict: false
75
+ lint:
76
+ classification: READONLY
77
+ strict: false
78
+ diff:
79
+ classification: READONLY
80
+ strict: false
81
+ env:
82
+ classification: READONLY
83
+ verify:
84
+ classification: READONLY
85
+ strict: false
86
+ version:
87
+ classification: READONLY
88
+ strict: false
89
+ completion:
90
+ classification: READONLY
91
+ strict: false
92
+ plugin:
93
+ classification: WRITE
94
+ strict: false
95
+ subcommands:
96
+ list:
97
+ classification: READONLY
98
+ strict: false
99
+ package:
100
+ classification: WRITE
101
+ strict: false
102
+ pull:
103
+ classification: WRITE
104
+ strict: false
105
+ create:
106
+ classification: WRITE
107
+ strict: false
108
+ dependency:
109
+ classification: WRITE
110
+ strict: false
111
+ subcommands:
112
+ list:
113
+ classification: READONLY
114
+ strict: false
115
+ push:
116
+ classification: DANGEROUS
117
+ strict: false
118
+ registry:
119
+ classification: WRITE
120
+ strict: false
121
+ subcommands:
122
+ login:
123
+ classification: WRITE
124
+ strict: false
125
+ logout:
126
+ classification: WRITE
127
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: hostname
3
+ description: "Show or set the system hostname"
4
+ classification: WRITE
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: id
3
+ description: "Print real and effective user and group IDs"
4
+ classification: READONLY
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: install
3
+ description: "Copy files and set attributes"
4
+ classification: WRITE
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: join
3
+ description: "Join lines of two files on a common field"
4
+ classification: READONLY
5
+ strict: false
@@ -0,0 +1,12 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: journalctl
3
+ description: "Query the systemd journal"
4
+ classification: READONLY
5
+ strict: false
6
+ options:
7
+ --flush: {overrides: WRITE}
8
+ --rotate: {overrides: WRITE}
9
+ --sync: {overrides: WRITE}
10
+ --vacuum-size: {takes_value: true, overrides: DANGEROUS}
11
+ --vacuum-time: {takes_value: true, overrides: DANGEROUS}
12
+ --vacuum-files: {takes_value: true, overrides: DANGEROUS}
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: jq
3
+ description: "Command-line JSON processor"
4
+ classification: READONLY
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: kill
3
+ description: "Send signals to processes"
4
+ classification: DANGEROUS
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: killall
3
+ description: "Kill processes by name"
4
+ classification: DANGEROUS
5
+ strict: false
@@ -0,0 +1,190 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: kubectl
3
+ description: "Kubernetes command-line tool"
4
+ classification: WRITE
5
+ strict: false
6
+ global_options:
7
+ --context: {takes_value: true}
8
+ --kubeconfig: {takes_value: true}
9
+ --namespace: {takes_value: true, aliases: [-n]}
10
+ --cluster: {takes_value: true}
11
+ --server: {takes_value: true, aliases: [-s]}
12
+ --token: {takes_value: true}
13
+ --as: {takes_value: true}
14
+ --as-group: {takes_value: true}
15
+ --certificate-authority: {takes_value: true}
16
+ --client-certificate: {takes_value: true}
17
+ --client-key: {takes_value: true}
18
+ --insecure-skip-tls-verify: {}
19
+ --tls-server-name: {takes_value: true}
20
+ --v: {takes_value: true}
21
+ --request-timeout: {takes_value: true}
22
+
23
+ subcommands:
24
+ get:
25
+ classification: READONLY
26
+ strict: false
27
+ options:
28
+ -o: {takes_value: true}
29
+ --output: {takes_value: true, aliases: [-o]}
30
+
31
+ describe:
32
+ classification: READONLY
33
+ strict: false
34
+ options:
35
+ -o: {takes_value: true}
36
+ --output: {takes_value: true, aliases: [-o]}
37
+
38
+ logs:
39
+ classification: READONLY
40
+ strict: false
41
+
42
+ top:
43
+ classification: READONLY
44
+
45
+ api-resources:
46
+ classification: READONLY
47
+
48
+ api-versions:
49
+ classification: READONLY
50
+
51
+ explain:
52
+ classification: READONLY
53
+
54
+ version:
55
+ classification: READONLY
56
+
57
+ cluster-info:
58
+ classification: READONLY
59
+
60
+ auth:
61
+ subcommands:
62
+ can-i:
63
+ classification: READONLY
64
+ reconcile:
65
+ classification: WRITE
66
+
67
+ apply:
68
+ classification: WRITE
69
+ options:
70
+ --dry-run: {takes_value: true, overrides: READONLY}
71
+ -f: {takes_value: true}
72
+ --filename: {takes_value: true, aliases: [-f]}
73
+
74
+ create:
75
+ classification: WRITE
76
+ strict: false
77
+ options:
78
+ --dry-run: {takes_value: true, overrides: READONLY}
79
+ -f: {takes_value: true}
80
+ --filename: {takes_value: true, aliases: [-f]}
81
+
82
+ delete:
83
+ classification: DANGEROUS
84
+ options:
85
+ --dry-run: {takes_value: true, overrides: READONLY}
86
+ -f: {takes_value: true}
87
+ --filename: {takes_value: true, aliases: [-f]}
88
+
89
+ edit:
90
+ classification: WRITE
91
+ strict: false
92
+
93
+ patch:
94
+ classification: WRITE
95
+ strict: false
96
+
97
+ scale:
98
+ classification: WRITE
99
+ strict: false
100
+
101
+ rollout:
102
+ subcommands:
103
+ status:
104
+ classification: READONLY
105
+ history:
106
+ classification: READONLY
107
+ restart:
108
+ classification: WRITE
109
+ strict: false
110
+ undo:
111
+ classification: DANGEROUS
112
+ strict: false
113
+ pause:
114
+ classification: WRITE
115
+ strict: false
116
+ resume:
117
+ classification: WRITE
118
+ strict: false
119
+
120
+ exec:
121
+ classification: DANGEROUS
122
+ strict: false
123
+ delegates_to:
124
+ mode: after_separator
125
+ separator: "--"
126
+ options:
127
+ -it: {}
128
+ -i: {}
129
+ --stdin: {aliases: [-i]}
130
+ -t: {}
131
+ --tty: {aliases: [-t]}
132
+ -c: {takes_value: true}
133
+ --container: {takes_value: true, aliases: [-c]}
134
+ -n: {takes_value: true}
135
+ --namespace: {takes_value: true, aliases: [-n]}
136
+
137
+ port-forward:
138
+ classification: WRITE
139
+ strict: false
140
+
141
+ cp:
142
+ classification: WRITE
143
+ strict: false
144
+
145
+ drain:
146
+ classification: DANGEROUS
147
+ strict: false
148
+
149
+ cordon:
150
+ classification: WRITE
151
+ strict: false
152
+
153
+ uncordon:
154
+ classification: WRITE
155
+ strict: false
156
+
157
+ taint:
158
+ classification: WRITE
159
+ strict: false
160
+
161
+ label:
162
+ classification: WRITE
163
+ strict: false
164
+
165
+ annotate:
166
+ classification: WRITE
167
+ strict: false
168
+
169
+ config:
170
+ subcommands:
171
+ view:
172
+ classification: READONLY
173
+ get-contexts:
174
+ classification: READONLY
175
+ current-context:
176
+ classification: READONLY
177
+ use-context:
178
+ classification: WRITE
179
+ set:
180
+ classification: WRITE
181
+ set-context:
182
+ classification: WRITE
183
+ set-cluster:
184
+ classification: WRITE
185
+ set-credentials:
186
+ classification: WRITE
187
+ delete-context:
188
+ classification: DANGEROUS
189
+ delete-cluster:
190
+ classification: DANGEROUS
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: less
3
+ description: "View file contents with backward movement"
4
+ classification: READONLY
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: ln
3
+ description: "Make links between files"
4
+ classification: WRITE
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: ls
3
+ description: "List directory contents"
4
+ classification: READONLY
5
+ strict: false
@@ -0,0 +1,19 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: make
3
+ description: "Build automation tool"
4
+ classification: WRITE
5
+ strict: false
6
+ options:
7
+ -C: {takes_value: true, captures_directory: true}
8
+ --directory: {takes_value: true, captures_directory: true, aliases: [-C]}
9
+ -f: {takes_value: true}
10
+ --file: {takes_value: true, aliases: [-f]}
11
+ -j: {takes_value: true}
12
+ --jobs: {takes_value: true, aliases: [-j]}
13
+ -n: {overrides: READONLY}
14
+ --just-print: {overrides: READONLY, aliases: [-n]}
15
+ --dry-run: {overrides: READONLY, aliases: [-n]}
16
+ -k: {}
17
+ --keep-going: {}
18
+ -B: {}
19
+ --always-make: {}
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: md5sum
3
+ description: "Compute and check MD5 message digest"
4
+ classification: READONLY
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: mkdir
3
+ description: "Create directories"
4
+ classification: WRITE
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: more
3
+ description: "View file contents one screen at a time"
4
+ classification: READONLY
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: mv
3
+ description: "Move or rename files and directories"
4
+ classification: WRITE
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: netstat
3
+ description: "Print network connections and statistics"
4
+ classification: READONLY
5
+ strict: false
@@ -0,0 +1,9 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: nice
3
+ description: "Run a command with modified scheduling priority"
4
+ classification: WRITE
5
+ delegates_to:
6
+ mode: rest_are_argv
7
+ options:
8
+ -n: {takes_value: true}
9
+ --adjustment: {takes_value: true, aliases: [-n]}
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: nl
3
+ description: "Number lines of files"
4
+ classification: READONLY
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: node
3
+ description: "JavaScript runtime built on V8 engine"
4
+ classification: DANGEROUS
5
+ strict: false
@@ -0,0 +1,6 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: nohup
3
+ description: "Run a command immune to hangups"
4
+ classification: WRITE
5
+ delegates_to:
6
+ mode: rest_are_argv
@@ -0,0 +1,65 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: npm
3
+ description: "Node.js package manager"
4
+ strict: false
5
+ subcommands:
6
+ ls:
7
+ classification: READONLY
8
+ strict: false
9
+ list:
10
+ classification: READONLY
11
+ strict: false
12
+ view:
13
+ classification: READONLY
14
+ strict: false
15
+ info:
16
+ classification: READONLY
17
+ strict: false
18
+ outdated:
19
+ classification: READONLY
20
+ strict: false
21
+ audit:
22
+ classification: READONLY
23
+ strict: false
24
+ subcommands:
25
+ fix:
26
+ classification: WRITE
27
+ install:
28
+ classification: WRITE
29
+ strict: false
30
+ ci:
31
+ classification: WRITE
32
+ strict: false
33
+ run:
34
+ classification: WRITE
35
+ strict: false
36
+ test:
37
+ classification: WRITE
38
+ strict: false
39
+ build:
40
+ classification: WRITE
41
+ strict: false
42
+ uninstall:
43
+ classification: WRITE
44
+ strict: false
45
+ update:
46
+ classification: WRITE
47
+ strict: false
48
+ publish:
49
+ classification: DANGEROUS
50
+ strict: false
51
+ unpublish:
52
+ classification: DANGEROUS
53
+ strict: false
54
+ config:
55
+ subcommands:
56
+ list:
57
+ classification: READONLY
58
+ whoami:
59
+ classification: READONLY
60
+ why:
61
+ classification: READONLY
62
+ strict: false
63
+ explain:
64
+ classification: READONLY
65
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: nslookup
3
+ description: "Query Internet name servers interactively"
4
+ classification: READONLY
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: paste
3
+ description: "Merge lines of files side by side"
4
+ classification: READONLY
5
+ strict: false
@@ -0,0 +1,5 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: ping
3
+ description: "Send ICMP echo requests to network hosts"
4
+ classification: READONLY
5
+ strict: false
@@ -0,0 +1,29 @@
1
+ # $schema: ../../../schemas/command.schema.json
2
+ command: pip
3
+ description: "Python package installer"
4
+ strict: false
5
+ subcommands:
6
+ list:
7
+ classification: READONLY
8
+ strict: false
9
+ show:
10
+ classification: READONLY
11
+ strict: false
12
+ freeze:
13
+ classification: READONLY
14
+ search:
15
+ classification: READONLY
16
+ check:
17
+ classification: READONLY
18
+ install:
19
+ classification: WRITE
20
+ strict: false
21
+ uninstall:
22
+ classification: WRITE
23
+ strict: false
24
+ download:
25
+ classification: WRITE
26
+ strict: false
27
+ wheel:
28
+ classification: WRITE
29
+ strict: false