> For the complete documentation index, see [llms.txt](https://docs.atom.codes/sprout/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.atom.codes/sprout/groups/hermetic.md).

# Hermetic

{% hint style="info" %}
You can easily import group from the <mark style="color:yellow;">`hermetic`</mark> group by including the following import statement in your code

```go
import "github.com/go-sprout/sprout/group/hermetic"
```

{% endhint %}

### List of registries

* [**checksum**](https://github.com/go-sprout/sprout/blob/main/docs/groups/checksum.md): Tools to generate and verify checksums for data integrity.
* [**conversion**](https://github.com/go-sprout/sprout/blob/main/docs/groups/conversion.md): Functions to convert between different data types within templates.
* [**encoding**](https://github.com/go-sprout/sprout/blob/main/docs/groups/encoding.md): Methods for encoding and decoding data in various formats.
* [**filesystem**](https://github.com/go-sprout/sprout/blob/main/docs/groups/filesystem.md): Functions for interacting with the file system.
* [**maps**](https://github.com/go-sprout/sprout/blob/main/docs/groups/maps.md): Tools to manipulate and interact with map data structures.
* [**numeric**](https://github.com/go-sprout/sprout/blob/main/docs/groups/numeric.md): Utilities for numerical operations and calculations.
* [**reflect**](https://github.com/go-sprout/sprout/blob/main/docs/groups/reflect.md): Tools to inspect and manipulate data types using reflection.
* [**regexp**](https://github.com/go-sprout/sprout/blob/main/docs/groups/regexp.md): Regular expression functions for pattern matching and string manipulation.
* [**semver**](https://github.com/go-sprout/sprout/blob/main/docs/groups/semver.md): Functions to handle semantic versioning and comparison.
* [**slices**](https://github.com/go-sprout/sprout/blob/main/docs/groups/slices.md): Utilities for slice operations, including filtering, sorting, and transforming.
* [**std**](https://github.com/go-sprout/sprout/blob/main/docs/groups/std.md): Standard functions for common operations.
* [**strings**](https://github.com/go-sprout/sprout/blob/main/docs/groups/strings.md): Functions for string manipulation, including formatting, splitting, and joining.
* [**time**](https://github.com/go-sprout/sprout/blob/main/docs/groups/time.md): Tools to handle dates, times, and time-related calculations.
* [**uniqueid**](https://github.com/go-sprout/sprout/blob/main/docs/groups/uniqueid.md): Functions to generate unique identifiers, such as UUIDs.


---

# 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://docs.atom.codes/sprout/groups/hermetic.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.
