> ## Documentation Index
> Fetch the complete documentation index at: https://docs.athina.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Organize Prompts

> You can organize your prompts in Athina's Prompt Management System

Other than naming your prompts well, you can also use the following features to organize your prompts:

* **Favorites**: You can mark prompts as favorites to pin them to the top of the sidebar for easy access.

* **Folders**: You can create folders to organize your prompts. *Currently, folders cannot be nested.*

* **Emojis**: You can add emojis to your prompts to make them easier to identify in the sidebar.

<div style={{ position: "relative", paddingBottom: "56.25%", height: 0 }}>
  <iframe
    src="https://jumpshare.com/embed/PctLmbqmULCzIEoPOBHQ"
    frameborder="0"
    webkitallowfullscreen
    mozallowfullscreen
    allowfullscreen
    style={{
  position: "absolute",
  top: 0,
  left: 0,
  width: "100%",
  height: "100%",
}}
  />
</div>

## Organize Prompts Programmatically

You can also organize your prompts programmatically using the Athina API.

#### Add to folder

<Tabs>
  <Tab title="python">
    ```python
    Slug.add_to_directory(slug="test_slug", directory="production_prompts")
    ```
  </Tab>
</Tabs>

#### Mark as Favorite

<Tabs>
  <Tab title="python">
    ```python
    slug = Slug.favorite_slug(slug="test_slug", starred=False)
    ```
  </Tab>
</Tabs>

#### Set emoji

<Tabs>
  <Tab title="python">
    ```python
    slug = Slug.set_emoji(slug="test_slug", emoji="https://emojicdn.elk.sh/star")
    ```
  </Tab>
</Tabs>
