blob: 68a0cbdce81a826e981af2d12e89501e9f37c3b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
Start by defining a meta section:
```yaml
meta:
symbol: 🤖
name: Nano Bot Name
author: Your Name
description: A helpful assistant.
```
You can also add version and license information:
```yaml
meta:
version: 1.0.0
license: CC0-1.0
```
Then, add a behavior section:
```yaml
behaviors:
interaction:
directive: You are a helpful assistant.
```
|