Update CLI command names and syntax in README#20
Open
hiba1204 wants to merge 1 commit into
Open
Conversation
Problem: The CLI Usage section documented commands that don't exist (tmll_cli.py, --experiment flag, anomalies/changepoints/analyze-correlation command names, --method on changepoint, --threshold on idle-resources). Running any of these as written results in "command not found" or "unrecognized arguments" errors. Solution: Updated all commands to match the actual CLI implementation (tmll/mcp/cli.py). Also added the missing --log-stderr option. Impact: Users following the README can now run the CLI successfully. Signed-off-by: Hiba Kadiri <hiba.kadiri@polymtl.ca>
kavehshahedi
approved these changes
Jun 29, 2026
kavehshahedi
left a comment
Contributor
There was a problem hiding this comment.
LGTM! Thanks for the contribution, Hiba!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What it does
Fixes outdated CLI command names and usage examples in the README's "CLI Usage" section.
The documented commands no longer match the actual CLI (
tmll/mcp/cli.py):tmll_cli.pydoes not exist as a standalone script, the CLI is invoked viapython3 -m tmll.mcp.clidetect-anomaliestoanomaly)--experiment <UUID>is a positional argument, not a flag--methoddoes not exist onchangepoint, it is--methods(plural)--thresholddoes not exist onidle-resources, it is--cpu-idle-threshold/--memory-idle-threshold/--disk-idle-threshold--log-stderroption to the "Options" sectionHow to test
network-experiment/serverKernelsample trace from the Tracevizlab tutorials, confirming it runs withoutcommand not foundorunrecognized argumentserrorsFollow-ups
N/A
Review checklist