diff --git a/CHANGELOG.md b/CHANGELOG.md index bf5728f..1256f90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ This format follows [Keep a Changelog](https://keepachangelog.com/) and adheres ## [Unreleased] +### Fixed +- **`agentops skills install --platform` help text now lists `cursor`.** The + CLI option help was advertising only `copilot` and `claude` even though the + `cursor` platform is fully implemented (registers rules in + `.cursor/rules/agentops.mdc`). Updated to `Target platform(s): copilot, + claude, cursor.` so users discover the supported value from `--help`. + ([#157](https://github.com/Azure/agentops/issues/157)) + ## [0.3.23] - 2026-06-12 ### Fixed diff --git a/src/agentops/cli/app.py b/src/agentops/cli/app.py index c59cbe3..b40f386 100644 --- a/src/agentops/cli/app.py +++ b/src/agentops/cli/app.py @@ -3313,7 +3313,7 @@ def cmd_skills_install( typer.Option( "--platform", "-p", - help="Target platform(s): copilot, claude.", + help="Target platform(s): copilot, claude, cursor.", ), ] = None, from_github: Annotated[