1# Keep the help strings in sync with the values in the .py files!
2west-commands:
3  - file: scripts/west_commands/completion.py
4    commands:
5      - name: completion
6        class: Completion
7        help: output shell completion scripts
8  - file: scripts/west_commands/boards.py
9    commands:
10      - name: boards
11        class: Boards
12        help: display information about supported boards
13  - file: scripts/west_commands/shields.py
14    commands:
15      - name: shields
16        class: Shields
17        help: display list of supported shields
18  - file: scripts/west_commands/build.py
19    commands:
20      - name: build
21        class: Build
22        help: compile a Zephyr application
23  - file: scripts/west_commands/twister_cmd.py
24    commands:
25      - name: twister
26        class: Twister
27        help: west twister wrapper
28  - file: scripts/west_commands/sign.py
29    commands:
30      - name: sign
31        class: Sign
32        help: sign a Zephyr binary for bootloader chain-loading
33  - file: scripts/west_commands/flash.py
34    commands:
35      - name: flash
36        class: Flash
37        help: flash and run a binary on a board
38  - file: scripts/west_commands/debug.py
39    commands:
40      - name: debug
41        class: Debug
42        help: flash and interactively debug a Zephyr application
43      - name: debugserver
44        class: DebugServer
45        help: connect to board and launch a debug server
46      - name: attach
47        class: Attach
48        help: interactively debug a board
49  - file: scripts/west_commands/export.py
50    commands:
51      - name: zephyr-export
52        class: ZephyrExport
53        help: export Zephyr installation as a CMake config package
54  - file: scripts/west_commands/spdx.py
55    commands:
56      - name: spdx
57        class: ZephyrSpdx
58        help: create SPDX bill of materials
59  - file: scripts/west_commands/blobs.py
60    commands:
61      - name: blobs
62        class: Blobs
63        help: work with binary blobs
64  - file: scripts/west_commands/bindesc.py
65    commands:
66      - name: bindesc
67        class: Bindesc
68        help: work with Binary Descriptors
69  - file: scripts/west_commands/robot.py
70    commands:
71      - name: robot
72        class: Robot
73        help: run RobotFramework test suites
74  - file: scripts/west_commands/simulate.py
75    commands:
76      - name: simulate
77        class: Simulate
78        help: simulate board
79