> For the complete documentation index, see [llms.txt](https://docs.mongenscave.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mongenscave.com/standalone-apis/mc-smartslotting.md).

# mc-SmartSlotting

## Border

```yaml
item:
  slot: "border" # The GUI framework
  # etc...
```

## Chess

```yaml
item:
  slot: "chess:white" # Checkerboard sample
  # etc...
```

```yaml
item:
  slot: "chess:black" # Checkerboard sample
  # etc...
```

## Corners

```yaml
item:
  slot: "corners" # The 4 corners
  # etc...
```

## Center

```yaml
item:
  slot: "center" # The centre of the GUI
  # etc...
```

## Multiple Slot

```yaml
item:
  slot: "0,1,2,3,4"
  # etc...
```

## Range

```yaml
item:
  slot: "0-8" # From X to Y
  # etc...
```

## Grid

```yaml
item:
  slot: "grid:3x1" # 3x1 Grid
  # etc...
```

## Offset

```yaml
item:
  slot: "grid:3x2:offset:12" # 3 columns x 2 rows, starting from slot 12
  # etc...
```

## Edges

```yaml
item:
  slot: "edges" # Interior area without frame
  # etc...
```

## Directions

```yaml
item:
  slot: "top" # Top row
  # etc...
```

```yaml
item:
  slot: "bottom" # Bottom row
  # etc...
```

```yaml
item:
  slot: "left" # Left column
  # etc...
```

```yaml
item:
  slot: "right" # Right column
  # etc...
```

## Fill

```yaml
item:
  slot: "fill" # All free areas
  # etc...
```

## Priority

```yaml
item:
  slot: "border"
  priority: 1
  # etc...
item2:
  slot: "fill"
  priority: -1 # last time
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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.mongenscave.com/standalone-apis/mc-smartslotting.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.
