# Projects

A **project** groups agents, skills, file stores, and memory stores for one product or feature inside a [pod](/concepts/pods).

## Create a project

```ts
const { data: project } = await client.pod.project.create({
  path: { podId: pod.id },
  body: { name: "Support bot", slug: "support-bot" },
})
```

Projects are nested under pods in the SDK — the top-level
`client.pod.project` namespace covers project CRUD, and further nested
namespaces (`client.pod.project.agent`, `.fileStore`, `.memoryStore`,
`.routine`) link resources into the project.

## Related

- **[Agents](/concepts/agents)** and **[Skills](/concepts/skills)** —
  what you put inside a project.
- **API reference:** [Projects](/api-reference#tag/project)