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

# Projects

> The project type represents a shared workspace that groups agents, knowledge, and sessions for a team.

export const EditionBadge = ({edition}) => <Tooltip tip={edition === "ee" ? "Requires an Enterprise Edition license." : "Available in the Community Edition."}>
    <span style={{
  fontFamily: "RobotoMono, monospace",
  fontSize: "12px",
  textTransform: "uppercase",
  letterSpacing: "0.04em",
  border: "1px solid var(--imp-hair-light)",
  padding: "2px 8px"
}}>
      {edition === "ee" ? "Enterprise" : "Community"}
    </span>
  </Tooltip>;

A `project` is a scoped collaboration space. Users work within projects to keep conversations, knowledge items, and agent configurations organised together. See [Projects overview](/user-guide/projects/overview) for product context.

```graphql theme={null}
type project {
  name: String!
  description: String
  image: String
  project_items: JSON
  custom_instructions: String
  last_processed_at: Date
  embeddings_updated_at: Date
  rights_mode: String
  created_by: Float!
  createdAt: Date
  updatedAt: Date
  budget: JSON
  id: ID!
  RBAC: RBACData
}
```

## Field notes

| Field                   | Notes                                                                                   |
| ----------------------- | --------------------------------------------------------------------------------------- |
| `project_items`         | JSON array of knowledge items (context references, files) attached to this project.     |
| `custom_instructions`   | Markdown text injected as additional context into every session opened in this project. |
| `rights_mode`           | `"public"` or `"private"`; private projects are scoped via `RBAC`.                      |
| `created_by`            | Numeric ID of the user who created this project.                                        |
| `budget`                | JSON budget envelope for cost limits scoped to this project.                            |
| `last_processed_at`     | Timestamp of the last knowledge-embedding pass over this record.                        |
| `embeddings_updated_at` | Timestamp when vector embeddings were last regenerated.                                 |

## Example query

```graphql theme={null}
query {
  projectsPagination(
    limit: 10
    filters: [{ rights_mode: { eq: "public" } }]
    sort: { field: "name", direction: ASC }
  ) {
    items {
      id
      name
      description
      created_by
      createdAt
    }
    pageInfo {
      currentPage
      hasNextPage
    }
  }
}
```
