# Sections

## Effect sections

Some effects, like SkBee's `register recipe` have section versions. These sections will open an area that can be used to configure them. These sections are more spread out; thus easier to read and parse, making them far superior.

An example of SkBee's `register recipe` effect versus the section:

{% code overflow="wrap" lineNumbers="true" %}

```python
#: Effect
register shaped recipe for (1 of cake named "Chocolate Cake") using (milk bucket), (milk bucket), (milk bucket), sugar, egg, sugar, wheat, wheat, wheat with id "yummy:chocolate_cake"

#: Section
register shaped recipe:
  id: "yummy:chocolate_cake"
  result: (1 of cake named "Chocolate Cake")
  shape: "mmm", "ses", "www"
  ingredients:
    set ingredient of "m" to (milk bucket)
    set ingredient of "s" to sugar
    set ingredient of "e" to egg
    set ingredient of "w" to wheat
```

{% endcode %}

***


---

# 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://x8ight.gitbook.io/syntask/fundamentals/sections.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.
