Skip to main content

CLI Commands

help

The help command provides information about other commands available in the Cogni+ CLI.

Usage

cogni help [OPTIONS] [COMMAND]

Description

The help command shows detailed help for a specific command or lists all available commands with brief descriptions. This is useful for understanding the capabilities of the Cogni+ CLI and how to use specific commands.
  • If COMMAND is provided, it shows detailed help for that command
  • If no command is specified, it lists all available commands grouped by category

Options

OptionDescription
--helpShow help message for the help command itself

Arguments

ArgumentDescription
COMMAND(Optional) The command to get detailed help for

Examples

# List all available commands
cogni help

# Get detailed help for the login command
cogni help login

# Get detailed help for the publish command
cogni help publish

Output

When run without arguments, the help command groups commands by category:
  • Authentication: Commands related to logging in and out
  • Core: Basic CLI functionality like version and updates
  • Server Management: Commands for managing MCP servers
  • Resources: Commands for managing resources and logs
  • Setup: Commands for initial configuration
  • Help: Help system commands
Each command is displayed with a brief description, making it easy to find the command you need. All Cogni+ CLI commands can be explored using the help command.

Tips

  • Use cogni help to get an overview of available commands
  • Use cogni help <command> to get detailed usage instructions for a specific command
  • Most commands also support the --help flag directly (e.g., cogni login --help)