# Comments

### What is a Comment?

A **comment** is a line in an automation that is skipped during execution. Comments are used to add notes and annotations. Additionally, they can be used to disable a part of your automation temporarily.

### How to Add a Comment

To add a comment, use the `#` symbol at the beginning of a line. For example:

```undefined
# This is a comment and will be ignored
say "Welcome to Kognitos!"
```

### ⚠️ Single-Line Comments Only

Currently, the platform only supports single-line comments. If you want to add multiple lines of comments, you’ll need to use the `#` symbol on each line. For example:

```undefined
# This is the first line of a multi-line comment
# This is the second line of the comment
# This is the third line of the comment
```


---

# 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.kognitos.com/legacy/legacy-experience/writing-automations/automation-basics/comments.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.
