# Project

Your Hypertune project contains your:

* [Schema](/concepts/schema.md)
  * Flag definitions
  * Input types for flag targeting logic, e.g. `User`, `Organization`, `Environment`
  * [Event types](/concepts/event-types.md), e.g. `SignUpEvent`, `PurchaseEvent`
* [Logic](/concepts/logic.md)
* [Experiments](/concepts/experiments.md)
  * [A/B/n tests](/concepts/a-b-n-tests.md)
  * [Multivariate tests](/concepts/multivariate-tests.md)
  * [AI loops](/concepts/ai-loops.md)
  * [Progressive rollouts](/concepts/progressive-rollouts.md)
* [Analytics dashboards](/concepts/analytics-views.md)
  * [Funnels](/concepts/funnels.md)
  * [Tables](/concepts/tables.md)

All of these are saved together as a single commit in the [Git-based version history](/concepts/git-based-version-control.md) for your project.

A new commit is created on your main branch any time you save new changes.

Hypertune uses the latest commit on your main branch when you consume your flags.

You consume your flags via:

* One of the SDKs
* The [GraphQL API](/concepts/graphql-api.md)


---

# 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.hypertune.com/concepts/project.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.
