mepcli 1.3.0 → 1.3.2
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.
- package/README.md +6 -381
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,6 +11,10 @@
|
|
|
11
11
|
|
|
12
12
|
A **CodeTease** project.
|
|
13
13
|
|
|
14
|
+
## Documentation
|
|
15
|
+
|
|
16
|
+
For comprehensive guides, API references, and advanced usage, please visit the **[Documentation](./docs/README.md)**.
|
|
17
|
+
|
|
14
18
|
## Features
|
|
15
19
|
|
|
16
20
|
- **Zero Dependency:** Keeps your project clean and fast.
|
|
@@ -222,387 +226,8 @@ const result = await MepCLI.pipeline()
|
|
|
222
226
|
|
|
223
227
|
## Keyboard & Mouse Support
|
|
224
228
|
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
### ⌨️ Advanced Shortcuts
|
|
228
|
-
|
|
229
|
-
<details>
|
|
230
|
-
<summary><b>Calendar Prompt</b></summary>
|
|
231
|
-
|
|
232
|
-
Mep's Calendar prompt supports advanced navigation and selection shortcuts for power users.
|
|
233
|
-
|
|
234
|
-
* **Keyboard:**
|
|
235
|
-
* `Arrow Keys`: Move cursor day by day.
|
|
236
|
-
* `PageUp` / `PageDown`: Jump to previous/next **Month**.
|
|
237
|
-
* `Ctrl + Up` / `Ctrl + Down`: Jump to previous/next **Year**.
|
|
238
|
-
* `Home` / `End`: Jump to the first/last day of the current month.
|
|
239
|
-
* `t`: Jump immediately to **Today**.
|
|
240
|
-
* `Enter`: Select date (or start/end of range).
|
|
241
|
-
|
|
242
|
-
* **Mouse:**
|
|
243
|
-
* `Scroll`: Navigate **Months**.
|
|
244
|
-
* `Ctrl + Scroll`: Adjust the selected **Day** (cursor movement).
|
|
245
|
-
|
|
246
|
-
</details>
|
|
247
|
-
|
|
248
|
-
<details>
|
|
249
|
-
<summary><b>Color Prompt</b></summary>
|
|
250
|
-
|
|
251
|
-
* **Keyboard:**
|
|
252
|
-
* `Tab`: Switch between RGB channels.
|
|
253
|
-
* `Up` / `Down`: Move between channels.
|
|
254
|
-
* `Left` / `Right`: Adjust current channel value.
|
|
255
|
-
* `Shift + Left` / `Shift + Right`: Fast adjust current channel value.
|
|
256
|
-
|
|
257
|
-
* **Mouse:**
|
|
258
|
-
* `Scroll`: Adjust the current channel value.
|
|
259
|
-
* `Ctrl + Scroll`: Fast adjust.
|
|
260
|
-
|
|
261
|
-
</details>
|
|
262
|
-
|
|
263
|
-
<details>
|
|
264
|
-
<summary><b>Checkbox Prompt</b></summary>
|
|
265
|
-
|
|
266
|
-
* **Keyboard:**
|
|
267
|
-
* `Space`: Toggle selection.
|
|
268
|
-
* `a`: Select **All**.
|
|
269
|
-
* `x` / `n`: Select **None**.
|
|
270
|
-
* `i`: **Invert** selection.
|
|
271
|
-
|
|
272
|
-
</details>
|
|
273
|
-
|
|
274
|
-
<details>
|
|
275
|
-
<summary><b>MultiSelect Prompt</b></summary>
|
|
276
|
-
|
|
277
|
-
* **Keyboard:**
|
|
278
|
-
* `Space`: Toggle selection.
|
|
279
|
-
* `Ctrl + A`: Select **All** (Visible).
|
|
280
|
-
* `Ctrl + X`: Deselect **All** (Visible).
|
|
281
|
-
* `Typing`: Filter list.
|
|
282
|
-
|
|
283
|
-
</details>
|
|
284
|
-
|
|
285
|
-
<details>
|
|
286
|
-
<summary><b>Transfer Prompt</b></summary>
|
|
287
|
-
|
|
288
|
-
* **Keyboard:**
|
|
289
|
-
* `Tab` / `Left` / `Right`: Switch focus between Source and Target.
|
|
290
|
-
* `Space`: Move selected item.
|
|
291
|
-
* `a` / `>`: Move **All** to Target.
|
|
292
|
-
* `r` / `<`: Move **All** to Source (Reset).
|
|
293
|
-
|
|
294
|
-
</details>
|
|
295
|
-
|
|
296
|
-
<details>
|
|
297
|
-
<summary><b>Tree & TreeSelect Prompt</b></summary>
|
|
298
|
-
|
|
299
|
-
* **Keyboard:**
|
|
300
|
-
* `Right`: Expand folder or jump to child.
|
|
301
|
-
* `Left`: Collapse folder or jump to parent.
|
|
302
|
-
* `Space`: Toggle expansion (Tree) or Checkbox (TreeSelect).
|
|
303
|
-
* `e`: **Expand** all recursively.
|
|
304
|
-
* `c`: **Collapse** all recursively.
|
|
305
|
-
|
|
306
|
-
</details>
|
|
307
|
-
|
|
308
|
-
<details>
|
|
309
|
-
<summary><b>Grid Prompt</b></summary>
|
|
310
|
-
|
|
311
|
-
The Grid prompt (Matrix selection) includes robust shortcuts for bulk actions.
|
|
312
|
-
|
|
313
|
-
* **Keyboard:**
|
|
314
|
-
* `Arrow Keys`: Move cursor.
|
|
315
|
-
* `PageUp` / `PageDown`: Jump to the first/last **Row**.
|
|
316
|
-
* `Home` / `End`: Jump to the first/last **Column**.
|
|
317
|
-
* `Space`: Toggle current cell.
|
|
318
|
-
* `r`: Toggle entire **Row**.
|
|
319
|
-
* `c`: Toggle entire **Column**.
|
|
320
|
-
* `a`: Select **All**.
|
|
321
|
-
* `x`: Deselect **All** (None).
|
|
322
|
-
* `i`: **Invert** selection.
|
|
323
|
-
|
|
324
|
-
* **Mouse:**
|
|
325
|
-
* `Scroll`: Vertical navigation (Rows).
|
|
326
|
-
* `Shift + Scroll`: Horizontal navigation (Columns).
|
|
327
|
-
|
|
328
|
-
</details>
|
|
329
|
-
|
|
330
|
-
<details>
|
|
331
|
-
<summary><b>Map Prompt</b></summary>
|
|
332
|
-
|
|
333
|
-
* **Keyboard:**
|
|
334
|
-
* `Ctrl + N`: Add new row.
|
|
335
|
-
* `Ctrl + D`: Delete current row.
|
|
336
|
-
* `Arrows` / `Tab`: Navigate cells.
|
|
337
|
-
|
|
338
|
-
</details>
|
|
339
|
-
|
|
340
|
-
<details>
|
|
341
|
-
<summary><b>IP Prompt</b></summary>
|
|
342
|
-
|
|
343
|
-
* **Keyboard:**
|
|
344
|
-
* `typing...`: Auto-jumps to next octet after 3 digits or `.`.
|
|
345
|
-
* `Backspace`: Navigates back to previous octet if empty.
|
|
346
|
-
|
|
347
|
-
</details>
|
|
348
|
-
|
|
349
|
-
<details>
|
|
350
|
-
<summary><b>Kanban Prompt</b></summary>
|
|
351
|
-
|
|
352
|
-
* **Keyboard:**
|
|
353
|
-
* `Arrows`: Navigate items/columns.
|
|
354
|
-
* `Space`: Grab/Drop item (Drag & Drop mode).
|
|
355
|
-
* `Enter`: Submit.
|
|
356
|
-
|
|
357
|
-
* **Mouse:**
|
|
358
|
-
* `Scroll`: Navigate items (Normal) or Move item Left/Right (Grabbed).
|
|
359
|
-
|
|
360
|
-
</details>
|
|
361
|
-
|
|
362
|
-
<details>
|
|
363
|
-
<summary><b>Time Prompt</b></summary>
|
|
364
|
-
|
|
365
|
-
* **Keyboard:**
|
|
366
|
-
* `Up` / `Down`: Adjust value.
|
|
367
|
-
* `Left` / `Right` / `Tab`: Switch unit (Hour/Minute/AM-PM).
|
|
368
|
-
|
|
369
|
-
* **Mouse:**
|
|
370
|
-
* `Scroll`: Adjust value (Up/Down).
|
|
371
|
-
|
|
372
|
-
</details>
|
|
373
|
-
|
|
374
|
-
<details>
|
|
375
|
-
<summary><b>Heatmap Prompt</b></summary>
|
|
376
|
-
|
|
377
|
-
* **Keyboard:**
|
|
378
|
-
* `Arrows`: Navigate cells.
|
|
379
|
-
* `Tab` / `Shift+Tab`: Navigate cells (Horizontal).
|
|
380
|
-
* `Space`: Cycle value.
|
|
381
|
-
* `0-9`: Set value directly.
|
|
382
|
-
|
|
383
|
-
* **Mouse:**
|
|
384
|
-
* `Scroll`: Navigate rows (Vertical).
|
|
385
|
-
|
|
386
|
-
</details>
|
|
387
|
-
|
|
388
|
-
<details>
|
|
389
|
-
<summary><b>Emoji Prompt & MultiColumnSelect</b></summary>
|
|
390
|
-
|
|
391
|
-
* **Keyboard:**
|
|
392
|
-
* `Arrows`: Navigate grid.
|
|
393
|
-
* `Typing`: Filter/Search (Emoji only).
|
|
394
|
-
|
|
395
|
-
</details>
|
|
396
|
-
|
|
397
|
-
<details>
|
|
398
|
-
<summary><b>Miller Prompt</b></summary>
|
|
399
|
-
|
|
400
|
-
* **Keyboard:**
|
|
401
|
-
* `Up` / `Down`: Navigate items.
|
|
402
|
-
* `Right` / `Enter` / `Tab`: Expand child or Drill down.
|
|
403
|
-
* `Left` / `Shift + Tab`: Collapse or Go back.
|
|
404
|
-
|
|
405
|
-
</details>
|
|
406
|
-
|
|
407
|
-
<details>
|
|
408
|
-
<summary><b>Match Prompt</b></summary>
|
|
409
|
-
|
|
410
|
-
* **Keyboard:**
|
|
411
|
-
* `Arrows`: Navigate lists.
|
|
412
|
-
* `Tab`: Switch Source/Target.
|
|
413
|
-
* `Space`: Pick Source or Toggle Link.
|
|
414
|
-
|
|
415
|
-
</details>
|
|
416
|
-
|
|
417
|
-
<details>
|
|
418
|
-
<summary><b>Diff Prompt</b></summary>
|
|
419
|
-
|
|
420
|
-
* **Keyboard:**
|
|
421
|
-
* `Left` / `Right`: Switch Action (Original / Modified / Edit).
|
|
422
|
-
* `Enter`: Submit selection.
|
|
423
|
-
|
|
424
|
-
</details>
|
|
425
|
-
|
|
426
|
-
<details>
|
|
427
|
-
<summary><b>Dial Prompt</b></summary>
|
|
428
|
-
|
|
429
|
-
* **Keyboard:**
|
|
430
|
-
* `Arrows`: Adjust value (rotate knob).
|
|
431
|
-
* `Enter`: Submit.
|
|
432
|
-
|
|
433
|
-
* **Mouse:**
|
|
434
|
-
* `Scroll`: Adjust value.
|
|
435
|
-
|
|
436
|
-
</details>
|
|
437
|
-
|
|
438
|
-
<details>
|
|
439
|
-
<summary><b>Draw Prompt</b></summary>
|
|
440
|
-
|
|
441
|
-
* **Keyboard:**
|
|
442
|
-
* `Arrows`: Move cursor.
|
|
443
|
-
* `Space`: Toggle pixel.
|
|
444
|
-
* `c`: Clear canvas.
|
|
445
|
-
* `i`: Invert canvas.
|
|
446
|
-
* `Enter`: Submit.
|
|
447
|
-
|
|
448
|
-
* **Mouse:**
|
|
449
|
-
* `Drag`: Paint (Left Click) or Erase (Right Click).
|
|
450
|
-
* `Click`: Toggle pixel.
|
|
451
|
-
|
|
452
|
-
</details>
|
|
453
|
-
|
|
454
|
-
<details>
|
|
455
|
-
<summary><b>Breadcrumb Prompt</b></summary>
|
|
456
|
-
|
|
457
|
-
* **Keyboard:**
|
|
458
|
-
* `Arrows`: Navigate list.
|
|
459
|
-
* `Enter`: Drill down into folder.
|
|
460
|
-
* `Backspace`: Go up one level.
|
|
461
|
-
|
|
462
|
-
* **Mouse:**
|
|
463
|
-
* `Scroll`: Navigate list.
|
|
464
|
-
|
|
465
|
-
</details>
|
|
466
|
-
|
|
467
|
-
<details>
|
|
468
|
-
<summary><b>Schedule Prompt</b></summary>
|
|
469
|
-
|
|
470
|
-
* **Keyboard:**
|
|
471
|
-
* `Arrows`: Move task in time.
|
|
472
|
-
* `Tab` / `Shift + Tab`: Switch between tasks.
|
|
473
|
-
* `Shift + Left/Right`: Resize task duration.
|
|
474
|
-
* `PageUp` / `PageDown`: Scroll timeline horizontally.
|
|
475
|
-
|
|
476
|
-
* **Mouse:**
|
|
477
|
-
* `Scroll`: Scroll timeline horizontally.
|
|
478
|
-
|
|
479
|
-
</details>
|
|
480
|
-
|
|
481
|
-
<details>
|
|
482
|
-
<summary><b>Data Inspector</b></summary>
|
|
483
|
-
|
|
484
|
-
* **Keyboard:**
|
|
485
|
-
* `Space` / `Arrows`: Expand/Collapse nodes.
|
|
486
|
-
* `Enter`: Toggle Boolean or Edit String/Number.
|
|
487
|
-
|
|
488
|
-
* **Mouse:**
|
|
489
|
-
* `Scroll`: Navigate tree.
|
|
490
|
-
|
|
491
|
-
</details>
|
|
492
|
-
|
|
493
|
-
<details>
|
|
494
|
-
<summary><b>Seat Prompt</b></summary>
|
|
495
|
-
|
|
496
|
-
* **Keyboard:**
|
|
497
|
-
* `Arrows`: Navigate seat grid.
|
|
498
|
-
* `Tab` / `Shift+Tab`: Navigate Left/Right.
|
|
499
|
-
* `Space`: Select/Deselect seat.
|
|
500
|
-
|
|
501
|
-
* **Mouse:**
|
|
502
|
-
* `Scroll`: Navigate Up/Down.
|
|
503
|
-
|
|
504
|
-
</details>
|
|
505
|
-
|
|
506
|
-
<details>
|
|
507
|
-
<summary><b>Select Range Prompt & Multi Range Prompt</b></summary>
|
|
508
|
-
|
|
509
|
-
* **Keyboard:**
|
|
510
|
-
* `Arrows (Up/Down)`: Navigate items.
|
|
511
|
-
* `Space`: Set/Unset anchor point (drag start) or commit range (drag end).
|
|
512
|
-
* `Enter`: Submit selected range(s).
|
|
513
|
-
|
|
514
|
-
</details>
|
|
515
|
-
|
|
516
|
-
<details>
|
|
517
|
-
<summary><b>Breadcrumb Search Prompt</b></summary>
|
|
518
|
-
|
|
519
|
-
* **Keyboard:**
|
|
520
|
-
* `Arrows`: Navigate.
|
|
521
|
-
* `Typing`: Enter **Search Mode** (filters current folder).
|
|
522
|
-
* `Esc`: Exit Search Mode.
|
|
523
|
-
* `Enter`: Drill down (Folder) or Select (File).
|
|
524
|
-
|
|
525
|
-
</details>
|
|
526
|
-
|
|
527
|
-
<details>
|
|
528
|
-
<summary><b>Sort Grid Prompt</b></summary>
|
|
529
|
-
|
|
530
|
-
* **Keyboard:**
|
|
531
|
-
* `Arrows`: Navigate grid.
|
|
532
|
-
* `Tab` / `Shift+Tab`: Navigate Left/Right.
|
|
533
|
-
* `Space`: Grab/Drop item.
|
|
534
|
-
* `Enter`: Submit grid.
|
|
535
|
-
|
|
536
|
-
* **Mouse:**
|
|
537
|
-
* `Scroll`: Navigate Up/Down.
|
|
538
|
-
|
|
539
|
-
</details>
|
|
540
|
-
|
|
541
|
-
<details>
|
|
542
|
-
<summary><b>Dependency Prompt</b></summary>
|
|
543
|
-
|
|
544
|
-
* **Keyboard:**
|
|
545
|
-
* `Arrows`: Navigate items.
|
|
546
|
-
* `Space`: Toggle item (Triggers auto-resolution).
|
|
547
|
-
* `Enter`: Submit selection.
|
|
548
|
-
|
|
549
|
-
* **Mouse:**
|
|
550
|
-
* `Scroll`: Navigate Up/Down.
|
|
551
|
-
|
|
552
|
-
</details>
|
|
553
|
-
|
|
554
|
-
<details>
|
|
555
|
-
<summary><b>Box Prompt</b></summary>
|
|
556
|
-
|
|
557
|
-
* **Keyboard:**
|
|
558
|
-
* `Arrows` / `Tab`: Navigate (Top -> Right -> Bottom -> Left).
|
|
559
|
-
* `Shift + Tab`: Navigate backwards.
|
|
560
|
-
* `+` / `-`: Increment/Decrement value.
|
|
561
|
-
* `0-9`: Type value directly.
|
|
562
|
-
|
|
563
|
-
* **Mouse:**
|
|
564
|
-
* `Scroll`: Cycle focus (Up=Backwards, Down=Forwards).
|
|
565
|
-
|
|
566
|
-
</details>
|
|
567
|
-
|
|
568
|
-
<details>
|
|
569
|
-
<summary><b>Phone Prompt</b></summary>
|
|
570
|
-
|
|
571
|
-
* **Keyboard:**
|
|
572
|
-
* `Tab`: Switch between **Country Code** and **Number** sections.
|
|
573
|
-
* `Typing` (in Country section): Fuzzy search for country (e.g., "Viet", "US").
|
|
574
|
-
* `Arrows (Up/Down)`: Cycle through countries.
|
|
575
|
-
* `Backspace`: Delete digit or clear search.
|
|
576
|
-
|
|
577
|
-
* **Mouse:**
|
|
578
|
-
* `Scroll`: Cycle through countries (when Country section is active).
|
|
579
|
-
|
|
580
|
-
</details>
|
|
581
|
-
|
|
582
|
-
<details>
|
|
583
|
-
<summary><b>cURL Prompt</b></summary>
|
|
584
|
-
|
|
585
|
-
* **Global:**
|
|
586
|
-
* `Tab` / `Shift+Tab`: Switch between **Method**, **URL**, **Headers**, and **Body** sections.
|
|
587
|
-
* `s`: Toggle Shell Output (Bash / PowerShell / CMD).
|
|
588
|
-
|
|
589
|
-
* **Method Section:**
|
|
590
|
-
* `Arrows (Up/Down/Left/Right)` / `Space`: Cycle HTTP methods (GET, POST, etc.).
|
|
591
|
-
* `Enter`: Submit immediately.
|
|
592
|
-
|
|
593
|
-
* **URL Section:**
|
|
594
|
-
* `Typing`: Enter URL.
|
|
595
|
-
* `Arrows (Left/Right)`: Move cursor.
|
|
596
|
-
* `Home` / `End`: Jump to start/end.
|
|
597
|
-
* `Ctrl + U`: Clear input.
|
|
598
|
-
* `Ctrl + W`: Delete word backwards.
|
|
599
|
-
* `Enter`: Submit immediately.
|
|
600
|
-
|
|
601
|
-
* **Headers & Body Section:**
|
|
602
|
-
* `Enter`: Open editor (Map Editor for Headers, Code Editor for Body).
|
|
603
|
-
|
|
604
|
-
</details>
|
|
229
|
+
For a detailed list of shortcuts and mouse interactions, please refer to the **[Shortcuts Documentation](./docs/features/shortcuts.md)**.
|
|
605
230
|
|
|
606
231
|
## License
|
|
607
232
|
|
|
608
|
-
This project is under the **MIT License**.
|
|
233
|
+
This project is under the **MIT License**.
|