> For the complete documentation index, see [llms.txt](https://bugowl.gitbook.io/bugowl-ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bugowl.gitbook.io/bugowl-ai/core-concepts/projects.md).

# Projects

Projects are the foundation of your testing organization in BugOwl AI. Think of a project as a container that holds all your testing assets for a specific application or website.

#### What is a Project?

A project contains:

* **Test Cases**: Individual test scenarios
* **Test Suites**: Grouped collections of test cases
* **Environments**: Different deployment stages (dev, staging, production)
* **Test Data**: Variables and datasets
* **Team Members**: Collaborators with access

#### When to Create a Project

Create a new project for:

* Different applications or websites
* Separate product lines
* Different teams or departments

#### Project Structure Example

```
My E-commerce Website
├── Environments (dev, staging, production)
├── Test Suites (Login, Checkout, Registration)
├── Test Cases (Valid Login, Invalid Login, etc.)
└── Test Data (User Credentials, Product Info)
```

#### Getting Started

1. Click "Projects" → "Create New Project"
2. Enter project name and description
3. Add team members and environments
4. Start creating test cases

Projects help keep your testing efforts organized and manageable while enabling team collaboration.


---

# 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://bugowl.gitbook.io/bugowl-ai/core-concepts/projects.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.
