> For the complete documentation index, see [llms.txt](https://archivedocs.stackstate.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://archivedocs.stackstate.com/5.1/develop/developer-guides/stackpack/stackpack_resources.md).

# Resources in a StackPack

The resources reside in `<your-stackpack>/src/main/stackpack/resources` directory. This folder has files to be used mostly as display assets in the StackState UI as steps during the StackPack installation process. Some of the files are required for a StackPack to be displayed correctly:

* `logo.png` - an image file with the StackPack logo that's displayed on the StackPacks page in StackState.
* `overview.md` - a Markdown text file with general information about the StackPack.
* `configuration.md` - a Markdown text file with information about how to configure a StackPack instance.

  This is a piece of information the user is going to see in the first step of the installation process.
* `waitingfordata.md` - a Markdown text file with information about user actions required for the StackPack instance to start receiving data.

  This is a piece of information the user is going to see in the second step of the installation process.
* `enabled.md` - a Markdown text file explaining that the StackPack instance has been installed successfully.

  Should also contain information on how to uninstall the instance.

  This is a piece of information the user is going to see in the final step of the installation process.
* `detailed-overview.md` - a Markdown text file with general information the user needs to know to use a StackPack instance, for example, prerequisites or access rights. To achieve a two-column layout, there is a special `[comment]: # (split)` tag. Inserting this tag in a particular place will cause the text to be split into two columns in this place.
* `provisioning.md` - a Markdown text file with a piece of information the user is going to see during the installation process.
* `deprovisioning.md` - a Markdown text file with a piece of information the user is going to see during the uninstallation process.
* `error.md` - a Markdown text file with an error message to show when an error occurred during provisioning of the StackPack.


---

# 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, and the optional `goal` query parameter:

```
GET https://archivedocs.stackstate.com/5.1/develop/developer-guides/stackpack/stackpack_resources.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
