# Pack Structure

It is now **CRUCIAL** that you have this structure — it’s needed to support item models as Java packs do not specify what material item models are mapped to. This also means for vanilla packs that don't use plugins, item models are NOT supported by Kafal.

```
pack/
├─ assets/
│  └─ ... (vanilla/other assets)
├─ nexo/
│  └─ items/
│     └─ ... (your Nexo items)
└─ ... (other pack files)


pack/
├─ assets/
│  └─ ... (vanilla/other assets)
├─ oraxen/
│  └─ items/
│     └─ ... (your Oraxen items)
└─ ... (other pack files)


pack/
├─ assets/
│  └─ ... (vanilla/other assets)
├─ itemsadder/
│  ├─ contents/
│  │  └─ ... (ItemsAdder namespaces + assets)
│  └─ storage/
│     └─ ... (item_ids_cache.yml)
└─ ... (other pack files)

```


---

# 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.pogmc.net/kafal/pack-structure.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.
