nighthawk 0.2.0

AI terminal autocomplete — zero config, zero login, zero telemetry
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
{
  "name": "mgnl",
  "description": "Magnolia CLI is a command line interface (CLI) tool to set up and facilitate light development with Magnolia",
  "subcommands": [
    {
      "name": "add-availability",
      "description": "This command makes a component available to a page",
      "options": [
        {
          "names": [
            "-p",
            "--path"
          ],
          "description": "The path to the light module that contains the page template",
          "takes_arg": true,
          "arg": {
            "name": "path",
            "template": "folders"
          }
        },
        {
          "names": [
            "-g"
          ],
          "description": "Add this parameter to autogenerate the component instead of providing plain availability"
        }
      ],
      "args": [
        {
          "name": "<[module-id:]path-to-component>",
          "description": "The component you want to make available"
        },
        {
          "name": "<path-to-page[@area]>",
          "description": "The page you want to make the component available to"
        }
      ]
    },
    {
      "name": "create-app",
      "description": "This command creates a content type and an app",
      "options": [
        {
          "names": [
            "-p",
            "--path"
          ],
          "description": "The path to the light module where you want to create the app",
          "takes_arg": true,
          "arg": {
            "name": "path",
            "template": "folders"
          }
        },
        {
          "names": [
            "-P",
            "--prototype"
          ],
          "description": "The name of the prototype variant to create the app",
          "takes_arg": true,
          "arg": {
            "name": "prototype"
          }
        }
      ],
      "args": [
        {
          "name": "name",
          "description": "The name of the new app. The name cannot contain spaces"
        }
      ]
    },
    {
      "name": "create-block",
      "description": "This command creates a block",
      "options": [
        {
          "names": [
            "-p",
            "--path"
          ],
          "description": "The path to the light module to add the new block to",
          "takes_arg": true,
          "arg": {
            "name": "path",
            "template": "folders"
          }
        },
        {
          "names": [
            "-P",
            "--prototype"
          ],
          "description": "The name of the prototype variant to create the block",
          "takes_arg": true,
          "arg": {
            "name": "prototype"
          }
        }
      ],
      "args": [
        {
          "name": "blockName",
          "description": "The name of the new block definition. The block name cannot contain spaces"
        }
      ]
    },
    {
      "name": "create-component",
      "description": "This command creates a new component template",
      "options": [
        {
          "names": [
            "-p",
            "--path"
          ],
          "description": "The path to the light module you want to add the component template to",
          "takes_arg": true,
          "arg": {
            "name": "path",
            "template": "folders"
          }
        },
        {
          "names": [
            "-a",
            "--available"
          ],
          "description": "The page you want to make the component available to",
          "takes_arg": true,
          "arg": {
            "name": "<path-to-page[@area]>"
          }
        },
        {
          "names": [
            "-g",
            "--autogenerate"
          ],
          "description": "Add this parameter to autogenerate the component instead of providing plain availability",
          "takes_arg": true,
          "arg": {
            "name": "<path-to-page[@area]>"
          }
        },
        {
          "names": [
            "-P",
            "--prototype"
          ],
          "description": "The name of the prototype variant to create the component",
          "takes_arg": true,
          "arg": {
            "name": "prototype"
          }
        }
      ],
      "args": [
        {
          "name": "name",
          "description": "The name of the new component template. The name cannot contain spaces"
        }
      ]
    },
    {
      "name": "create-content-type",
      "description": "This command creates a content type",
      "options": [
        {
          "names": [
            "-a"
          ],
          "description": "Creates also a new app that references the content type. With the -a option, the command is functionally equivalent to the create-app command"
        },
        {
          "names": [
            "-p",
            "--path"
          ],
          "description": "The path to the light module where you want to create the content type",
          "takes_arg": true,
          "arg": {
            "name": "path",
            "template": "folders"
          }
        },
        {
          "names": [
            "-P",
            "--prototype"
          ],
          "description": "The name of the prototype variant to create the content type",
          "takes_arg": true,
          "arg": {
            "name": "prototype"
          }
        }
      ],
      "args": [
        {
          "name": "name",
          "description": "The name of the new content type. The name cannot contain spaces"
        }
      ]
    },
    {
      "name": "create-light-module",
      "description": "This command creates a new light module in the form of a set of empty light module folders",
      "options": [
        {
          "names": [
            "-p",
            "--path"
          ],
          "description": "The path of the parent directory for the new light module",
          "takes_arg": true,
          "arg": {
            "name": "path",
            "template": "folders"
          }
        },
        {
          "names": [
            "-P",
            "--prototype"
          ],
          "description": "The name of the prototype variant to create the light module",
          "takes_arg": true,
          "arg": {
            "name": "prototype"
          }
        }
      ],
      "args": [
        {
          "name": "moduleName",
          "description": "The name of the new light module. Avoid spaces and special characters since this name is used as folder name"
        }
      ]
    },
    {
      "name": "create-page",
      "description": "This command creates a new page template",
      "options": [
        {
          "names": [
            "-p",
            "--path"
          ],
          "description": "The path to the light module to add the new template to",
          "takes_arg": true,
          "arg": {
            "name": "path",
            "template": "folders"
          }
        },
        {
          "names": [
            "-P",
            "--prototype"
          ],
          "description": "The name of the prototype variant to create the page",
          "takes_arg": true,
          "arg": {
            "name": "prototype"
          }
        }
      ],
      "args": [
        {
          "name": "templateName",
          "description": "The name of the new page template. The template name cannot contain spaces"
        }
      ]
    },
    {
      "name": "create-virtual-uri",
      "description": "The command creates a virtual URI mapping configuration file (a YAML definition file) in the light module",
      "options": [
        {
          "names": [
            "-p",
            "--path"
          ],
          "description": "The path to the light module",
          "takes_arg": true,
          "arg": {
            "name": "path",
            "template": "folders"
          }
        },
        {
          "names": [
            "-f",
            "--formUri"
          ],
          "description": "The pattern to be matched in the requested URI. Enclose the <uri> value in quotes",
          "takes_arg": true,
          "arg": {
            "name": "uri"
          }
        },
        {
          "names": [
            "-t",
            "--toUri"
          ],
          "description": "A concrete URI that the request is mapped to. Enclose the <prefix:uri> value in quotes",
          "takes_arg": true,
          "arg": {
            "name": "<prefix:uri>"
          }
        },
        {
          "names": [
            "-P",
            "--prototype"
          ],
          "description": "The name of the prototype variant to create the mapping",
          "takes_arg": true,
          "arg": {
            "name": "prototype"
          }
        }
      ],
      "args": [
        {
          "name": "virtualUriName",
          "description": "The name of the new URI configuration"
        }
      ]
    },
    {
      "name": "customize-local-config",
      "description": "Run this command to create a local configuration",
      "options": [
        {
          "names": [
            "-p",
            "--path"
          ],
          "description": "The path into which the mgnl-cli-prototypes folder and mgnl-cli.json file are installed",
          "takes_arg": true,
          "arg": {
            "name": "path",
            "template": "folders"
          }
        }
      ]
    },
    {
      "name": "install",
      "description": "Downloads and installs one or more light modules from npm to the light module directory",
      "options": [
        {
          "names": [
            "-p",
            "--path"
          ],
          "description": "The path to the light-modules folder",
          "takes_arg": true,
          "arg": {
            "name": "path",
            "template": "folders"
          }
        }
      ],
      "args": [
        {
          "name": "light-module-name",
          "description": "At least one name of a light module to be downloaded from npm. If you are installing more than one module from the repository, separate the module names with a space",
          "is_variadic": true
        }
      ]
    },
    {
      "name": "jumpstart",
      "description": "This command downloads, unpacks and pre-configures a Magnolia Tomcat server together with a specific webapp",
      "options": [
        {
          "names": [
            "-p",
            "--path"
          ],
          "description": "The path to the light modules root folder which is observed for changes",
          "takes_arg": true,
          "arg": {
            "name": "path",
            "template": "folders"
          }
        },
        {
          "names": [
            "-m",
            "--magnolia-version"
          ],
          "description": "Use to choose a specific version of the Magnolia webapp. If not provided, the latest stable version of the specified webapp is downloaded",
          "takes_arg": true,
          "arg": {
            "name": "version"
          }
        },
        {
          "names": [
            "-i",
            "--install-sample-module"
          ],
          "description": "If provided, a sample light module under the light modules root folder with the given name is created",
          "takes_arg": true,
          "arg": {
            "name": "name"
          }
        },
        {
          "names": [
            "-s",
            "--snapshot"
          ],
          "description": "Downloads the latest snapshot development version of the specified webapp"
        },
        {
          "names": [
            "-w",
            "--webapp"
          ],
          "description": "Use to directly specify which Magnolia webapp you want to install",
          "takes_arg": true,
          "arg": {
            "name": "webapp",
            "suggestions": [
              "magnolia-empty-webapp",
              "magnolia-community-webapp",
              "magnolia-community-demo-webapp",
              "magnolia-dx-core-webapp",
              "magnolia-dx-core-demo-webapp"
            ]
          }
        }
      ]
    },
    {
      "name": "tab-completion",
      "description": "Run the command to install or uninstall autocompletion for Magnolia CLI commands",
      "args": [
        {
          "name": "command",
          "suggestions": [
            "install",
            "uninstall"
          ]
        }
      ]
    },
    {
      "name": "search",
      "description": "Searches for Magnolia-related packages available from npm",
      "args": [
        {
          "name": "query",
          "description": "The search query sent to the npm's API. The query can contain multiple terms separated with commas and no spaces"
        }
      ]
    },
    {
      "name": "start",
      "description": "This command starts up Magnolia and displays the main log file",
      "options": [
        {
          "names": [
            "-p",
            "--path"
          ],
          "description": "The path to the apache-tomcat folder",
          "takes_arg": true,
          "arg": {
            "name": "path",
            "template": "folders"
          }
        },
        {
          "names": [
            "-d"
          ],
          "description": "Does NOT ignore the open files limit check. The files limit check is ignored by default"
        }
      ]
    }
  ],
  "options": [
    {
      "names": [
        "--help",
        "-h"
      ],
      "description": "Show help for mgnl"
    }
  ]
}