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
2 changes: 1 addition & 1 deletion src/apm_cli/commands/deps/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ def clean(dry_run: bool, yes: bool):
"-t",
type=TargetParamType(),
default=None,
help="Target platform (comma-separated). Values: copilot, claude, cursor, opencode, codex, gemini, agent-skills, all. 'agent-skills' deploys to .agents/skills/ (cross-client). 'all' = copilot+claude+cursor+opencode+codex+gemini (excludes agent-skills); combine with 'agent-skills' for both.",
help="Target platform (comma-separated). Values: copilot, claude, cursor, opencode, codex, gemini, windsurf, agent-skills, all. 'agent-skills' deploys to .agents/skills/ (cross-client). 'all' = copilot+claude+cursor+opencode+codex+gemini+windsurf (excludes agent-skills); combine with 'agent-skills' for both. 'copilot-cowork' is also accepted when the copilot-cowork experimental flag is enabled (run 'apm experimental enable copilot-cowork').",
)
@click.option(
"--parallel-downloads",
Expand Down
4 changes: 2 additions & 2 deletions src/apm_cli/commands/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ def _handle_mcp_install(
@click.option(
"--runtime",
help=(
"Target specific runtime only (copilot, codex, vscode, cursor, opencode, gemini, claude)"
"Target specific runtime only (copilot, codex, vscode, cursor, opencode, gemini, claude, windsurf)"
),
Comment on lines 799 to 803
)
@click.option("--exclude", help="Exclude specific runtime from installation")
Expand Down Expand Up @@ -840,7 +840,7 @@ def _handle_mcp_install(
"target",
type=TargetParamType(),
default=None,
help="Target harness(es) to deploy to. Comma-separated for multiple: --target claude,cursor. Highest-priority entry in the resolution chain (--target > apm.yml targets: > auto-detect). Values: copilot, claude, cursor, opencode, codex, gemini, windsurf, agent-skills, all. 'agent-skills' deploys to .agents/skills/ (cross-client). 'all' = copilot+claude+cursor+opencode+codex+gemini+windsurf (excludes agent-skills); combine with 'agent-skills' for both. Note: '--target all' on 'apm compile' is deprecated; use 'apm compile --all' instead.",
help="Target harness(es) to deploy to. Comma-separated for multiple: --target claude,cursor. Highest-priority entry in the resolution chain (--target > apm.yml targets: > auto-detect). Values: copilot, claude, cursor, opencode, codex, gemini, windsurf, agent-skills, all. 'agent-skills' deploys to .agents/skills/ (cross-client). 'all' = copilot+claude+cursor+opencode+codex+gemini+windsurf (excludes agent-skills); combine with 'agent-skills' for both. 'copilot-cowork' is also accepted when the copilot-cowork experimental flag is enabled (run 'apm experimental enable copilot-cowork'). Note: '--target all' on 'apm compile' is deprecated; use 'apm compile --all' instead.",
)
@click.option(
"--allow-insecure",
Expand Down
2 changes: 1 addition & 1 deletion src/apm_cli/commands/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
)


@click.command(help="Run a script with parameters")
@click.command(help="Run a script with parameters (experimental)")
@click.argument("script_name", required=False)
@click.option("--param", "-p", multiple=True, help="Parameter in format name=value")
@click.option("--verbose", "-v", is_flag=True, help="Show detailed output")
Expand Down
2 changes: 1 addition & 1 deletion src/apm_cli/commands/runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
list = builtins.list


@click.group(help="Manage AI runtimes")
@click.group(help="Manage AI runtimes (experimental)")
def runtime():
"""Manage Coding Agent CLI runtime installations and configurations."""
pass
Expand Down
Loading