# Introduction

## Command structure breakdown

Commands within the CLI adhere to the following format:

```bash
cyphor <command> <sub-command> [action] <arguments> [--optional parameters]
```

* The base call to the `cyphor` CLI.
* **Primary command (`<command>`)**: Targets a specific area of functionality.&#x20;
* **Sub-Command (`<sub-command>`)**: Narrows down the operation to a specific area or task.
* **Action (`[action]`)**: The operation to execute on the chosen feature.
* **Mandatory options or parameters (`<arguments>`)**: Required settings that must be provided in the stated order.
* **Optional parameters (`[--options]`)**: Additional parameters that might not be crucial for every operation. These are prefixed with `--` and can be specified in any sequence after mandatory arguments.


---

# 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://docs.cyphor.net/cli-tool/introduction.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.
