Projects
A project groups agents, skills, file stores, and memory stores for one product or feature inside a pod.
Create a project
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.