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: display 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/build.py
14    commands:
15      - name: build
16        class: Build
17        help: compile a Zephyr application
18  - file: scripts/west_commands/sign.py
19    commands:
20      - name: sign
21        class: Sign
22        help: sign a Zephyr binary for bootloader chain-loading
23  - file: scripts/west_commands/flash.py
24    commands:
25      - name: flash
26        class: Flash
27        help: flash and run a binary on a board
28  - file: scripts/west_commands/debug.py
29    commands:
30      - name: debug
31        class: Debug
32        help: flash and interactively debug a Zephyr application
33      - name: debugserver
34        class: DebugServer
35        help: connect to board and launch a debug server
36      - name: attach
37        class: Attach
38        help: interactively debug a board
39  - file: scripts/west_commands/export.py
40    commands:
41      - name: zephyr-export
42        class: ZephyrExport
43        help: export Zephyr installation as a CMake config package
44  - file: scripts/west_commands/spdx.py
45    commands:
46      - name: spdx
47        class: ZephyrSpdx
48        help: create SPDX bill of materials
49