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
16 changes: 16 additions & 0 deletions src/agentops/cli/_planned.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
"""Shared helper for planned (stub) commands."""

from __future__ import annotations

import typer


def _planned_command(command_name: str) -> None:
"""Print a message and exit with code 1 for unimplemented commands."""
typer.echo(
"This command is planned but not implemented in this release:\n"
f" {command_name}\n"
"Please use the currently available commands"
" (`init`, `eval run`, `eval compare`, `report`, `config cicd`) for now."
)
raise typer.Exit(code=1)
Loading
Loading