@@ -19,61 +19,61 @@ Install (from source):
1919cargo install --path . --locked
2020```
2121
22- After installation use ` chel ` from your PATH.
22+ After installation use ` kelo ` from your PATH.
2323
2424Analyze a workspace (text output):
2525
2626``` bash
27- chel analyze /path/to/ros/workspace
27+ kelo analyze /path/to/ros/workspace
2828```
2929
3030Select a platform (load platform-specific builtin rules):
3131
3232``` bash
3333# analyze with ROS1 builtin rules
34- chel analyze --platform ros1 /path/to/ros/workspace
34+ kelo analyze --platform ros1 /path/to/ros/workspace
3535
3636# analyze with ROS2 builtin rules
37- chel analyze --platform ros2 /path/to/ros/workspace
37+ kelo analyze --platform ros2 /path/to/ros/workspace
3838```
3939
4040JSON output:
4141
4242``` bash
43- chel analyze -f json /path/to/ros/workspace
43+ kelo analyze -f json /path/to/ros/workspace
4444```
4545
4646Custom rules:
4747
4848``` bash
4949# add custom rules on top of builtin rules
50- chel analyze --platform ros1 --rules /path/to/custom/rules /path/to/ros/workspace
50+ kelo analyze --platform ros1 --rules /path/to/custom/rules /path/to/ros/workspace
5151
5252# load only custom rules (disable builtin)
53- chel analyze --rules /path/to/custom/rules --no-builtin /path/to/ros/workspace
53+ kelo analyze --rules /path/to/custom/rules --no-builtin /path/to/ros/workspace
5454```
5555
5656List available rules:
5757
5858``` bash
59- chel analyze --list-rules
59+ kelo analyze --list-rules
6060
6161# include builtin rules for a specific platform
62- chel analyze -p ros1 --list-rules
63- chel analyze -p ros2 --list-rules
62+ kelo analyze -p ros1 --list-rules
63+ kelo analyze -p ros2 --list-rules
6464```
6565
6666Generate a static HTML report from JSON:
6767
6868``` bash
6969# 1) analyze and write JSON to a file
70- chel analyze -p ros1 -f json -o report.json /path/to/ros/workspace
70+ kelo analyze -p ros1 -f json -o report.json /path/to/ros/workspace
7171
7272# 2) convert JSON to a standalone HTML file
73- chel report report.json -o report.html
73+ kelo report report.json -o report.html
7474
7575# or: write a directory bundle (index.html + assets/) for richer UI
76- chel report report.json -o results/
76+ kelo report report.json -o results/
7777```
7878
7979Customize report sections (optional)
@@ -82,7 +82,7 @@ Customize report sections (optional)
8282When writing a directory bundle (e.g. ` -o results/ ` ), you can customize the sidebar section ordering and visibility via a TOML config:
8383
8484``` bash
85- chel report report.json -o results/ --config report.toml
85+ kelo report report.json -o results/ --config report.toml
8686```
8787
8888Example ` report.toml ` :
0 commit comments