06 CLI Lite Guide
This guide is maintainer-focused. Arduino library consumers should start from
examples/first.
Entry Point
- Independent entry source code:
tools/osfx_cli_main.c - Routing implementation:
src/osfx_cli_lite.c
Command Overview
plugin-listplugin-load <name> [config]plugin-cmd <name> <cmd> [args...]transport-statustest-plugin <subcmd> [args...]port-forwarder <subcmd> [args...]
Common Examples
# List plugins
.\\build\osfx_cli_cl.exe plugin-list
# Load transport and view status
.\\build\osfx_cli_cl.exe plugin-load transport
.\\build\osfx_cli_cl.exe transport-status
# Run test_plugin lightweight suite
.\\build\osfx_cli_cl.exe test-plugin run component
# Add and trigger port forwarding rule
.\\build\osfx_cli_cl.exe port-forwarder add-rule r1 udp 8080 tcp 9000
.\\build\osfx_cli_cl.exe port-forwarder forward udp 8080 A1B2
Multi-Compiler Executable Examples
Test scripts produce different CLI executables based on compiler:
clang:build/osfx_cli_clang.exegcc:build/osfx_cli_gcc.execl:build/osfx_cli_cl.exe
# clang artifact example
.\\build\osfx_cli_clang.exe plugin-list
# gcc artifact example
.\\build\osfx_cli_gcc.exe transport-status
Recommended Workflow Example
# 1) View plugins
.\\build\osfx_cli_cl.exe plugin-list
# 2) Load plugins
.\\build\osfx_cli_cl.exe plugin-load transport
.\\build\osfx_cli_cl.exe plugin-load test_plugin
# 3) Execute checks
.\\build\osfx_cli_cl.exe transport-status
.\\build\osfx_cli_cl.exe test-plugin run component
# 4) Add forwarding rule and trigger
.\\build\osfx_cli_cl.exe plugin-load port_forwarder
.\\build\osfx_cli_cl.exe port-forwarder add-rule r1 udp 8080 tcp 9000
.\\build\osfx_cli_cl.exe port-forwarder forward udp 8080 A1B2C3
Output Conventions
- Success typically includes
ok=1or status summary. - Failure returns
error=...and exits with non-zero code.
Examples:
- Success:
ok=1 loaded=transport - Failure:
error=unknown_command