Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/agentops/cli/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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[
Expand Down
Loading