# 000desc.txt

If `000desc.txt` is created in the project folder, TWELITE STAGE APP will display its contents in the list of project folders.

![Example of display with 000desc.txt](/files/j36Cre1NYiCbkTvrRLja)

The file is written in UTF-8. There are two types of formats.

### Format 1

```
Turn on LED when switch is pressed
act4 runs an act that turns on an LED when a switch connected to the TWELITE DIP is pressed.
https://mono-wireless.com/jp/products/act/index.html
```

* The first line is the title line.
* The second and subsequent lines are descriptions of the details.
* If the last line starts with http, it is a link to a website.

### Format 2

```
[JAPANESE]
TITLE=Actのテンプレート
DESC=中身が何もない setup(), loop() のみのファイルです。
新しく Act を記述するのに利用してください。
URL=jp/MWX/content/act_samples/README.html
[ENGLISH]
TITLE=Act empty template
DESC=This act file only contains empty setup() and loop(),
which is intended to write a new Act. 
URL=en/MWX/content/act_samples/README.html
```

The format is like an ini file. The item name starting at the beginning of the line and up to the `=` character is the item definition, and the rest is the content of the item.

| Item Definition           | Details                                                              |
| ------------------------- | -------------------------------------------------------------------- |
| `[JAPANESE]`, `[ENGLISH]` | block delimiter                                                      |
| title line                | description of details.                                              |
| `DESC=`                   | description of details. Can be multiple lines including line breaks. |
| `URL=`                    | Link to a website or file                                            |

#### About URL specification

| `URL=`                          | Details                                                                                                                                  |
| ------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| starting with `https:`, `http:` | open that address                                                                                                                        |
| other than that                 | relative folder starting with `{MWSDK_ROOT}/docs/`. If you specify `a/b/c.html`, it will be converted to `{MWSDK_ROOT}/docs/a/b/c.html`. |


---

# 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://stage.twelite.info/eng/misc/000desc.txt.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.
