# Command Help

Help is integrated at every level in CommandBox. You can help global help, namespace help, or command help at any time.

## Global Help

To get an overall list of all the commands you have available to run, simply type `help` at the shell.

<figure><img src="https://content.gitbook.com/content/m6z7p10Se2bBG4pppKEM/blobs/TywT0m8yVLqSi6BsyYsw/global_help.png" alt="CommandBox Global Help"><figcaption><p>Global Help</p></figcaption></figure>

## Namespace Help

Next, drill down and get help on a specific namespace like `server`.

<figure><img src="https://content.gitbook.com/content/m6z7p10Se2bBG4pppKEM/blobs/nrTR0dh8DKgDpDxmASVZ/namespace_help.png" alt="CommandBox Namespace Help"><figcaption><p>Namespace Help</p></figcaption></figure>

## Command Help

And finally, get help on a single command such as `server stop`. We can see the command is also aliased as just `stop` as well as all the possible parameters and their types along with a few sample ways to call the command.

<figure><img src="https://content.gitbook.com/content/m6z7p10Se2bBG4pppKEM/blobs/Tz9tk66LnvrGMotkKMEr/command_help.png" alt="Server Stop help information"><figcaption><p>Command Help</p></figcaption></figure>

## HTML Command API Docs

For a full list of all the commands that ship with CommandBox as well as all their paramaters and samples, please visit our [Command API docs](http://apidocs.ortussolutions.com/commandbox/current) which are auto-generated each build. This is the same information available to you via the `help` command, but in a searchable format you can browse outside of the CLI.

* <http://apidocs.ortussolutions.com/commandbox/current>

## System Logs

Sometimes, you need to view the CommandBox log file. Maybe it is to debug a command you are writing or to [submit a crash report](https://ortussolutions.atlassian.net/secure/RapidBoard.jspa?rapidView=24\&projectKey=COMMANDBOX). The `system-log` command outputs the path to the CommandBox log file. You can use it creatively by piping its output in to other commands:

```bash
CommandBox> system-log | open
CommandBox> system-log | cat
CommandBox> system-log | tail
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://commandbox.ortusbooks.com/usage/command-help.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
