/** * Public entry for the Sitecore **Agentic Studio** area. * * Agentic Studio is Sitecore AI's agent builder. This area seeds agents, * triggers runs, and reads the catalogs they draw on. Its BFF is gated by * a browser session cookie, so auth runs through the `session/` seam * rather than scai's usual client-credentials OAuth — a deliberate * stopgap. Every unverified write in this area is gated behind * `--unverified`. * * A session comes from one of three sources, all converging on the same * `AgentsSession`: * - `loginAgents` — Playwright browser login (the CLI path) * - `agentsSessionFromCookie`— direct cookie injection (embedded UI) * - a bearer token — once Sitecore opens the product up */ export * from "./session/index.js"; export { agentsRequest, agentsStream } from "./api/request.js"; export * from "./api/schema.js"; export * from "./api/agents.js"; export * from "./api/skills.js"; export * from "./api/tools.js"; export * from "./api/widgets.js"; export * from "./api/custom-mcps.js"; export * from "./api/schemas.js"; export * from "./api/html-templates.js"; export * from "./api/spaces.js"; export * from "./api/runs.js"; export * from "./api/catalog.js"; export * from "./recipe/index.js"; export { resolveAgentsSession, type ResolveAgentsSessionOptions, type ResolvedAgentsSession, } from "./client.js";