/** * `scai agents …` — Sitecore Agentic Studio. * * The command tree is organized by resource: `agent`, `space`, `skill`, * `widget`, `schema`, `mcp`, `html-template`, and `tool` are each a * subcommand group, plus session management (`login` / `logout` / * `status`) and the declarative `sync` path. * * agents * login | logout | status * agent {list, get, create, update, delete, duplicate, run} * space {get, artifacts, update} * skill {list, get, create, update, delete} * widget {list, get, create, update, delete} * schema {list, get, create, update, delete*} * mcp {list, get, create, update*, delete} * html-template {list, get, create, update*, delete*} * tool {list} * sync {pull, diff, push} * * Write support was verified live 2026-05-17 (agentic-studio-euw). `agent`, * `skill`, and `widget` have full CRUD; `schema` adds `update` (a re-POST * upsert); `mcp` adds `delete`. The starred ops (*) are UNVERIFIED — they * return 405/404 and stay gated behind `--unverified`. */ import { Command } from "commander"; export declare const createAgentsCommand: () => Command;