mielin-cli 0.1.0-rc.1

Command-line interface and control plane for MielinOS distributed agent mesh
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
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
# MielinOS CLI - Command Reference

Complete reference for all `mielinctl` commands.

## Table of Contents

- [Global Flags]#global-flags
- [Node Commands]#node-commands
- [Agent Commands]#agent-commands
- [Cluster Commands]#cluster-commands
- [Mesh Commands]#mesh-commands
- [Migration Commands]#migration-commands
- [Registry Commands]#registry-commands
- [Gossip Commands]#gossip-commands
- [WASM Commands]#wasm-commands
- [Debug Commands]#debug-commands
- [Daemon Command]#daemon-command
- [Utility Commands]#utility-commands

## Global Flags

These flags are available for all commands:

```bash
--output, -o <format>    Output format: table, json, yaml, quiet
--quiet, -q             Minimal output (equivalent to --output quiet)
--help, -h              Show help for command
--version, -V           Show version information
```

## Node Commands

Manage MielinOS nodes in the cluster.

### `node list`

List all nodes in the cluster.

**Aliases:** `ls`

**Usage:**
```bash
mielinctl node list [OPTIONS]
```

**Options:**
- `--output, -o <format>` - Output format (table, json, yaml, quiet)
- `--quiet, -q` - Show only node IDs

**Examples:**
```bash
# List all nodes (table format)
mielinctl node list

# List nodes as JSON
mielinctl node list --output json

# Get only node IDs
mielinctl node ls --quiet
```

### `node info`

Show detailed information about a specific node.

**Aliases:** `show`, `details`

**Usage:**
```bash
mielinctl node info <NODE_ID> [OPTIONS]
```

**Arguments:**
- `<NODE_ID>` - Node identifier

**Options:**
- `--output, -o <format>` - Output format

**Examples:**
```bash
# View node details
mielinctl node info node-001

# Get node info as JSON
mielinctl node show node-001 --output json
```

### `node create`

Create a new node with specified configuration.

**Aliases:** `new`, `add`

**Usage:**
```bash
mielinctl node create [OPTIONS]
```

**Options:**
- `--role <role>` - Node role: core, relay, edge (required)
- `--listen-addr <addr>` - Listen address (e.g., 0.0.0.0:7000)
- `--node-id <id>` - Custom node identifier

**Examples:**
```bash
# Create a core node
mielinctl node create --role core --listen-addr 0.0.0.0:7000

# Create an edge node with custom ID
mielinctl node new --role edge --node-id my-edge-01
```

### `node start`

Start a stopped node.

**Usage:**
```bash
mielinctl node start <NODE_ID>
```

**Examples:**
```bash
mielinctl node start node-001
```

### `node stop`

Stop a running node.

**Aliases:** `kill`, `terminate`

**Usage:**
```bash
mielinctl node stop <NODE_ID> [OPTIONS]
```

**Options:**
- `--force` - Force stop without graceful shutdown

**Examples:**
```bash
# Graceful stop
mielinctl node stop node-001

# Force stop
mielinctl node kill node-001 --force
```

### `node join`

Join an existing cluster.

**Aliases:** `connect`, `add`

**Usage:**
```bash
mielinctl node join [OPTIONS]
```

**Options:**
- `--bootstrap <addr>` - Bootstrap node address (required)

**Examples:**
```bash
mielinctl node join --bootstrap tcp://192.168.1.100:7000
```

### `node leave`

Leave the cluster gracefully.

**Aliases:** `disconnect`, `depart`

**Usage:**
```bash
mielinctl node leave [OPTIONS]
```

**Options:**
- `--drain` - Drain agents before leaving

**Examples:**
```bash
# Leave and migrate agents
mielinctl node leave --drain
```

### `node config`

View or modify node configuration.

**Aliases:** `cfg`, `configure`

**Usage:**
```bash
# View all configuration
mielinctl node config --all

# Get specific value
mielinctl node config <KEY>

# Set value
mielinctl node config <KEY> <VALUE>
```

**Examples:**
```bash
# View all config
mielinctl node config --all

# Get node ID
mielinctl node cfg node.id

# Set node role
mielinctl node config node.role core
```

## Agent Commands

Manage WASM agents running on nodes.

### `agent list`

List all agents in the cluster.

**Aliases:** `ls`

**Usage:**
```bash
mielinctl agent list [OPTIONS]
```

**Options:**
- `--filter <state>` - Filter by state (running, paused, error, migrating)
- `--output, -o <format>` - Output format

**Examples:**
```bash
# List all agents
mielinctl agent list

# List only running agents
mielinctl agent ls --filter running
```

### `agent inspect`

View detailed agent information.

**Aliases:** `show`, `details`

**Usage:**
```bash
mielinctl agent inspect <AGENT_ID> [OPTIONS]
```

**Examples:**
```bash
mielinctl agent inspect agent-001
mielinctl agent show agent-001 --output json
```

### `agent create`

Create a new agent from WASM module.

**Aliases:** `new`, `add`

**Usage:**
```bash
mielinctl agent create [OPTIONS]
```

**Options:**
- `--name <name>` - Agent name (required)
- `--wasm-file <path>` - Path to WASM module (required)
- `--memory <mb>` - Memory limit in MB (default: 256)
- `--cpu-shares <shares>` - CPU shares (default: 1024)
- `--env <KEY=VALUE>` - Environment variables (can be repeated)
- `--node <node-id>` - Target node for deployment

**Examples:**
```bash
# Create basic agent
mielinctl agent create --name my-agent --wasm-file agent.wasm

# Create with resource limits
mielinctl agent new \
  --name my-agent \
  --wasm-file agent.wasm \
  --memory 512 \
  --cpu-shares 2048

# Create with environment variables
mielinctl agent create \
  --name my-agent \
  --wasm-file agent.wasm \
  --env DATABASE_URL=postgres://localhost \
  --env API_KEY=secret123
```

### `agent deploy`

Deploy agent to a specific node.

**Aliases:** `dep`

**Usage:**
```bash
mielinctl agent deploy <AGENT_ID> [OPTIONS]
```

**Options:**
- `--target <node-id>` - Target node (required)

**Examples:**
```bash
mielinctl agent deploy agent-001 --target node-002
```

### `agent migrate`

Migrate agent to another node.

**Aliases:** `move`, `mv`

**Usage:**
```bash
mielinctl agent migrate <AGENT_ID> [OPTIONS]
```

**Options:**
- `--to <node-id>` - Destination node (required)
- `--strategy <strategy>` - Migration strategy: live, cold (default: live)

**Examples:**
```bash
# Live migration
mielinctl agent migrate agent-001 --to node-002

# Cold migration
mielinctl agent move agent-001 --to node-002 --strategy cold
```

### `agent stop`

Stop a running agent.

**Aliases:** `kill`, `terminate`

**Usage:**
```bash
mielinctl agent stop <AGENT_ID>
```

**Examples:**
```bash
mielinctl agent stop agent-001
```

### `agent logs`

View agent logs.

**Aliases:** `log`

**Usage:**
```bash
mielinctl agent logs <AGENT_ID> [OPTIONS]
```

**Options:**
- `--tail <lines>` - Number of lines to show (default: 100)
- `--follow, -f` - Follow log output

**Examples:**
```bash
# View last 100 lines
mielinctl agent logs agent-001

# View last 500 lines
mielinctl agent log agent-001 --tail 500

# Follow logs in real-time
mielinctl agent logs agent-001 --follow
```

### `agent exec`

Execute command inside agent.

**Aliases:** `run`, `execute`

**Usage:**
```bash
mielinctl agent exec [OPTIONS] <AGENT_ID> <COMMAND> [ARGS...]
```

**Options:**
- `-i, --interactive` - Keep STDIN open
- `-t, --tty` - Allocate a pseudo-TTY

**Examples:**
```bash
# Execute single command
mielinctl agent exec agent-001 echo "Hello"

# Interactive shell
mielinctl agent exec -it agent-001 /bin/sh

# Run script
mielinctl agent run agent-001 python script.py arg1 arg2
```

## Cluster Commands

Cluster-wide operations and management.

### `cluster init`

Initialize a new cluster.

**Aliases:** `initialize`, `setup`

**Usage:**
```bash
mielinctl cluster init [OPTIONS]
```

**Options:**
- `--name <name>` - Cluster name (required)
- `--listen-addr <addr>` - Listen address (required)
- `--role <role>` - Node role: core, relay, edge (default: core)

**Examples:**
```bash
mielinctl cluster init \
  --name production \
  --listen-addr 0.0.0.0:7000 \
  --role core
```

### `cluster status`

View cluster-wide status.

**Aliases:** `st`, `stat`

**Usage:**
```bash
mielinctl cluster status [OPTIONS]
```

**Examples:**
```bash
mielinctl cluster status
mielinctl cluster st --output json
```

### `cluster health`

Perform health check on all nodes.

**Aliases:** `check`, `healthcheck`

**Usage:**
```bash
mielinctl cluster health [OPTIONS]
```

**Examples:**
```bash
mielinctl cluster health
mielinctl cluster check --output json
```

### `cluster upgrade`

Perform rolling cluster upgrade.

**Aliases:** `up`, `update`

**Usage:**
```bash
mielinctl cluster upgrade [OPTIONS]
```

**Options:**
- `--version <version>` - Target version (required)
- `--batch-size <size>` - Nodes per batch (default: 1)
- `--wait-time <seconds>` - Wait between batches (default: 30)
- `--skip-health-check` - Skip health checks (not recommended)

**Examples:**
```bash
# Safe upgrade (one node at a time)
mielinctl cluster upgrade --version 0.2.0

# Faster upgrade (2 nodes at a time)
mielinctl cluster up --version 0.2.0 --batch-size 2 --wait-time 60
```

## Mesh Commands

Mesh network status and peer management.

### `mesh status`

View mesh network status.

**Aliases:** `st`, `stat`

**Usage:**
```bash
mielinctl mesh status [OPTIONS]
```

**Examples:**
```bash
mielinctl mesh status
mielinctl mesh st --output json
```

### `mesh peers`

List connected peers.

**Aliases:** `ls`, `list`

**Usage:**
```bash
mielinctl mesh peers [OPTIONS]
```

**Examples:**
```bash
mielinctl mesh peers
mielinctl mesh ls --output yaml
```

## Migration Commands

Agent migration operations and history.

### `migrate agent`

Initiate agent migration (alias for `agent migrate`).

**Usage:**
```bash
mielinctl migrate agent <AGENT_ID> [OPTIONS]
```

**Options:**
- `--to <node-id>` - Destination node (required)
- `--strategy <strategy>` - Migration strategy

**Examples:**
```bash
mielinctl migrate agent agent-001 --to node-002
```

### `migrate status`

View migration status.

**Aliases:** `st`, `stat`

**Usage:**
```bash
mielinctl migrate status [OPTIONS]
```

**Options:**
- `--agent <agent-id>` - Filter by agent

**Examples:**
```bash
# All migrations
mielinctl migrate status

# Specific agent
mielinctl migrate st --agent agent-001
```

### `migrate cancel`

Cancel a pending migration.

**Aliases:** `abort`, `stop`

**Usage:**
```bash
mielinctl migrate cancel <MIGRATION_ID>
```

**Examples:**
```bash
mielinctl migrate cancel migration-123
```

### `migrate history`

View migration history.

**Aliases:** `hist`, `log`

**Usage:**
```bash
mielinctl migrate history [OPTIONS]
```

**Options:**
- `--limit <n>` - Number of entries (default: 10)

**Examples:**
```bash
# Last 10 migrations
mielinctl migrate history

# Last 50 migrations
mielinctl migrate hist --limit 50
```

## Registry Commands

Agent registry queries and statistics.

### `registry list`

List all agents in registry.

**Aliases:** `ls`

**Usage:**
```bash
mielinctl registry list [OPTIONS]
```

**Examples:**
```bash
mielinctl registry list
mielinctl registry ls --output json
```

### `registry query`

Query agents by pattern.

**Aliases:** `search`, `find`

**Usage:**
```bash
mielinctl registry query <PATTERN> [OPTIONS]
```

**Examples:**
```bash
# Find by name pattern
mielinctl registry query "web-*"

# Find by status
mielinctl registry search "status:running"
```

### `registry stats`

View registry statistics.

**Aliases:** `statistics`, `info`

**Usage:**
```bash
mielinctl registry stats [OPTIONS]
```

**Examples:**
```bash
mielinctl registry stats
mielinctl registry info --output json
```

## Gossip Commands

Gossip protocol management.

### `gossip status`

View gossip protocol status.

**Aliases:** `st`, `stat`

**Usage:**
```bash
mielinctl gossip status [OPTIONS]
```

**Examples:**
```bash
mielinctl gossip status
mielinctl gossip st --output json
```

### `gossip members`

List cluster members.

**Aliases:** `ls`, `list`

**Usage:**
```bash
mielinctl gossip members [OPTIONS]
```

**Options:**
- `--alive` - Show only alive members

**Examples:**
```bash
# All members
mielinctl gossip members

# Only alive members
mielinctl gossip ls --alive
```

### `gossip sync`

Force gossip synchronization.

**Aliases:** `synchronize`, `refresh`

**Usage:**
```bash
mielinctl gossip sync [PEER_ID]
```

**Examples:**
```bash
# Sync with all peers
mielinctl gossip sync

# Sync with specific peer
mielinctl gossip synchronize peer-abc123
```

## WASM Commands

WASM agent development tools.

### `wasm build`

Build WASM agent from source.

**Aliases:** `compile`, `make`

**Usage:**
```bash
mielinctl wasm build [OPTIONS]
```

**Options:**
- `--source <path>` - Source directory (required)
- `--output <path>` - Output WASM file (required)
- `--optimize` - Optimize during build

**Examples:**
```bash
# Basic build
mielinctl wasm build --source ./src --output agent.wasm

# Build with optimization
mielinctl wasm compile --source ./src --output agent.wasm --optimize
```

### `wasm validate`

Validate WASM module.

**Aliases:** `check`, `verify`

**Usage:**
```bash
mielinctl wasm validate <WASM_FILE>
```

**Examples:**
```bash
mielinctl wasm validate agent.wasm
mielinctl wasm check agent.wasm
```

### `wasm test`

Test WASM agent locally.

**Aliases:** `run`

**Usage:**
```bash
mielinctl wasm test <WASM_FILE> [OPTIONS]
```

**Options:**
- `--args <args>` - Arguments to pass

**Examples:**
```bash
mielinctl wasm test agent.wasm
mielinctl wasm run agent.wasm --args "arg1 arg2"
```

### `wasm optimize`

Optimize WASM module.

**Aliases:** `opt`, `shrink`

**Usage:**
```bash
mielinctl wasm optimize [OPTIONS]
```

**Options:**
- `--input <path>` - Input WASM file (required)
- `--output <path>` - Output WASM file (required)
- `--level <level>` - Optimization level 0-3 (default: 2)

**Examples:**
```bash
mielinctl wasm optimize \
  --input agent.wasm \
  --output agent-opt.wasm \
  --level 3
```

## Debug Commands

Debugging and profiling tools.

### `debug attach`

Attach debugger to agent.

**Aliases:** `connect`

**Usage:**
```bash
mielinctl debug attach <AGENT_ID> [OPTIONS]
```

**Options:**
- `--port <port>` - Debugger port (default: 9229)

**Examples:**
```bash
mielinctl debug attach agent-001
mielinctl debug connect agent-001 --port 9230
```

### `debug trace`

Trace agent execution.

**Aliases:** `track`, `follow`

**Usage:**
```bash
mielinctl debug trace <AGENT_ID> [OPTIONS]
```

**Options:**
- `--duration <seconds>` - Trace duration (default: 30)
- `--file <path>` - Output file

**Examples:**
```bash
# Trace for 30 seconds
mielinctl debug trace agent-001

# Trace for 60 seconds and save
mielinctl debug track agent-001 --duration 60 --file trace.json
```

### `debug dump`

Dump agent state.

**Aliases:** `snapshot`, `export`

**Usage:**
```bash
mielinctl debug dump <AGENT_ID> [OPTIONS]
```

**Options:**
- `--memory` - Include memory dump

**Examples:**
```bash
mielinctl debug dump agent-001
mielinctl debug snapshot agent-001 --memory
```

### `debug profile`

Show profiling data.

**Aliases:** `prof`, `perf`

**Usage:**
```bash
mielinctl debug profile <AGENT_ID> [OPTIONS]
```

**Options:**
- `--cpu` - Show CPU profiling
- `--mem` - Show memory profiling

**Examples:**
```bash
# All profiling data
mielinctl debug profile agent-001

# CPU only
mielinctl debug prof agent-001 --cpu

# Both CPU and memory
mielinctl debug perf agent-001 --cpu --mem
```

## Daemon Command

Run MielinOS node in daemon mode.

### `daemon`

Start MielinOS node daemon.

**Usage:**
```bash
mielinctl daemon [OPTIONS]
```

**Options:**
- `--listen-addr <addr>` - Listen address (default: 0.0.0.0:7000)
- `--role <role>` - Node role: core, relay, edge (default: core)
- `--node-id <id>` - Custom node ID
- `--bootstrap <addr>` - Bootstrap nodes (comma-separated)

**Examples:**
```bash
# Start core node
mielinctl daemon --role core

# Start edge node and join cluster
mielinctl daemon \
  --role edge \
  --bootstrap tcp://192.168.1.100:7000,tcp://192.168.1.101:7001
```

## Utility Commands

Miscellaneous utility commands.

### `version`

Show version information.

**Usage:**
```bash
mielinctl version [OPTIONS]
```

**Examples:**
```bash
mielinctl version
mielinctl version --output json
```

### `completion`

Generate shell completion scripts.

**Usage:**
```bash
mielinctl completion <SHELL>
```

**Arguments:**
- `<SHELL>` - Shell type: bash, zsh, fish, powershell, elvish

**Examples:**
```bash
# Bash
mielinctl completion bash > /etc/bash_completion.d/mielinctl

# Zsh
mielinctl completion zsh > /usr/local/share/zsh/site-functions/_mielinctl

# Fish
mielinctl completion fish > ~/.config/fish/completions/mielinctl.fish
```

## Environment Variables

Configure `mielinctl` via environment variables:

| Variable | Description | Example |
|----------|-------------|---------|
| `MIELIN_NODE_ID` | Node identifier | `my-node-01` |
| `MIELIN_NODE_ROLE` | Node role | `core`, `relay`, `edge` |
| `MIELIN_NODE_LISTEN_ADDRESS` | Listen address | `0.0.0.0:7000` |
| `MIELIN_NODE_BOOTSTRAP_NODES` | Bootstrap nodes | `tcp://host1:7000,tcp://host2:7000` |
| `MIELIN_CLI_DEFAULT_OUTPUT_FORMAT` | Default output format | `json`, `yaml`, `table` |
| `MIELIN_CLI_ENABLE_COLORS` | Enable colored output | `true`, `false` |
| `MIELIN_CLI_COMMAND_TIMEOUT_SECS` | Command timeout | `30`, `60`, `120` |
| `MIELIN_DAEMON_ENABLE_MDNS` | Enable mDNS | `true`, `false` |
| `MIELIN_DAEMON_ENABLE_GOSSIP` | Enable gossip | `true`, `false` |
| `MIELIN_DAEMON_ENABLE_REGISTRY` | Enable registry | `true`, `false` |
| `MIELIN_DAEMON_ENABLE_MIGRATION` | Enable migration | `true`, `false` |

## Exit Codes

| Code | Meaning |
|------|---------|
| 0 | Success |
| 1 | General error |
| 2 | Invalid command or arguments |
| 3 | Connection error |
| 4 | Timeout |
| 5 | Not found |
| 6 | Permission denied |

## See Also

- [Quickstart Guide]./QUICKSTART.md
- [Common Workflows]./WORKFLOWS.md
- [Troubleshooting]./TROUBLESHOOTING.md
- [Examples]../examples/