@sitecoreai-labs/sitecoreai-cli 0.0.4 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +146 -55
- package/README.md +372 -325
- package/dist/agents/api/agents.d.ts +27 -0
- package/dist/agents/api/agents.js +70 -0
- package/dist/agents/api/catalog.d.ts +8 -0
- package/dist/agents/api/catalog.js +33 -0
- package/dist/agents/api/custom-mcps.d.ts +26 -0
- package/dist/agents/api/custom-mcps.js +53 -0
- package/dist/agents/api/html-templates.d.ts +35 -0
- package/dist/agents/api/html-templates.js +116 -0
- package/dist/agents/api/request.d.ts +28 -0
- package/dist/agents/api/request.js +207 -0
- package/dist/agents/api/runs.d.ts +31 -0
- package/dist/agents/api/runs.js +82 -0
- package/dist/agents/api/schema.d.ts +182 -0
- package/dist/agents/api/schema.js +10 -0
- package/dist/agents/api/schemas.d.ts +37 -0
- package/dist/agents/api/schemas.js +95 -0
- package/dist/agents/api/skills.d.ts +25 -0
- package/dist/agents/api/skills.js +55 -0
- package/dist/agents/api/spaces.d.ts +34 -0
- package/dist/agents/api/spaces.js +72 -0
- package/dist/agents/api/tools.d.ts +4 -0
- package/dist/agents/api/tools.js +18 -0
- package/dist/agents/api/widgets.d.ts +32 -0
- package/dist/agents/api/widgets.js +89 -0
- package/dist/agents/client.d.ts +18 -0
- package/dist/agents/client.js +28 -0
- package/dist/agents/index.d.ts +31 -0
- package/dist/agents/index.js +51 -0
- package/dist/agents/recipe/agent.diff.d.ts +4 -0
- package/dist/agents/recipe/agent.diff.js +55 -0
- package/dist/agents/recipe/agent.kind.d.ts +12 -0
- package/dist/agents/recipe/agent.kind.js +107 -0
- package/dist/agents/recipe/agent.schema.d.ts +26 -0
- package/dist/agents/recipe/agent.schema.js +42 -0
- package/dist/agents/recipe/client.d.ts +4 -0
- package/dist/agents/recipe/client.js +15 -0
- package/dist/agents/recipe/converge.d.ts +11 -0
- package/dist/agents/recipe/converge.js +32 -0
- package/dist/agents/recipe/custom-mcp.kind.d.ts +4 -0
- package/dist/agents/recipe/custom-mcp.kind.js +42 -0
- package/dist/agents/recipe/custom-mcp.schema.d.ts +11 -0
- package/dist/agents/recipe/custom-mcp.schema.js +15 -0
- package/dist/agents/recipe/html-template.kind.d.ts +4 -0
- package/dist/agents/recipe/html-template.kind.js +50 -0
- package/dist/agents/recipe/html-template.schema.d.ts +13 -0
- package/dist/agents/recipe/html-template.schema.js +17 -0
- package/dist/agents/recipe/index.d.ts +43 -0
- package/dist/agents/recipe/index.js +81 -0
- package/dist/agents/recipe/schema.kind.d.ts +4 -0
- package/dist/agents/recipe/schema.kind.js +50 -0
- package/dist/agents/recipe/schema.schema.d.ts +15 -0
- package/dist/agents/recipe/schema.schema.js +21 -0
- package/dist/agents/recipe/skill.kind.d.ts +4 -0
- package/dist/agents/recipe/skill.kind.js +48 -0
- package/dist/agents/recipe/skill.schema.d.ts +14 -0
- package/dist/agents/recipe/skill.schema.js +18 -0
- package/dist/agents/recipe/widget.kind.d.ts +4 -0
- package/dist/agents/recipe/widget.kind.js +49 -0
- package/dist/agents/recipe/widget.schema.d.ts +20 -0
- package/dist/agents/recipe/widget.schema.js +23 -0
- package/dist/agents/session/index.d.ts +50 -0
- package/dist/agents/session/index.js +127 -0
- package/dist/agents/session/playwright-login.d.ts +11 -0
- package/dist/agents/session/playwright-login.js +169 -0
- package/dist/agents/session/types.d.ts +72 -0
- package/dist/agents/session/types.js +26 -0
- package/dist/agents/tasks/agent.d.ts +27 -0
- package/dist/agents/tasks/agent.js +183 -0
- package/dist/agents/tasks/index.d.ts +14 -0
- package/dist/agents/tasks/index.js +30 -0
- package/dist/agents/tasks/resources.d.ts +39 -0
- package/dist/agents/tasks/resources.js +219 -0
- package/dist/agents/tasks/session.d.ts +6 -0
- package/dist/agents/tasks/session.js +63 -0
- package/dist/agents/tasks/shared.d.ts +38 -0
- package/dist/agents/tasks/shared.js +72 -0
- package/dist/agents/tasks/space.d.ts +12 -0
- package/dist/agents/tasks/space.js +55 -0
- package/dist/brand/api/auth.d.ts +58 -0
- package/dist/brand/api/auth.js +141 -0
- package/dist/brand/api/client.d.ts +40 -0
- package/dist/brand/api/client.js +83 -0
- package/dist/brand/api/types.d.ts +119 -0
- package/dist/brand/api/types.js +9 -0
- package/dist/brand/credential.d.ts +55 -0
- package/dist/brand/credential.js +87 -0
- package/dist/brand/documents/list.d.ts +85 -0
- package/dist/brand/documents/list.js +53 -0
- package/dist/brand/documents/upload.d.ts +113 -0
- package/dist/brand/documents/upload.js +106 -0
- package/dist/brand/index.d.ts +33 -0
- package/dist/brand/index.js +76 -0
- package/dist/brand/kits/create.d.ts +58 -0
- package/dist/brand/kits/create.js +68 -0
- package/dist/brand/kits/list.d.ts +53 -0
- package/dist/brand/kits/list.js +36 -0
- package/dist/brand/kits/sections.d.ts +156 -0
- package/dist/brand/kits/sections.js +80 -0
- package/dist/brand/pipeline/run.d.ts +58 -0
- package/dist/brand/pipeline/run.js +63 -0
- package/dist/brand/recipe/client.d.ts +4 -0
- package/dist/brand/recipe/client.js +24 -0
- package/dist/brand/recipe/diff.d.ts +4 -0
- package/dist/brand/recipe/diff.js +74 -0
- package/dist/brand/recipe/index.d.ts +10 -0
- package/dist/brand/recipe/index.js +20 -0
- package/dist/brand/recipe/kind.d.ts +4 -0
- package/dist/brand/recipe/kind.js +0 -0
- package/dist/brand/recipe/schema.d.ts +54 -0
- package/dist/brand/recipe/schema.js +59 -0
- package/dist/brand/review/format-json.d.ts +33 -0
- package/dist/brand/review/format-json.js +36 -0
- package/dist/brand/review/format-sarif.d.ts +64 -0
- package/dist/brand/review/format-sarif.js +77 -0
- package/dist/brand/review/format-text.d.ts +24 -0
- package/dist/brand/review/format-text.js +60 -0
- package/dist/brand/review/generate.d.ts +37 -0
- package/dist/brand/review/generate.js +146 -0
- package/dist/brand/review/outcomes.d.ts +43 -0
- package/dist/brand/review/outcomes.js +58 -0
- package/dist/brand/seed.d.ts +81 -0
- package/dist/brand/seed.js +151 -0
- package/dist/brand/tasks/login.d.ts +37 -0
- package/dist/brand/tasks/login.js +192 -0
- package/dist/brand/tasks/review.d.ts +111 -0
- package/dist/brand/tasks/review.js +310 -0
- package/dist/brief/api/brief-types.d.ts +64 -0
- package/dist/brief/api/brief-types.js +103 -0
- package/dist/brief/api/briefs.d.ts +66 -0
- package/dist/brief/api/briefs.js +58 -0
- package/dist/brief/api/comments.d.ts +43 -0
- package/dist/brief/api/comments.js +29 -0
- package/dist/brief/api/request.d.ts +5 -0
- package/dist/brief/api/request.js +83 -0
- package/dist/brief/api/schema.d.ts +158 -0
- package/dist/brief/api/schema.js +18 -0
- package/dist/brief/api/tasks.d.ts +41 -0
- package/dist/brief/api/tasks.js +24 -0
- package/dist/brief/api/types.d.ts +17 -0
- package/dist/brief/api/types.js +21 -0
- package/dist/brief/auth.d.ts +44 -0
- package/dist/brief/auth.js +101 -0
- package/dist/brief/client.d.ts +25 -0
- package/dist/brief/client.js +56 -0
- package/dist/brief/index.d.ts +31 -0
- package/dist/brief/index.js +53 -0
- package/dist/brief/recipe/client.d.ts +4 -0
- package/dist/brief/recipe/client.js +52 -0
- package/dist/brief/recipe/diff.d.ts +4 -0
- package/dist/brief/recipe/diff.js +74 -0
- package/dist/brief/recipe/index.d.ts +10 -0
- package/dist/brief/recipe/index.js +23 -0
- package/dist/brief/recipe/kind.d.ts +4 -0
- package/dist/brief/recipe/kind.js +114 -0
- package/dist/brief/recipe/schema.d.ts +152 -0
- package/dist/brief/recipe/schema.js +99 -0
- package/dist/brief/tasks/index.d.ts +128 -0
- package/dist/brief/tasks/index.js +286 -0
- package/dist/campaigns/api/deliverables.d.ts +37 -0
- package/dist/campaigns/api/deliverables.js +30 -0
- package/dist/campaigns/api/projects.d.ts +49 -0
- package/dist/campaigns/api/projects.js +45 -0
- package/dist/campaigns/api/request.d.ts +5 -0
- package/dist/campaigns/api/request.js +119 -0
- package/dist/campaigns/api/schema.d.ts +144 -0
- package/dist/campaigns/api/schema.js +22 -0
- package/dist/campaigns/api/tasks.d.ts +42 -0
- package/dist/campaigns/api/tasks.js +68 -0
- package/dist/campaigns/api/types.d.ts +17 -0
- package/dist/campaigns/api/types.js +27 -0
- package/dist/campaigns/api/users.d.ts +13 -0
- package/dist/campaigns/api/users.js +16 -0
- package/dist/campaigns/auth.d.ts +19 -0
- package/dist/campaigns/auth.js +86 -0
- package/dist/campaigns/client.d.ts +25 -0
- package/dist/campaigns/client.js +48 -0
- package/dist/campaigns/index.d.ts +29 -0
- package/dist/campaigns/index.js +47 -0
- package/dist/campaigns/recipe/client.d.ts +4 -0
- package/dist/campaigns/recipe/client.js +41 -0
- package/dist/campaigns/recipe/diff.d.ts +4 -0
- package/dist/campaigns/recipe/diff.js +119 -0
- package/dist/campaigns/recipe/index.d.ts +10 -0
- package/dist/campaigns/recipe/index.js +19 -0
- package/dist/campaigns/recipe/kind.d.ts +4 -0
- package/dist/campaigns/recipe/kind.js +217 -0
- package/dist/campaigns/recipe/schema.d.ts +79 -0
- package/dist/campaigns/recipe/schema.js +67 -0
- package/dist/campaigns/tasks/index.d.ts +124 -0
- package/dist/campaigns/tasks/index.js +271 -0
- package/dist/cli.d.ts +0 -1
- package/dist/cli.js +84 -63
- package/dist/commands/agents/index.d.ts +28 -0
- package/dist/commands/agents/index.js +289 -0
- package/dist/commands/agents/sync.d.ts +13 -0
- package/dist/commands/agents/sync.js +139 -0
- package/dist/commands/audit/all.d.ts +2 -0
- package/dist/commands/audit/all.js +26 -0
- package/dist/commands/audit/alt-text-missing.d.ts +2 -0
- package/dist/commands/audit/alt-text-missing.js +19 -0
- package/dist/commands/audit/baseline.d.ts +2 -0
- package/dist/commands/audit/baseline.js +75 -0
- package/dist/commands/audit/broken-images.d.ts +2 -0
- package/dist/commands/audit/broken-images.js +25 -0
- package/dist/commands/audit/broken-links.d.ts +2 -0
- package/dist/commands/audit/broken-links.js +18 -0
- package/dist/commands/audit/datasource-missing.d.ts +2 -0
- package/dist/commands/audit/datasource-missing.js +19 -0
- package/dist/commands/audit/dead-templates.d.ts +2 -0
- package/dist/commands/audit/dead-templates.js +18 -0
- package/dist/commands/audit/duplicates.d.ts +2 -0
- package/dist/commands/audit/duplicates.js +21 -0
- package/dist/commands/audit/empty-items.d.ts +2 -0
- package/dist/commands/audit/empty-items.js +19 -0
- package/dist/commands/audit/empty-links.d.ts +2 -0
- package/dist/commands/audit/empty-links.js +25 -0
- package/dist/commands/audit/empty-roles.d.ts +2 -0
- package/dist/commands/audit/empty-roles.js +18 -0
- package/dist/commands/audit/fallback-drift.d.ts +2 -0
- package/dist/commands/audit/fallback-drift.js +22 -0
- package/dist/commands/audit/find-replace.d.ts +2 -0
- package/dist/commands/audit/find-replace.js +27 -0
- package/dist/commands/audit/heavy-templates.d.ts +2 -0
- package/dist/commands/audit/heavy-templates.js +19 -0
- package/dist/commands/audit/history.d.ts +2 -0
- package/dist/commands/audit/history.js +44 -0
- package/dist/commands/audit/index.d.ts +2 -0
- package/dist/commands/audit/index.js +100 -0
- package/dist/commands/audit/language-data.d.ts +2 -0
- package/dist/commands/audit/language-data.js +24 -0
- package/dist/commands/audit/large-fields.d.ts +2 -0
- package/dist/commands/audit/large-fields.js +21 -0
- package/dist/commands/audit/missing-meta.d.ts +2 -0
- package/dist/commands/audit/missing-meta.js +22 -0
- package/dist/commands/audit/orphans.d.ts +2 -0
- package/dist/commands/audit/orphans.js +22 -0
- package/dist/commands/audit/page-design-orphans.d.ts +2 -0
- package/dist/commands/audit/page-design-orphans.js +18 -0
- package/dist/commands/audit/personalization-broken.d.ts +2 -0
- package/dist/commands/audit/personalization-broken.js +18 -0
- package/dist/commands/audit/references.d.ts +2 -0
- package/dist/commands/audit/references.js +27 -0
- package/dist/commands/audit/role-bloat.d.ts +2 -0
- package/dist/commands/audit/role-bloat.js +19 -0
- package/dist/commands/audit/shared.d.ts +7 -0
- package/dist/commands/audit/shared.js +32 -0
- package/dist/commands/audit/site-residue.d.ts +2 -0
- package/dist/commands/audit/site-residue.js +22 -0
- package/dist/commands/audit/slug-conflicts.d.ts +2 -0
- package/dist/commands/audit/slug-conflicts.js +20 -0
- package/dist/commands/audit/stale-content.d.ts +2 -0
- package/dist/commands/audit/stale-content.js +21 -0
- package/dist/commands/audit/stale-users.d.ts +2 -0
- package/dist/commands/audit/stale-users.js +21 -0
- package/dist/commands/audit/stale-workflow.d.ts +2 -0
- package/dist/commands/audit/stale-workflow.js +19 -0
- package/dist/commands/audit/suite.d.ts +2 -0
- package/dist/commands/audit/suite.js +31 -0
- package/dist/commands/audit/template-dependencies.d.ts +2 -0
- package/dist/commands/audit/template-dependencies.js +22 -0
- package/dist/commands/audit/translation-coverage.d.ts +2 -0
- package/dist/commands/audit/translation-coverage.js +22 -0
- package/dist/commands/audit/unused-media.d.ts +2 -0
- package/dist/commands/audit/unused-media.js +21 -0
- package/dist/commands/brand/docs.d.ts +9 -0
- package/dist/commands/brand/docs.js +168 -0
- package/dist/commands/brand/index.d.ts +13 -0
- package/dist/commands/brand/index.js +37 -0
- package/dist/commands/brand/ingest-enrich.d.ts +3 -0
- package/dist/commands/brand/ingest-enrich.js +71 -0
- package/dist/commands/brand/kits.d.ts +18 -0
- package/dist/commands/brand/kits.js +361 -0
- package/dist/commands/brand/review.d.ts +13 -0
- package/dist/commands/brand/review.js +65 -0
- package/dist/commands/brand/seed.d.ts +9 -0
- package/dist/commands/brand/seed.js +136 -0
- package/dist/commands/brand/sync.d.ts +11 -0
- package/dist/commands/brand/sync.js +128 -0
- package/dist/commands/brief/comments.d.ts +11 -0
- package/dist/commands/brief/comments.js +55 -0
- package/dist/commands/brief/delete.d.ts +10 -0
- package/dist/commands/brief/delete.js +40 -0
- package/dist/commands/brief/index.d.ts +19 -0
- package/dist/commands/brief/index.js +53 -0
- package/dist/commands/brief/list.d.ts +2 -0
- package/dist/commands/brief/list.js +19 -0
- package/dist/commands/brief/set-status.d.ts +10 -0
- package/dist/commands/brief/set-status.js +33 -0
- package/dist/commands/brief/show.d.ts +2 -0
- package/dist/commands/brief/show.js +19 -0
- package/dist/commands/brief/sync.d.ts +12 -0
- package/dist/commands/brief/sync.js +121 -0
- package/dist/commands/brief/todos.d.ts +9 -0
- package/dist/commands/brief/todos.js +28 -0
- package/dist/commands/brief/types.d.ts +16 -0
- package/dist/commands/brief/types.js +129 -0
- package/dist/commands/campaign/index.d.ts +2 -0
- package/dist/commands/campaign/index.js +309 -0
- package/dist/commands/campaign/sync.d.ts +12 -0
- package/dist/commands/campaign/sync.js +121 -0
- package/dist/commands/cleanup/archive.d.ts +2 -0
- package/dist/commands/cleanup/archive.js +21 -0
- package/dist/commands/cleanup/dead-templates.d.ts +2 -0
- package/dist/commands/cleanup/dead-templates.js +21 -0
- package/dist/commands/cleanup/duplicates.d.ts +2 -0
- package/dist/commands/cleanup/duplicates.js +49 -0
- package/dist/commands/cleanup/empty-folders.d.ts +2 -0
- package/dist/commands/cleanup/empty-folders.js +18 -0
- package/dist/commands/cleanup/field-set.d.ts +2 -0
- package/dist/commands/cleanup/field-set.js +44 -0
- package/dist/commands/cleanup/find-replace.d.ts +2 -0
- package/dist/commands/cleanup/find-replace.js +35 -0
- package/dist/commands/cleanup/index.d.ts +2 -0
- package/dist/commands/cleanup/index.js +48 -0
- package/dist/commands/cleanup/language-versions.d.ts +2 -0
- package/dist/commands/cleanup/language-versions.js +25 -0
- package/dist/commands/cleanup/rename.d.ts +2 -0
- package/dist/commands/cleanup/rename.js +32 -0
- package/dist/commands/cleanup/roles.d.ts +2 -0
- package/dist/commands/cleanup/roles.js +20 -0
- package/dist/commands/cleanup/shared.d.ts +2 -0
- package/dist/commands/cleanup/shared.js +15 -0
- package/dist/commands/cleanup/site-residue.d.ts +2 -0
- package/dist/commands/cleanup/site-residue.js +32 -0
- package/dist/commands/cleanup/slug-conflicts.d.ts +2 -0
- package/dist/commands/cleanup/slug-conflicts.js +54 -0
- package/dist/commands/cleanup/subtree.d.ts +2 -0
- package/dist/commands/cleanup/subtree.js +25 -0
- package/dist/commands/cleanup/users.d.ts +2 -0
- package/dist/commands/cleanup/users.js +23 -0
- package/dist/commands/cleanup/versions.d.ts +2 -0
- package/dist/commands/cleanup/versions.js +42 -0
- package/dist/commands/cleanup/workflow.d.ts +2 -0
- package/dist/commands/cleanup/workflow.js +40 -0
- package/dist/commands/config.d.ts +0 -1
- package/dist/commands/config.js +3 -3
- package/dist/commands/content/index.d.ts +2 -0
- package/dist/commands/content/index.js +11 -0
- package/dist/commands/content/version/index.d.ts +2 -0
- package/dist/commands/content/version/index.js +19 -0
- package/dist/commands/content/version/inspect.d.ts +2 -0
- package/dist/commands/content/version/inspect.js +22 -0
- package/dist/commands/content/version/set-never-publish.d.ts +2 -0
- package/dist/commands/content/version/set-never-publish.js +40 -0
- package/dist/commands/content/version/set-validity.d.ts +2 -0
- package/dist/commands/content/version/set-validity.js +30 -0
- package/dist/commands/deploy/deployments.d.ts +0 -1
- package/dist/commands/deploy/deployments.js +9 -9
- package/dist/commands/deploy/editing-host.d.ts +0 -1
- package/dist/commands/deploy/editing-host.js +25 -13
- package/dist/commands/deploy/environments/deployments.d.ts +0 -1
- package/dist/commands/deploy/environments/deployments.js +3 -3
- package/dist/commands/deploy/environments/index.d.ts +0 -1
- package/dist/commands/deploy/environments/index.js +1 -0
- package/dist/commands/deploy/environments/mutations.d.ts +0 -1
- package/dist/commands/deploy/environments/mutations.js +18 -17
- package/dist/commands/deploy/environments/queries.d.ts +1 -1
- package/dist/commands/deploy/environments/queries.js +29 -8
- package/dist/commands/deploy/environments/variables.d.ts +0 -1
- package/dist/commands/deploy/environments/variables.js +9 -8
- package/dist/commands/deploy/environments.d.ts +0 -1
- package/dist/commands/deploy/index.d.ts +0 -1
- package/dist/commands/deploy/index.js +1 -1
- package/dist/commands/deploy/logs.d.ts +0 -1
- package/dist/commands/deploy/logs.js +4 -4
- package/dist/commands/deploy/organizations.d.ts +0 -1
- package/dist/commands/deploy/organizations.js +5 -5
- package/dist/commands/deploy/projects.d.ts +0 -1
- package/dist/commands/deploy/projects.js +32 -20
- package/dist/commands/deploy/shared.d.ts +0 -1
- package/dist/commands/deploy/shared.js +1 -0
- package/dist/commands/deploy/site.d.ts +2 -3
- package/dist/commands/deploy/site.js +6 -5
- package/dist/commands/deploy/source-control.d.ts +0 -1
- package/dist/commands/deploy/source-control.js +13 -13
- package/dist/commands/deploy.d.ts +0 -1
- package/dist/commands/explain/index.d.ts +14 -0
- package/dist/commands/explain/index.js +25 -0
- package/dist/commands/explain/orphan-site.d.ts +11 -0
- package/dist/commands/explain/orphan-site.js +36 -0
- package/dist/commands/explain/why-blocked.d.ts +13 -0
- package/dist/commands/explain/why-blocked.js +42 -0
- package/dist/commands/health.d.ts +2 -0
- package/dist/commands/health.js +28 -0
- package/dist/commands/history.d.ts +0 -1
- package/dist/commands/history.js +11 -42
- package/dist/commands/init.d.ts +0 -1
- package/dist/commands/init.js +42 -8
- package/dist/commands/login.d.ts +11 -1
- package/dist/commands/login.js +35 -4
- package/dist/commands/logout.d.ts +0 -1
- package/dist/commands/logout.js +3 -3
- package/dist/commands/mcp/serve.d.ts +27 -0
- package/dist/commands/mcp/serve.js +120 -0
- package/dist/commands/mcp/tools.d.ts +8 -0
- package/dist/commands/mcp/tools.js +75 -0
- package/dist/commands/mcp.d.ts +2 -0
- package/dist/commands/mcp.js +23 -0
- package/dist/commands/policy.d.ts +16 -0
- package/dist/commands/policy.js +296 -0
- package/dist/commands/publish/all.d.ts +2 -0
- package/dist/commands/publish/all.js +41 -0
- package/dist/commands/publish/cancel.d.ts +2 -0
- package/dist/commands/publish/cancel.js +25 -0
- package/dist/commands/publish/history.d.ts +2 -0
- package/dist/commands/publish/history.js +34 -0
- package/dist/commands/publish/index.d.ts +2 -0
- package/dist/commands/publish/index.js +30 -0
- package/dist/commands/publish/item.d.ts +2 -0
- package/dist/commands/publish/item.js +55 -0
- package/dist/commands/publish/status.d.ts +2 -0
- package/dist/commands/publish/status.js +34 -0
- package/dist/commands/publish/unpublish.d.ts +2 -0
- package/dist/commands/publish/unpublish.js +52 -0
- package/dist/commands/recipe/index.d.ts +0 -1
- package/dist/commands/recipe/index.js +19 -15
- package/dist/commands/serialization/index.d.ts +0 -1
- package/dist/commands/serialization/index.js +14 -9
- package/dist/commands/serialization/package.d.ts +0 -1
- package/dist/commands/serialization/package.js +3 -3
- package/dist/commands/setup-client.d.ts +17 -0
- package/dist/commands/setup-client.js +148 -0
- package/dist/commands/shared.d.ts +72 -2
- package/dist/commands/shared.js +151 -24
- package/dist/commands/shell.d.ts +0 -1
- package/dist/commands/shell.js +1 -1
- package/dist/commands/status.d.ts +0 -1
- package/dist/commands/status.js +3 -3
- package/dist/commands/sync.d.ts +23 -0
- package/dist/commands/sync.js +154 -0
- package/dist/commands/telemetry.d.ts +0 -1
- package/dist/commands/telemetry.js +40 -2
- package/dist/commands/topics/index.d.ts +5 -0
- package/dist/commands/topics/index.js +102 -0
- package/dist/commands/webhook/create.d.ts +2 -0
- package/dist/commands/webhook/create.js +52 -0
- package/dist/commands/webhook/delete.d.ts +2 -0
- package/dist/commands/webhook/delete.js +20 -0
- package/dist/commands/webhook/event-types.d.ts +2 -0
- package/dist/commands/webhook/event-types.js +22 -0
- package/dist/commands/webhook/index.d.ts +2 -0
- package/dist/commands/webhook/index.js +33 -0
- package/dist/commands/webhook/inspect.d.ts +2 -0
- package/dist/commands/webhook/inspect.js +17 -0
- package/dist/commands/webhook/list.d.ts +2 -0
- package/dist/commands/webhook/list.js +24 -0
- package/dist/commands/webhook/shared.d.ts +2 -0
- package/dist/commands/webhook/shared.js +11 -0
- package/dist/commands/workflow/advance.d.ts +2 -0
- package/dist/commands/workflow/advance.js +22 -0
- package/dist/commands/workflow/apply.d.ts +2 -0
- package/dist/commands/workflow/apply.js +22 -0
- package/dist/commands/workflow/assigned.d.ts +2 -0
- package/dist/commands/workflow/assigned.js +21 -0
- package/dist/commands/workflow/index.d.ts +2 -0
- package/dist/commands/workflow/index.js +35 -0
- package/dist/commands/workflow/inspect.d.ts +2 -0
- package/dist/commands/workflow/inspect.js +17 -0
- package/dist/commands/workflow/list-commands.d.ts +2 -0
- package/dist/commands/workflow/list-commands.js +17 -0
- package/dist/commands/workflow/list-defs.d.ts +2 -0
- package/dist/commands/workflow/list-defs.js +17 -0
- package/dist/commands/workflow/reset.d.ts +2 -0
- package/dist/commands/workflow/reset.js +20 -0
- package/dist/commands/workflow/shared.d.ts +3 -0
- package/dist/commands/workflow/shared.js +12 -0
- package/dist/commands/workflow/status.d.ts +2 -0
- package/dist/commands/workflow/status.js +18 -0
- package/dist/config/env-overrides.d.ts +0 -1
- package/dist/config/env-overrides.js +41 -5
- package/dist/config/index.d.ts +15 -3
- package/dist/config/index.js +43 -3
- package/dist/config/modules.d.ts +0 -1
- package/dist/config/modules.js +2 -2
- package/dist/config/paths.d.ts +0 -1
- package/dist/config/paths.js +11 -2
- package/dist/config/root-config.d.ts +24 -1
- package/dist/config/root-config.js +84 -7
- package/dist/config/schema.json +113 -25
- package/dist/config/types.d.ts +228 -13
- package/dist/config/types.js +1 -1
- package/dist/config/validation.d.ts +1 -4
- package/dist/content/api/version-fields.d.ts +129 -0
- package/dist/content/api/version-fields.js +193 -0
- package/dist/content/index.d.ts +15 -0
- package/dist/content/index.js +40 -0
- package/dist/content/tasks/shared.d.ts +86 -0
- package/dist/content/tasks/shared.js +130 -0
- package/dist/content/tasks/version-inspect.d.ts +13 -0
- package/dist/content/tasks/version-inspect.js +56 -0
- package/dist/content/tasks/version-never-publish.d.ts +16 -0
- package/dist/content/tasks/version-never-publish.js +115 -0
- package/dist/content/tasks/version-validity.d.ts +24 -0
- package/dist/content/tasks/version-validity.js +159 -0
- package/dist/deploy/api/client-naming.d.ts +80 -0
- package/dist/deploy/api/client-naming.js +124 -0
- package/dist/deploy/api/client.d.ts +72 -0
- package/dist/deploy/api/client.js +72 -0
- package/dist/deploy/api/clients.d.ts +126 -0
- package/dist/deploy/api/clients.js +89 -0
- package/dist/deploy/api/common/headers.d.ts +0 -1
- package/dist/deploy/api/common/request.d.ts +0 -5
- package/dist/deploy/api/common/request.js +93 -120
- package/dist/deploy/api/common/transport-events.d.ts +31 -0
- package/dist/deploy/api/common/transport-events.js +24 -0
- package/dist/deploy/api/common/types.d.ts +60 -1
- package/dist/deploy/api/deployment-logs.d.ts +0 -1
- package/dist/deploy/api/deployment-logs.js +5 -5
- package/dist/deploy/api/deployments.d.ts +1 -2
- package/dist/deploy/api/deployments.js +22 -20
- package/dist/deploy/api/environments.d.ts +28 -2
- package/dist/deploy/api/environments.js +103 -20
- package/dist/deploy/api/index.d.ts +31 -9
- package/dist/deploy/api/index.js +129 -22
- package/dist/deploy/api/logs.d.ts +1 -2
- package/dist/deploy/api/logs.js +9 -7
- package/dist/deploy/api/organizations.d.ts +1 -2
- package/dist/deploy/api/organizations.js +8 -7
- package/dist/deploy/api/projects.d.ts +19 -4
- package/dist/deploy/api/projects.js +75 -13
- package/dist/deploy/api/source-control.d.ts +1 -2
- package/dist/deploy/api/source-control.js +25 -24
- package/dist/deploy/api.d.ts +0 -1
- package/dist/deploy/context.d.ts +52 -0
- package/dist/deploy/context.js +234 -0
- package/dist/deploy/index.d.ts +11 -0
- package/dist/deploy/index.js +38 -0
- package/dist/deploy/tasks/deployment-result.d.ts +0 -1
- package/dist/deploy/tasks/deployments.d.ts +0 -1
- package/dist/deploy/tasks/deployments.js +12 -11
- package/dist/deploy/tasks/editing-host.d.ts +0 -1
- package/dist/deploy/tasks/editing-host.js +48 -18
- package/dist/deploy/tasks/environments.d.ts +3 -3
- package/dist/deploy/tasks/environments.js +108 -24
- package/dist/deploy/tasks/health.d.ts +23 -0
- package/dist/deploy/tasks/health.js +181 -0
- package/dist/deploy/tasks/logs.d.ts +0 -1
- package/dist/deploy/tasks/logs.js +4 -4
- package/dist/deploy/tasks/organizations.d.ts +0 -1
- package/dist/deploy/tasks/organizations.js +5 -5
- package/dist/deploy/tasks/projects.d.ts +6 -2
- package/dist/deploy/tasks/projects.js +61 -42
- package/dist/deploy/tasks/shared.d.ts +9 -52
- package/dist/deploy/tasks/shared.js +46 -222
- package/dist/deploy/tasks/site-bind.d.ts +1 -2
- package/dist/deploy/tasks/site-bind.js +7 -7
- package/dist/deploy/tasks/site.d.ts +2 -3
- package/dist/deploy/tasks/site.js +4 -4
- package/dist/deploy/tasks/source-control.d.ts +0 -1
- package/dist/deploy/tasks/source-control.js +14 -14
- package/dist/deploy/tasks/transport-spinner.d.ts +5 -0
- package/dist/deploy/tasks/transport-spinner.js +118 -0
- package/dist/deploy/tasks/types.d.ts +16 -3
- package/dist/deploy/tasks/types.js +1 -1
- package/dist/hygiene/api/client.d.ts +294 -0
- package/dist/hygiene/api/client.js +827 -0
- package/dist/hygiene/api/graphql.d.ts +4 -0
- package/dist/hygiene/api/graphql.js +18 -0
- package/dist/hygiene/audit-suite.d.ts +84 -0
- package/dist/hygiene/audit-suite.js +95 -0
- package/dist/hygiene/baseline.d.ts +56 -0
- package/dist/hygiene/baseline.js +248 -0
- package/dist/hygiene/cache.d.ts +35 -0
- package/dist/hygiene/cache.js +179 -0
- package/dist/hygiene/history.d.ts +70 -0
- package/dist/hygiene/history.js +148 -0
- package/dist/hygiene/index.d.ts +128 -0
- package/dist/hygiene/index.js +168 -0
- package/dist/hygiene/output-adapters.d.ts +49 -0
- package/dist/hygiene/output-adapters.js +270 -0
- package/dist/hygiene/tasks/audit/all.d.ts +58 -0
- package/dist/hygiene/tasks/audit/all.js +274 -0
- package/dist/hygiene/tasks/audit/alt-text-missing.d.ts +27 -0
- package/dist/hygiene/tasks/audit/alt-text-missing.js +87 -0
- package/dist/hygiene/tasks/audit/baseline.d.ts +66 -0
- package/dist/hygiene/tasks/audit/baseline.js +185 -0
- package/dist/hygiene/tasks/audit/broken-images.d.ts +41 -0
- package/dist/hygiene/tasks/audit/broken-images.js +183 -0
- package/dist/hygiene/tasks/audit/broken-links.d.ts +53 -0
- package/dist/hygiene/tasks/audit/broken-links.js +121 -0
- package/dist/hygiene/tasks/audit/datasource-missing.d.ts +44 -0
- package/dist/hygiene/tasks/audit/datasource-missing.js +146 -0
- package/dist/hygiene/tasks/audit/dead-templates.d.ts +46 -0
- package/dist/hygiene/tasks/audit/dead-templates.js +216 -0
- package/dist/hygiene/tasks/audit/duplicates.d.ts +48 -0
- package/dist/hygiene/tasks/audit/duplicates.js +94 -0
- package/dist/hygiene/tasks/audit/empty-items.d.ts +24 -0
- package/dist/hygiene/tasks/audit/empty-items.js +53 -0
- package/dist/hygiene/tasks/audit/empty-links.d.ts +37 -0
- package/dist/hygiene/tasks/audit/empty-links.js +145 -0
- package/dist/hygiene/tasks/audit/empty-roles.d.ts +41 -0
- package/dist/hygiene/tasks/audit/empty-roles.js +51 -0
- package/dist/hygiene/tasks/audit/fallback-drift.d.ts +53 -0
- package/dist/hygiene/tasks/audit/fallback-drift.js +115 -0
- package/dist/hygiene/tasks/audit/find-replace.d.ts +75 -0
- package/dist/hygiene/tasks/audit/find-replace.js +142 -0
- package/dist/hygiene/tasks/audit/heavy-templates.d.ts +46 -0
- package/dist/hygiene/tasks/audit/heavy-templates.js +73 -0
- package/dist/hygiene/tasks/audit/history.d.ts +30 -0
- package/dist/hygiene/tasks/audit/history.js +161 -0
- package/dist/hygiene/tasks/audit/language-data.d.ts +55 -0
- package/dist/hygiene/tasks/audit/language-data.js +126 -0
- package/dist/hygiene/tasks/audit/large-fields.d.ts +48 -0
- package/dist/hygiene/tasks/audit/large-fields.js +84 -0
- package/dist/hygiene/tasks/audit/missing-meta.d.ts +57 -0
- package/dist/hygiene/tasks/audit/missing-meta.js +97 -0
- package/dist/hygiene/tasks/audit/orphans.d.ts +47 -0
- package/dist/hygiene/tasks/audit/orphans.js +78 -0
- package/dist/hygiene/tasks/audit/page-design-orphans.d.ts +24 -0
- package/dist/hygiene/tasks/audit/page-design-orphans.js +80 -0
- package/dist/hygiene/tasks/audit/personalization-broken.d.ts +25 -0
- package/dist/hygiene/tasks/audit/personalization-broken.js +96 -0
- package/dist/hygiene/tasks/audit/references.d.ts +70 -0
- package/dist/hygiene/tasks/audit/references.js +142 -0
- package/dist/hygiene/tasks/audit/role-bloat.d.ts +42 -0
- package/dist/hygiene/tasks/audit/role-bloat.js +64 -0
- package/dist/hygiene/tasks/audit/site-residue.d.ts +39 -0
- package/dist/hygiene/tasks/audit/site-residue.js +164 -0
- package/dist/hygiene/tasks/audit/slug-conflicts.d.ts +58 -0
- package/dist/hygiene/tasks/audit/slug-conflicts.js +87 -0
- package/dist/hygiene/tasks/audit/stale-content.d.ts +68 -0
- package/dist/hygiene/tasks/audit/stale-content.js +133 -0
- package/dist/hygiene/tasks/audit/stale-users.d.ts +54 -0
- package/dist/hygiene/tasks/audit/stale-users.js +83 -0
- package/dist/hygiene/tasks/audit/stale-workflow.d.ts +50 -0
- package/dist/hygiene/tasks/audit/stale-workflow.js +109 -0
- package/dist/hygiene/tasks/audit/suite-run.d.ts +28 -0
- package/dist/hygiene/tasks/audit/suite-run.js +46 -0
- package/dist/hygiene/tasks/audit/template-dependencies.d.ts +72 -0
- package/dist/hygiene/tasks/audit/template-dependencies.js +97 -0
- package/dist/hygiene/tasks/audit/translation-coverage.d.ts +64 -0
- package/dist/hygiene/tasks/audit/translation-coverage.js +123 -0
- package/dist/hygiene/tasks/audit/unused-media.d.ts +58 -0
- package/dist/hygiene/tasks/audit/unused-media.js +144 -0
- package/dist/hygiene/tasks/browse.d.ts +49 -0
- package/dist/hygiene/tasks/browse.js +50 -0
- package/dist/hygiene/tasks/cleanup/archive-purge.d.ts +50 -0
- package/dist/hygiene/tasks/cleanup/archive-purge.js +129 -0
- package/dist/hygiene/tasks/cleanup/dead-templates.d.ts +74 -0
- package/dist/hygiene/tasks/cleanup/dead-templates.js +247 -0
- package/dist/hygiene/tasks/cleanup/duplicates.d.ts +86 -0
- package/dist/hygiene/tasks/cleanup/duplicates.js +189 -0
- package/dist/hygiene/tasks/cleanup/empty-folders.d.ts +75 -0
- package/dist/hygiene/tasks/cleanup/empty-folders.js +165 -0
- package/dist/hygiene/tasks/cleanup/field-set.d.ts +108 -0
- package/dist/hygiene/tasks/cleanup/field-set.js +230 -0
- package/dist/hygiene/tasks/cleanup/find-replace.d.ts +77 -0
- package/dist/hygiene/tasks/cleanup/find-replace.js +180 -0
- package/dist/hygiene/tasks/cleanup/language-version-add.d.ts +74 -0
- package/dist/hygiene/tasks/cleanup/language-version-add.js +136 -0
- package/dist/hygiene/tasks/cleanup/rename.d.ts +78 -0
- package/dist/hygiene/tasks/cleanup/rename.js +152 -0
- package/dist/hygiene/tasks/cleanup/roles.d.ts +58 -0
- package/dist/hygiene/tasks/cleanup/roles.js +177 -0
- package/dist/hygiene/tasks/cleanup/site-residue.d.ts +55 -0
- package/dist/hygiene/tasks/cleanup/site-residue.js +247 -0
- package/dist/hygiene/tasks/cleanup/slug-conflicts.d.ts +126 -0
- package/dist/hygiene/tasks/cleanup/slug-conflicts.js +296 -0
- package/dist/hygiene/tasks/cleanup/subtree-prune.d.ts +40 -0
- package/dist/hygiene/tasks/cleanup/subtree-prune.js +113 -0
- package/dist/hygiene/tasks/cleanup/subtree.d.ts +123 -0
- package/dist/hygiene/tasks/cleanup/subtree.js +312 -0
- package/dist/hygiene/tasks/cleanup/users.d.ts +48 -0
- package/dist/hygiene/tasks/cleanup/users.js +92 -0
- package/dist/hygiene/tasks/cleanup/versions-archive.d.ts +57 -0
- package/dist/hygiene/tasks/cleanup/versions-archive.js +162 -0
- package/dist/hygiene/tasks/cleanup/versions-prune.d.ts +76 -0
- package/dist/hygiene/tasks/cleanup/versions-prune.js +194 -0
- package/dist/hygiene/tasks/cleanup/workflow-advance.d.ts +76 -0
- package/dist/hygiene/tasks/cleanup/workflow-advance.js +185 -0
- package/dist/hygiene/tasks/cleanup/workflow-apply.d.ts +97 -0
- package/dist/hygiene/tasks/cleanup/workflow-apply.js +310 -0
- package/dist/hygiene/tasks/explain/orphan-site.d.ts +53 -0
- package/dist/hygiene/tasks/explain/orphan-site.js +83 -0
- package/dist/hygiene/tasks/explain/why-blocked.d.ts +81 -0
- package/dist/hygiene/tasks/explain/why-blocked.js +149 -0
- package/dist/hygiene/tasks/reference-kind.d.ts +47 -0
- package/dist/hygiene/tasks/reference-kind.js +73 -0
- package/dist/hygiene/tasks/shared.d.ts +350 -0
- package/dist/hygiene/tasks/shared.js +532 -0
- package/dist/mcp/auth.d.ts +80 -0
- package/dist/mcp/auth.js +165 -0
- package/dist/mcp/build-registry.d.ts +12 -0
- package/dist/mcp/build-registry.js +75 -0
- package/dist/mcp/descriptions.d.ts +22 -0
- package/dist/mcp/descriptions.js +113 -0
- package/dist/mcp/dispatch.d.ts +44 -0
- package/dist/mcp/dispatch.js +110 -0
- package/dist/mcp/errors.d.ts +31 -0
- package/dist/mcp/errors.js +117 -0
- package/dist/mcp/http.d.ts +42 -0
- package/dist/mcp/http.js +128 -0
- package/dist/mcp/logging.d.ts +28 -0
- package/dist/mcp/logging.js +78 -0
- package/dist/mcp/prompts/workflows.d.ts +13 -0
- package/dist/mcp/prompts/workflows.js +171 -0
- package/dist/mcp/redact.d.ts +11 -0
- package/dist/mcp/redact.js +35 -0
- package/dist/mcp/registry.d.ts +84 -0
- package/dist/mcp/registry.js +62 -0
- package/dist/mcp/resources/brand.d.ts +20 -0
- package/dist/mcp/resources/brand.js +514 -0
- package/dist/mcp/resources/env.d.ts +10 -0
- package/dist/mcp/resources/env.js +120 -0
- package/dist/mcp/resources/help.d.ts +10 -0
- package/dist/mcp/resources/help.js +475 -0
- package/dist/mcp/resources/recipes.d.ts +13 -0
- package/dist/mcp/resources/recipes.js +270 -0
- package/dist/mcp/schemas/common.d.ts +22 -0
- package/dist/mcp/schemas/common.js +43 -0
- package/dist/mcp/server.d.ts +26 -0
- package/dist/mcp/server.js +88 -0
- package/dist/mcp/tools/access-check.d.ts +11 -0
- package/dist/mcp/tools/access-check.js +47 -0
- package/dist/mcp/tools/agents-recipe.d.ts +2 -0
- package/dist/mcp/tools/agents-recipe.js +139 -0
- package/dist/mcp/tools/agents.d.ts +2 -0
- package/dist/mcp/tools/agents.js +148 -0
- package/dist/mcp/tools/audit.d.ts +41 -0
- package/dist/mcp/tools/audit.js +584 -0
- package/dist/mcp/tools/bootstrap.d.ts +8 -0
- package/dist/mcp/tools/bootstrap.js +200 -0
- package/dist/mcp/tools/brand-recipe.d.ts +2 -0
- package/dist/mcp/tools/brand-recipe.js +123 -0
- package/dist/mcp/tools/brand.d.ts +28 -0
- package/dist/mcp/tools/brand.js +549 -0
- package/dist/mcp/tools/brief-recipe.d.ts +2 -0
- package/dist/mcp/tools/brief-recipe.js +123 -0
- package/dist/mcp/tools/brief.d.ts +16 -0
- package/dist/mcp/tools/brief.js +388 -0
- package/dist/mcp/tools/browse.d.ts +9 -0
- package/dist/mcp/tools/browse.js +57 -0
- package/dist/mcp/tools/campaign-recipe.d.ts +2 -0
- package/dist/mcp/tools/campaign-recipe.js +125 -0
- package/dist/mcp/tools/campaign.d.ts +20 -0
- package/dist/mcp/tools/campaign.js +342 -0
- package/dist/mcp/tools/cleanup.d.ts +22 -0
- package/dist/mcp/tools/cleanup.js +608 -0
- package/dist/mcp/tools/deploy.d.ts +19 -0
- package/dist/mcp/tools/deploy.js +797 -0
- package/dist/mcp/tools/explain.d.ts +2 -0
- package/dist/mcp/tools/explain.js +132 -0
- package/dist/mcp/tools/inspector.d.ts +12 -0
- package/dist/mcp/tools/inspector.js +101 -0
- package/dist/mcp/tools/onboard.d.ts +11 -0
- package/dist/mcp/tools/onboard.js +65 -0
- package/dist/mcp/tools/publish.d.ts +30 -0
- package/dist/mcp/tools/publish.js +173 -0
- package/dist/mcp/tools/recipe-sync.d.ts +2 -0
- package/dist/mcp/tools/recipe-sync.js +117 -0
- package/dist/mcp/tools/recipe.d.ts +18 -0
- package/dist/mcp/tools/recipe.js +250 -0
- package/dist/mcp/tools/serialization.d.ts +17 -0
- package/dist/mcp/tools/serialization.js +282 -0
- package/dist/mcp/tools/webhook.d.ts +12 -0
- package/dist/mcp/tools/webhook.js +246 -0
- package/dist/mcp/tools/workflow.d.ts +21 -0
- package/dist/mcp/tools/workflow.js +436 -0
- package/dist/policy/access-check.d.ts +56 -0
- package/dist/policy/access-check.js +160 -0
- package/dist/policy/allow-write.d.ts +37 -0
- package/dist/policy/allow-write.js +78 -0
- package/dist/policy/authorize.d.ts +36 -0
- package/dist/policy/authorize.js +102 -0
- package/dist/policy/caller.d.ts +23 -0
- package/dist/policy/caller.js +66 -0
- package/dist/policy/enforce.d.ts +25 -0
- package/dist/policy/enforce.js +57 -0
- package/dist/policy/enroll.d.ts +57 -0
- package/dist/policy/enroll.js +101 -0
- package/dist/policy/environment.d.ts +35 -0
- package/dist/policy/environment.js +44 -0
- package/dist/policy/identity.d.ts +24 -0
- package/dist/policy/identity.js +58 -0
- package/dist/policy/index.d.ts +22 -0
- package/dist/policy/index.js +42 -0
- package/dist/policy/operations.d.ts +24 -0
- package/dist/policy/operations.js +37 -0
- package/dist/policy/organization.d.ts +62 -0
- package/dist/policy/organization.js +97 -0
- package/dist/policy/paths.d.ts +21 -0
- package/dist/policy/paths.js +46 -0
- package/dist/policy/resolve.d.ts +15 -0
- package/dist/policy/resolve.js +67 -0
- package/dist/policy/schema.d.ts +137 -0
- package/dist/policy/schema.js +92 -0
- package/dist/policy/store.d.ts +25 -0
- package/dist/policy/store.js +85 -0
- package/dist/policy/types.d.ts +52 -0
- package/dist/policy/types.js +22 -0
- package/dist/program.d.ts +35 -0
- package/dist/program.js +131 -0
- package/dist/publishing/api/auth.d.ts +49 -0
- package/dist/publishing/api/auth.js +173 -0
- package/dist/publishing/api/client.d.ts +5 -0
- package/dist/publishing/api/client.js +153 -0
- package/dist/publishing/api/languages.d.ts +61 -0
- package/dist/publishing/api/languages.js +116 -0
- package/dist/publishing/api/path-resolver.d.ts +10 -0
- package/dist/publishing/api/path-resolver.js +76 -0
- package/dist/publishing/api/sites.d.ts +23 -0
- package/dist/publishing/api/sites.js +27 -0
- package/dist/publishing/api/types.d.ts +166 -0
- package/dist/publishing/api/types.js +17 -0
- package/dist/publishing/index.d.ts +25 -0
- package/dist/publishing/index.js +51 -0
- package/dist/publishing/job-diagnostics.d.ts +44 -0
- package/dist/publishing/job-diagnostics.js +87 -0
- package/dist/publishing/job-watcher.d.ts +33 -0
- package/dist/publishing/job-watcher.js +118 -0
- package/dist/publishing/tasks/all.d.ts +41 -0
- package/dist/publishing/tasks/all.js +234 -0
- package/dist/publishing/tasks/cancel.d.ts +18 -0
- package/dist/publishing/tasks/cancel.js +147 -0
- package/dist/publishing/tasks/history.d.ts +22 -0
- package/dist/publishing/tasks/history.js +85 -0
- package/dist/publishing/tasks/item.d.ts +69 -0
- package/dist/publishing/tasks/item.js +194 -0
- package/dist/publishing/tasks/status.d.ts +17 -0
- package/dist/publishing/tasks/status.js +74 -0
- package/dist/publishing/tasks/unpublish.d.ts +69 -0
- package/dist/publishing/tasks/unpublish.js +546 -0
- package/dist/recipe/api/auth.d.ts +1 -2
- package/dist/recipe/api/auth.js +1 -1
- package/dist/recipe/api/authoring-client.d.ts +9 -3
- package/dist/recipe/api/authoring-client.js +101 -17
- package/dist/recipe/api/client.d.ts +50 -1
- package/dist/recipe/api/graphql.d.ts +2 -3
- package/dist/recipe/api/graphql.js +1 -1
- package/dist/recipe/api/ref-encoding.d.ts +0 -1
- package/dist/recipe/api/ref-encoding.js +5 -5
- package/dist/recipe/api/site-discovery.d.ts +1 -2
- package/dist/recipe/api/sites-client.d.ts +6 -3
- package/dist/recipe/api/sites-client.js +11 -8
- package/dist/recipe/cache.d.ts +0 -1
- package/dist/recipe/compile/component-section.d.ts +1 -2
- package/dist/recipe/compile/component-section.js +2 -2
- package/dist/recipe/compile/component-template.d.ts +0 -1
- package/dist/recipe/compile/component-template.js +15 -19
- package/dist/recipe/compile/content-item.d.ts +42 -22
- package/dist/recipe/compile/content-item.js +198 -46
- package/dist/recipe/compile/content-template.d.ts +0 -1
- package/dist/recipe/compile/content-template.js +25 -1
- package/dist/recipe/compile/design-parameters-template.d.ts +13 -0
- package/dist/recipe/compile/design-parameters-template.js +92 -0
- package/dist/recipe/compile/enumeration.d.ts +0 -1
- package/dist/recipe/compile/enumeration.js +4 -4
- package/dist/recipe/compile/page-design.d.ts +0 -1
- package/dist/recipe/compile/page-design.js +1 -1
- package/dist/recipe/compile/page-template.d.ts +30 -0
- package/dist/recipe/compile/page-template.js +121 -0
- package/dist/recipe/compile/page.d.ts +26 -0
- package/dist/recipe/compile/page.js +184 -0
- package/dist/recipe/compile/partial-design.d.ts +0 -1
- package/dist/recipe/compile/partial-design.js +1 -1
- package/dist/recipe/compile/placeholder.d.ts +23 -0
- package/dist/recipe/compile/placeholder.js +32 -0
- package/dist/recipe/compile/section-definition.d.ts +0 -1
- package/dist/recipe/compile/shared.d.ts +52 -7
- package/dist/recipe/compile/shared.js +55 -15
- package/dist/recipe/compile/site-template.d.ts +0 -1
- package/dist/recipe/compile/site-template.js +1 -1
- package/dist/recipe/compile/site.d.ts +0 -1
- package/dist/recipe/compile/site.js +1 -1
- package/dist/recipe/compile/webhook-authorization.d.ts +23 -0
- package/dist/recipe/compile/webhook-authorization.js +116 -0
- package/dist/recipe/compile/workflow.d.ts +46 -0
- package/dist/recipe/compile/workflow.js +368 -0
- package/dist/recipe/compile.d.ts +19 -3
- package/dist/recipe/compile.js +297 -11
- package/dist/recipe/ensure-marker-field.d.ts +25 -0
- package/dist/recipe/ensure-marker-field.js +140 -0
- package/dist/recipe/execute.d.ts +19 -2
- package/dist/recipe/execute.js +39 -8
- package/dist/recipe/guids.d.ts +106 -9
- package/dist/recipe/guids.js +126 -15
- package/dist/recipe/index.d.ts +11 -5
- package/dist/recipe/index.js +46 -23
- package/dist/recipe/io.d.ts +0 -1
- package/dist/recipe/io.js +33 -10
- package/dist/recipe/ir/operations.d.ts +66 -4
- package/dist/recipe/ir/operations.js +55 -2
- package/dist/recipe/ir/sitecore-templates.d.ts +87 -1
- package/dist/recipe/ir/sitecore-templates.js +94 -1
- package/dist/recipe/layout/emit.d.ts +22 -3
- package/dist/recipe/layout/emit.js +18 -7
- package/dist/recipe/layout/parse.d.ts +164 -0
- package/dist/recipe/layout/parse.js +295 -0
- package/dist/recipe/layout/templates-mapping.d.ts +0 -1
- package/dist/recipe/marker.d.ts +28 -0
- package/dist/recipe/marker.js +37 -0
- package/dist/recipe/plan.d.ts +9 -2
- package/dist/recipe/plan.js +195 -19
- package/dist/recipe/policy.d.ts +0 -1
- package/dist/recipe/policy.js +19 -1
- package/dist/recipe/read-current.d.ts +109 -0
- package/dist/recipe/read-current.js +1285 -0
- package/dist/recipe/recipe-kind.d.ts +4 -0
- package/dist/recipe/recipe-kind.js +217 -0
- package/dist/recipe/rollback-log.d.ts +52 -0
- package/dist/recipe/rollback-log.js +90 -0
- package/dist/recipe/rollback.d.ts +12 -1
- package/dist/recipe/rollback.js +32 -7
- package/dist/recipe/sandbox/load.d.ts +17 -0
- package/dist/recipe/sandbox/load.js +145 -0
- package/dist/recipe/sandbox/recipe-runner.cjs +49 -0
- package/dist/recipe/sandbox/transpile.d.ts +17 -0
- package/dist/recipe/sandbox/transpile.js +46 -0
- package/dist/recipe/schema/field-types.d.ts +3 -4
- package/dist/recipe/schema/recipe.d.ts +1631 -213
- package/dist/recipe/schema/recipe.js +576 -37
- package/dist/recipe/schema/source-fields.d.ts +0 -1
- package/dist/recipe/tasks/compile.d.ts +1 -2
- package/dist/recipe/tasks/compile.js +14 -4
- package/dist/recipe/tasks/diff.d.ts +1 -2
- package/dist/recipe/tasks/placeholder-allow.d.ts +0 -1
- package/dist/recipe/tasks/placeholder-allow.js +3 -7
- package/dist/recipe/tasks/plan.d.ts +3 -4
- package/dist/recipe/tasks/plan.js +5 -5
- package/dist/recipe/tasks/prune-defaults.d.ts +1 -2
- package/dist/recipe/tasks/prune-defaults.js +6 -7
- package/dist/recipe/tasks/push.d.ts +1 -2
- package/dist/recipe/tasks/push.js +46 -6
- package/dist/recipe/tasks/shared.d.ts +21 -4
- package/dist/recipe/tasks/shared.js +34 -21
- package/dist/recipe/unstable.d.ts +18 -0
- package/dist/recipe/unstable.js +36 -0
- package/dist/recipe/validate.d.ts +51 -2
- package/dist/recipe/validate.js +162 -15
- package/dist/scripting/connect.d.ts +24 -0
- package/dist/scripting/connect.js +17 -0
- package/dist/scripting/helpers/multilist.d.ts +26 -0
- package/dist/scripting/helpers/multilist.js +75 -0
- package/dist/scripting/index.d.ts +20 -0
- package/dist/scripting/index.js +57 -0
- package/dist/serialization/api/auth.d.ts +57 -0
- package/dist/serialization/api/auth.js +433 -0
- package/dist/serialization/api/client.d.ts +41 -0
- package/dist/serialization/api/client.js +41 -0
- package/dist/serialization/api/graphql.d.ts +11 -0
- package/dist/serialization/api/history.d.ts +8 -0
- package/dist/serialization/api/index.d.ts +23 -0
- package/dist/serialization/api/index.js +64 -0
- package/dist/serialization/api/items.d.ts +7 -0
- package/dist/serialization/api/items.js +132 -0
- package/dist/serialization/api/publish.d.ts +43 -0
- package/dist/serialization/api/publish.js +67 -0
- package/dist/serialization/api/roles.d.ts +8 -0
- package/dist/serialization/api/types.d.ts +65 -0
- package/dist/serialization/api/types.js +2 -0
- package/dist/serialization/api/users.d.ts +8 -0
- package/dist/serialization/commands.d.ts +0 -1
- package/dist/serialization/compare.d.ts +0 -1
- package/dist/serialization/context.d.ts +25 -0
- package/dist/serialization/context.js +58 -0
- package/dist/serialization/field-filter.d.ts +0 -1
- package/dist/serialization/filesystem-store/constants.d.ts +0 -1
- package/dist/serialization/filesystem-store/items.d.ts +0 -1
- package/dist/serialization/filesystem-store/items.js +1 -1
- package/dist/serialization/filesystem-store/roles.d.ts +1 -2
- package/dist/serialization/filesystem-store/users.d.ts +1 -2
- package/dist/serialization/filesystem-store/utils.d.ts +0 -1
- package/dist/serialization/index.d.ts +12 -0
- package/dist/serialization/index.js +32 -0
- package/dist/serialization/item-path.d.ts +0 -1
- package/dist/serialization/item-path.js +3 -3
- package/dist/serialization/path-provider.d.ts +0 -1
- package/dist/serialization/path-provider.js +4 -4
- package/dist/serialization/signature.d.ts +0 -1
- package/dist/serialization/tasks/diff.d.ts +0 -1
- package/dist/serialization/tasks/diff.js +176 -48
- package/dist/serialization/tasks/env/constants.d.ts +13 -1
- package/dist/serialization/tasks/env/constants.js +64 -1
- package/dist/serialization/tasks/env/deploy-token.d.ts +0 -1
- package/dist/serialization/tasks/env/deploy-token.js +69 -17
- package/dist/serialization/tasks/env/init/auth.d.ts +11 -3
- package/dist/serialization/tasks/env/init/auth.js +19 -17
- package/dist/serialization/tasks/env/init/deploy-lookup.d.ts +1 -2
- package/dist/serialization/tasks/env/init/deploy-lookup.js +18 -5
- package/dist/serialization/tasks/env/init.d.ts +0 -1
- package/dist/serialization/tasks/env/init.js +18 -12
- package/dist/serialization/tasks/env/logout.d.ts +0 -1
- package/dist/serialization/tasks/env/logout.js +13 -6
- package/dist/serialization/tasks/env/onboard.d.ts +40 -0
- package/dist/serialization/tasks/env/onboard.js +53 -0
- package/dist/serialization/tasks/env/setup-clients.d.ts +24 -0
- package/dist/serialization/tasks/env/setup-clients.js +119 -0
- package/dist/serialization/tasks/env/setup-env.d.ts +54 -0
- package/dist/serialization/tasks/env/setup-env.js +216 -0
- package/dist/serialization/tasks/env/setup-org-client.d.ts +21 -0
- package/dist/serialization/tasks/env/setup-org-client.js +146 -0
- package/dist/serialization/tasks/env/status.d.ts +0 -1
- package/dist/serialization/tasks/env/status.js +36 -11
- package/dist/serialization/tasks/helpers/collect.d.ts +1 -2
- package/dist/serialization/tasks/helpers/collect.js +22 -15
- package/dist/serialization/tasks/helpers/commands.d.ts +0 -1
- package/dist/serialization/tasks/helpers/filesystem.d.ts +0 -1
- package/dist/serialization/tasks/helpers/filesystem.js +4 -4
- package/dist/serialization/tasks/helpers/items.d.ts +0 -1
- package/dist/serialization/tasks/helpers/sitecore.d.ts +1 -2
- package/dist/serialization/tasks/helpers/sitecore.js +2 -2
- package/dist/serialization/tasks/info.d.ts +0 -1
- package/dist/serialization/tasks/package.d.ts +0 -1
- package/dist/serialization/tasks/package.js +21 -16
- package/dist/serialization/tasks/pull.d.ts +0 -1
- package/dist/serialization/tasks/pull.js +24 -9
- package/dist/serialization/tasks/push.d.ts +0 -1
- package/dist/serialization/tasks/push.js +27 -11
- package/dist/serialization/tasks/roles.d.ts +2 -2
- package/dist/serialization/tasks/roles.js +9 -9
- package/dist/serialization/tasks/shared.d.ts +9 -16
- package/dist/serialization/tasks/shared.js +14 -44
- package/dist/serialization/tasks/types.d.ts +44 -4
- package/dist/serialization/tasks/types.js +1 -1
- package/dist/serialization/tasks/users.d.ts +2 -2
- package/dist/serialization/tasks/users.js +9 -9
- package/dist/serialization/tasks/validate.d.ts +0 -1
- package/dist/serialization/tasks/validate.js +2 -2
- package/dist/serialization/tasks/watch.d.ts +0 -1
- package/dist/serialization/tasks/watch.js +9 -8
- package/dist/serialization/tree-spec.d.ts +0 -1
- package/dist/serialization/tree-spec.js +21 -21
- package/dist/serialization/types.d.ts +0 -1
- package/dist/serialization/wildcard.d.ts +0 -1
- package/dist/serialization/wildcard.js +2 -2
- package/dist/serialization/yaml.d.ts +0 -1
- package/dist/serialization/yaml.js +1 -1
- package/dist/shared/browser.d.ts +0 -1
- package/dist/shared/cli-options.d.ts +0 -1
- package/dist/shared/cli-tasks.d.ts +1 -2
- package/dist/shared/cli-tasks.js +2 -2
- package/dist/shared/client-credential.d.ts +82 -0
- package/dist/shared/client-credential.js +117 -0
- package/dist/shared/concurrency.d.ts +20 -0
- package/dist/shared/concurrency.js +67 -0
- package/dist/shared/config-template.d.ts +0 -1
- package/dist/shared/credential-matrix.d.ts +83 -0
- package/dist/shared/credential-matrix.js +65 -0
- package/dist/shared/env-tier.d.ts +2 -0
- package/dist/shared/env-tier.js +31 -0
- package/dist/shared/envelope.d.ts +69 -0
- package/dist/shared/envelope.js +84 -0
- package/dist/shared/errors.d.ts +79 -9
- package/dist/shared/errors.js +49 -11
- package/dist/shared/graphql.d.ts +2 -3
- package/dist/shared/graphql.js +31 -15
- package/dist/shared/history.d.ts +25 -1
- package/dist/shared/history.js +35 -1
- package/dist/shared/human-only-operations.d.ts +28 -0
- package/dist/shared/human-only-operations.js +33 -0
- package/dist/shared/keychain.d.ts +68 -1
- package/dist/shared/keychain.js +416 -46
- package/dist/shared/logger.d.ts +2 -1
- package/dist/shared/logger.js +12 -1
- package/dist/shared/output.d.ts +0 -1
- package/dist/shared/prompt.d.ts +0 -1
- package/dist/shared/prompt.js +2 -2
- package/dist/shared/publish-audit.d.ts +154 -0
- package/dist/shared/publish-audit.js +52 -0
- package/dist/shared/publish-consent.d.ts +104 -0
- package/dist/shared/publish-consent.js +148 -0
- package/dist/shared/redact.d.ts +0 -1
- package/dist/shared/redact.js +4 -2
- package/dist/shared/region.d.ts +96 -0
- package/dist/shared/region.js +129 -0
- package/dist/shared/rwlock.d.ts +43 -0
- package/dist/shared/rwlock.js +110 -0
- package/dist/shared/spinner.d.ts +0 -1
- package/dist/shared/style.d.ts +0 -1
- package/dist/shared/telemetry.d.ts +15 -2
- package/dist/shared/telemetry.js +59 -34
- package/dist/shared/topics.d.ts +33 -0
- package/dist/shared/topics.js +151 -0
- package/dist/shared/validate.d.ts +0 -1
- package/dist/shared/validate.js +18 -3
- package/dist/sites/api/collections.d.ts +0 -1
- package/dist/sites/api/jobs.d.ts +0 -1
- package/dist/sites/api/languages.d.ts +0 -1
- package/dist/sites/api/request.d.ts +0 -1
- package/dist/sites/api/request.js +13 -4
- package/dist/sites/api/sites.d.ts +44 -1
- package/dist/sites/api/sites.js +42 -1
- package/dist/sites/api/types.d.ts +0 -1
- package/dist/sites/index.d.ts +25 -0
- package/dist/sites/index.js +44 -0
- package/dist/sync/aggregate-kinds.d.ts +7 -0
- package/dist/sync/aggregate-kinds.js +32 -0
- package/dist/sync/aggregate.d.ts +100 -0
- package/dist/sync/aggregate.js +173 -0
- package/dist/sync/engine.d.ts +28 -0
- package/dist/sync/engine.js +38 -0
- package/dist/sync/index.d.ts +18 -0
- package/dist/sync/index.js +25 -0
- package/dist/sync/io.d.ts +8 -0
- package/dist/sync/io.js +52 -0
- package/dist/sync/kind.d.ts +80 -0
- package/dist/sync/kind.js +2 -0
- package/dist/sync/plan.d.ts +55 -0
- package/dist/sync/plan.js +27 -0
- package/dist/sync/registry.d.ts +7 -0
- package/dist/sync/registry.js +36 -0
- package/dist/webhooks/api/client.d.ts +134 -0
- package/dist/webhooks/api/client.js +326 -0
- package/dist/webhooks/api/graphql.d.ts +4 -0
- package/dist/webhooks/api/graphql.js +18 -0
- package/dist/webhooks/api/templates.d.ts +41 -0
- package/dist/webhooks/api/templates.js +78 -0
- package/dist/webhooks/index.d.ts +16 -0
- package/dist/webhooks/index.js +43 -0
- package/dist/webhooks/tasks/create.d.ts +58 -0
- package/dist/webhooks/tasks/create.js +127 -0
- package/dist/webhooks/tasks/delete.d.ts +14 -0
- package/dist/webhooks/tasks/delete.js +57 -0
- package/dist/webhooks/tasks/event-types.d.ts +21 -0
- package/dist/webhooks/tasks/event-types.js +32 -0
- package/dist/webhooks/tasks/inspect.d.ts +12 -0
- package/dist/webhooks/tasks/inspect.js +65 -0
- package/dist/webhooks/tasks/list.d.ts +29 -0
- package/dist/webhooks/tasks/list.js +41 -0
- package/dist/webhooks/tasks/shared.d.ts +35 -0
- package/dist/webhooks/tasks/shared.js +38 -0
- package/dist/workflow/api/client.d.ts +208 -0
- package/dist/workflow/api/client.js +421 -0
- package/dist/workflow/api/graphql.d.ts +4 -0
- package/dist/workflow/api/graphql.js +18 -0
- package/dist/workflow/api/resolve-command.d.ts +27 -0
- package/dist/workflow/api/resolve-command.js +26 -0
- package/dist/workflow/index.d.ts +18 -0
- package/dist/workflow/index.js +37 -0
- package/dist/workflow/tasks/advance.d.ts +39 -0
- package/dist/workflow/tasks/advance.js +182 -0
- package/dist/workflow/tasks/apply.d.ts +47 -0
- package/dist/workflow/tasks/apply.js +193 -0
- package/dist/workflow/tasks/assigned.d.ts +33 -0
- package/dist/workflow/tasks/assigned.js +41 -0
- package/dist/workflow/tasks/inspect.d.ts +60 -0
- package/dist/workflow/tasks/inspect.js +171 -0
- package/dist/workflow/tasks/list-commands.d.ts +21 -0
- package/dist/workflow/tasks/list-commands.js +54 -0
- package/dist/workflow/tasks/list-defs.d.ts +21 -0
- package/dist/workflow/tasks/list-defs.js +28 -0
- package/dist/workflow/tasks/reset.d.ts +33 -0
- package/dist/workflow/tasks/reset.js +137 -0
- package/dist/workflow/tasks/shared.d.ts +75 -0
- package/dist/workflow/tasks/shared.js +124 -0
- package/dist/workflow/tasks/status.d.ts +21 -0
- package/dist/workflow/tasks/status.js +41 -0
- package/package.json +102 -8
- package/dist/cli.d.ts.map +0 -1
- package/dist/commands/config.d.ts.map +0 -1
- package/dist/commands/deploy/deployments.d.ts.map +0 -1
- package/dist/commands/deploy/editing-host.d.ts.map +0 -1
- package/dist/commands/deploy/environments/deployments.d.ts.map +0 -1
- package/dist/commands/deploy/environments/index.d.ts.map +0 -1
- package/dist/commands/deploy/environments/mutations.d.ts.map +0 -1
- package/dist/commands/deploy/environments/queries.d.ts.map +0 -1
- package/dist/commands/deploy/environments/variables.d.ts.map +0 -1
- package/dist/commands/deploy/environments.d.ts.map +0 -1
- package/dist/commands/deploy/index.d.ts.map +0 -1
- package/dist/commands/deploy/logs.d.ts.map +0 -1
- package/dist/commands/deploy/organizations.d.ts.map +0 -1
- package/dist/commands/deploy/projects.d.ts.map +0 -1
- package/dist/commands/deploy/shared.d.ts.map +0 -1
- package/dist/commands/deploy/site.d.ts.map +0 -1
- package/dist/commands/deploy/source-control.d.ts.map +0 -1
- package/dist/commands/deploy.d.ts.map +0 -1
- package/dist/commands/history.d.ts.map +0 -1
- package/dist/commands/init.d.ts.map +0 -1
- package/dist/commands/login.d.ts.map +0 -1
- package/dist/commands/logout.d.ts.map +0 -1
- package/dist/commands/recipe/index.d.ts.map +0 -1
- package/dist/commands/serialization/index.d.ts.map +0 -1
- package/dist/commands/serialization/package.d.ts.map +0 -1
- package/dist/commands/shared.d.ts.map +0 -1
- package/dist/commands/shell.d.ts.map +0 -1
- package/dist/commands/status.d.ts.map +0 -1
- package/dist/commands/telemetry.d.ts.map +0 -1
- package/dist/config/env-overrides.d.ts.map +0 -1
- package/dist/config/index.d.ts.map +0 -1
- package/dist/config/modules.d.ts.map +0 -1
- package/dist/config/paths.d.ts.map +0 -1
- package/dist/config/root-config.d.ts.map +0 -1
- package/dist/config/types.d.ts.map +0 -1
- package/dist/config/validation.d.ts.map +0 -1
- package/dist/deploy/api/common/headers.d.ts.map +0 -1
- package/dist/deploy/api/common/index.d.ts +0 -4
- package/dist/deploy/api/common/index.d.ts.map +0 -1
- package/dist/deploy/api/common/index.js +0 -19
- package/dist/deploy/api/common/request.d.ts.map +0 -1
- package/dist/deploy/api/common/types.d.ts.map +0 -1
- package/dist/deploy/api/common.d.ts +0 -2
- package/dist/deploy/api/common.d.ts.map +0 -1
- package/dist/deploy/api/common.js +0 -17
- package/dist/deploy/api/deployment-logs.d.ts.map +0 -1
- package/dist/deploy/api/deployments.d.ts.map +0 -1
- package/dist/deploy/api/environments.d.ts.map +0 -1
- package/dist/deploy/api/index.d.ts.map +0 -1
- package/dist/deploy/api/logs.d.ts.map +0 -1
- package/dist/deploy/api/organizations.d.ts.map +0 -1
- package/dist/deploy/api/projects.d.ts.map +0 -1
- package/dist/deploy/api/source-control.d.ts.map +0 -1
- package/dist/deploy/api.d.ts.map +0 -1
- package/dist/deploy/tasks/deployment-result.d.ts.map +0 -1
- package/dist/deploy/tasks/deployments.d.ts.map +0 -1
- package/dist/deploy/tasks/editing-host.d.ts.map +0 -1
- package/dist/deploy/tasks/environments.d.ts.map +0 -1
- package/dist/deploy/tasks/index.d.ts +0 -10
- package/dist/deploy/tasks/index.d.ts.map +0 -1
- package/dist/deploy/tasks/index.js +0 -25
- package/dist/deploy/tasks/logs.d.ts.map +0 -1
- package/dist/deploy/tasks/organizations.d.ts.map +0 -1
- package/dist/deploy/tasks/projects.d.ts.map +0 -1
- package/dist/deploy/tasks/shared.d.ts.map +0 -1
- package/dist/deploy/tasks/site-bind.d.ts.map +0 -1
- package/dist/deploy/tasks/site.d.ts.map +0 -1
- package/dist/deploy/tasks/source-control.d.ts.map +0 -1
- package/dist/deploy/tasks/types.d.ts.map +0 -1
- package/dist/deploy/tasks.d.ts +0 -3
- package/dist/deploy/tasks.d.ts.map +0 -1
- package/dist/deploy/tasks.js +0 -18
- package/dist/recipe/api/auth.d.ts.map +0 -1
- package/dist/recipe/api/authoring-client.d.ts.map +0 -1
- package/dist/recipe/api/client.d.ts.map +0 -1
- package/dist/recipe/api/graphql.d.ts.map +0 -1
- package/dist/recipe/api/ref-encoding.d.ts.map +0 -1
- package/dist/recipe/api/site-discovery.d.ts.map +0 -1
- package/dist/recipe/api/sites-client.d.ts.map +0 -1
- package/dist/recipe/cache.d.ts.map +0 -1
- package/dist/recipe/compile/component-section.d.ts.map +0 -1
- package/dist/recipe/compile/component-template.d.ts.map +0 -1
- package/dist/recipe/compile/content-item.d.ts.map +0 -1
- package/dist/recipe/compile/content-template.d.ts.map +0 -1
- package/dist/recipe/compile/enumeration.d.ts.map +0 -1
- package/dist/recipe/compile/page-design.d.ts.map +0 -1
- package/dist/recipe/compile/parameters-template.d.ts +0 -14
- package/dist/recipe/compile/parameters-template.d.ts.map +0 -1
- package/dist/recipe/compile/parameters-template.js +0 -92
- package/dist/recipe/compile/partial-design.d.ts.map +0 -1
- package/dist/recipe/compile/section-definition.d.ts.map +0 -1
- package/dist/recipe/compile/shared.d.ts.map +0 -1
- package/dist/recipe/compile/site-template.d.ts.map +0 -1
- package/dist/recipe/compile/site.d.ts.map +0 -1
- package/dist/recipe/compile.d.ts.map +0 -1
- package/dist/recipe/execute.d.ts.map +0 -1
- package/dist/recipe/guids.d.ts.map +0 -1
- package/dist/recipe/index.d.ts.map +0 -1
- package/dist/recipe/io.d.ts.map +0 -1
- package/dist/recipe/ir/operations.d.ts.map +0 -1
- package/dist/recipe/ir/sitecore-templates.d.ts.map +0 -1
- package/dist/recipe/layout/emit.d.ts.map +0 -1
- package/dist/recipe/layout/templates-mapping.d.ts.map +0 -1
- package/dist/recipe/plan.d.ts.map +0 -1
- package/dist/recipe/policy.d.ts.map +0 -1
- package/dist/recipe/rollback.d.ts.map +0 -1
- package/dist/recipe/schema/field-types.d.ts.map +0 -1
- package/dist/recipe/schema/recipe.d.ts.map +0 -1
- package/dist/recipe/schema/source-fields.d.ts.map +0 -1
- package/dist/recipe/tasks/compile.d.ts.map +0 -1
- package/dist/recipe/tasks/diff.d.ts.map +0 -1
- package/dist/recipe/tasks/index.d.ts +0 -9
- package/dist/recipe/tasks/index.d.ts.map +0 -1
- package/dist/recipe/tasks/index.js +0 -13
- package/dist/recipe/tasks/placeholder-allow.d.ts.map +0 -1
- package/dist/recipe/tasks/plan.d.ts.map +0 -1
- package/dist/recipe/tasks/prune-defaults.d.ts.map +0 -1
- package/dist/recipe/tasks/push.d.ts.map +0 -1
- package/dist/recipe/tasks/shared.d.ts.map +0 -1
- package/dist/recipe/validate.d.ts.map +0 -1
- package/dist/serialization/commands.d.ts.map +0 -1
- package/dist/serialization/compare.d.ts.map +0 -1
- package/dist/serialization/field-filter.d.ts.map +0 -1
- package/dist/serialization/filesystem-store/constants.d.ts.map +0 -1
- package/dist/serialization/filesystem-store/index.d.ts +0 -4
- package/dist/serialization/filesystem-store/index.d.ts.map +0 -1
- package/dist/serialization/filesystem-store/index.js +0 -15
- package/dist/serialization/filesystem-store/items.d.ts.map +0 -1
- package/dist/serialization/filesystem-store/roles.d.ts.map +0 -1
- package/dist/serialization/filesystem-store/users.d.ts.map +0 -1
- package/dist/serialization/filesystem-store/utils.d.ts.map +0 -1
- package/dist/serialization/filesystem-store.d.ts +0 -2
- package/dist/serialization/filesystem-store.d.ts.map +0 -1
- package/dist/serialization/filesystem-store.js +0 -17
- package/dist/serialization/item-path.d.ts.map +0 -1
- package/dist/serialization/path-provider.d.ts.map +0 -1
- package/dist/serialization/signature.d.ts.map +0 -1
- package/dist/serialization/sitecore-api/auth.d.ts +0 -31
- package/dist/serialization/sitecore-api/auth.d.ts.map +0 -1
- package/dist/serialization/sitecore-api/auth.js +0 -319
- package/dist/serialization/sitecore-api/graphql.d.ts +0 -12
- package/dist/serialization/sitecore-api/graphql.d.ts.map +0 -1
- package/dist/serialization/sitecore-api/history.d.ts +0 -9
- package/dist/serialization/sitecore-api/history.d.ts.map +0 -1
- package/dist/serialization/sitecore-api/index.d.ts +0 -7
- package/dist/serialization/sitecore-api/index.d.ts.map +0 -1
- package/dist/serialization/sitecore-api/index.js +0 -22
- package/dist/serialization/sitecore-api/items.d.ts +0 -8
- package/dist/serialization/sitecore-api/items.d.ts.map +0 -1
- package/dist/serialization/sitecore-api/items.js +0 -132
- package/dist/serialization/sitecore-api/publish.d.ts +0 -14
- package/dist/serialization/sitecore-api/publish.d.ts.map +0 -1
- package/dist/serialization/sitecore-api/publish.js +0 -43
- package/dist/serialization/sitecore-api/roles.d.ts +0 -9
- package/dist/serialization/sitecore-api/roles.d.ts.map +0 -1
- package/dist/serialization/sitecore-api/users.d.ts +0 -9
- package/dist/serialization/sitecore-api/users.d.ts.map +0 -1
- package/dist/serialization/sitecore-api.d.ts +0 -2
- package/dist/serialization/sitecore-api.d.ts.map +0 -1
- package/dist/serialization/sitecore-api.js +0 -17
- package/dist/serialization/tasks/diff.d.ts.map +0 -1
- package/dist/serialization/tasks/env/constants.d.ts.map +0 -1
- package/dist/serialization/tasks/env/deploy-token.d.ts.map +0 -1
- package/dist/serialization/tasks/env/index.d.ts +0 -5
- package/dist/serialization/tasks/env/index.d.ts.map +0 -1
- package/dist/serialization/tasks/env/index.js +0 -11
- package/dist/serialization/tasks/env/init/auth.d.ts.map +0 -1
- package/dist/serialization/tasks/env/init/deploy-lookup.d.ts.map +0 -1
- package/dist/serialization/tasks/env/init.d.ts.map +0 -1
- package/dist/serialization/tasks/env/logout.d.ts.map +0 -1
- package/dist/serialization/tasks/env/status.d.ts.map +0 -1
- package/dist/serialization/tasks/env.d.ts +0 -2
- package/dist/serialization/tasks/env.d.ts.map +0 -1
- package/dist/serialization/tasks/env.js +0 -17
- package/dist/serialization/tasks/helpers/collect.d.ts.map +0 -1
- package/dist/serialization/tasks/helpers/commands.d.ts.map +0 -1
- package/dist/serialization/tasks/helpers/filesystem.d.ts.map +0 -1
- package/dist/serialization/tasks/helpers/index.d.ts +0 -6
- package/dist/serialization/tasks/helpers/index.d.ts.map +0 -1
- package/dist/serialization/tasks/helpers/index.js +0 -13
- package/dist/serialization/tasks/helpers/items.d.ts.map +0 -1
- package/dist/serialization/tasks/helpers/sitecore.d.ts.map +0 -1
- package/dist/serialization/tasks/helpers.d.ts +0 -2
- package/dist/serialization/tasks/helpers.d.ts.map +0 -1
- package/dist/serialization/tasks/helpers.js +0 -17
- package/dist/serialization/tasks/index.d.ts +0 -8
- package/dist/serialization/tasks/index.d.ts.map +0 -1
- package/dist/serialization/tasks/index.js +0 -19
- package/dist/serialization/tasks/info.d.ts.map +0 -1
- package/dist/serialization/tasks/package.d.ts.map +0 -1
- package/dist/serialization/tasks/pull.d.ts.map +0 -1
- package/dist/serialization/tasks/push.d.ts.map +0 -1
- package/dist/serialization/tasks/roles.d.ts.map +0 -1
- package/dist/serialization/tasks/shared.d.ts.map +0 -1
- package/dist/serialization/tasks/types.d.ts.map +0 -1
- package/dist/serialization/tasks/users.d.ts.map +0 -1
- package/dist/serialization/tasks/validate.d.ts.map +0 -1
- package/dist/serialization/tasks/watch.d.ts.map +0 -1
- package/dist/serialization/tasks.d.ts +0 -4
- package/dist/serialization/tasks.d.ts.map +0 -1
- package/dist/serialization/tasks.js +0 -19
- package/dist/serialization/tree-spec.d.ts.map +0 -1
- package/dist/serialization/types.d.ts.map +0 -1
- package/dist/serialization/wildcard.d.ts.map +0 -1
- package/dist/serialization/yaml.d.ts.map +0 -1
- package/dist/shared/browser.d.ts.map +0 -1
- package/dist/shared/cli-options.d.ts.map +0 -1
- package/dist/shared/cli-tasks.d.ts.map +0 -1
- package/dist/shared/config-template.d.ts.map +0 -1
- package/dist/shared/env.d.ts +0 -28
- package/dist/shared/env.d.ts.map +0 -1
- package/dist/shared/env.js +0 -38
- package/dist/shared/errors.d.ts.map +0 -1
- package/dist/shared/graphql.d.ts.map +0 -1
- package/dist/shared/history.d.ts.map +0 -1
- package/dist/shared/keychain.d.ts.map +0 -1
- package/dist/shared/logger.d.ts.map +0 -1
- package/dist/shared/output.d.ts.map +0 -1
- package/dist/shared/prompt.d.ts.map +0 -1
- package/dist/shared/redact.d.ts.map +0 -1
- package/dist/shared/spinner.d.ts.map +0 -1
- package/dist/shared/style.d.ts.map +0 -1
- package/dist/shared/telemetry.d.ts.map +0 -1
- package/dist/shared/validate.d.ts.map +0 -1
- package/dist/sites/api/collections.d.ts.map +0 -1
- package/dist/sites/api/index.d.ts +0 -26
- package/dist/sites/api/index.d.ts.map +0 -1
- package/dist/sites/api/index.js +0 -55
- package/dist/sites/api/jobs.d.ts.map +0 -1
- package/dist/sites/api/languages.d.ts.map +0 -1
- package/dist/sites/api/request.d.ts.map +0 -1
- package/dist/sites/api/sites.d.ts.map +0 -1
- package/dist/sites/api/types.d.ts.map +0 -1
- /package/dist/serialization/{sitecore-api → api}/graphql.js +0 -0
- /package/dist/serialization/{sitecore-api → api}/history.js +0 -0
- /package/dist/serialization/{sitecore-api → api}/roles.js +0 -0
- /package/dist/serialization/{sitecore-api → api}/users.js +0 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* In-house registry for scai MCP tools, resources, and prompts.
|
|
3
|
+
*
|
|
4
|
+
* Sits one layer above the MCP SDK's `McpServer` so we can:
|
|
5
|
+
* - serialize tool calls through a single mutex (see `dispatch.ts`),
|
|
6
|
+
* - enforce the per-call `allowWrite` gate before any side-effecting
|
|
7
|
+
* library call runs,
|
|
8
|
+
* - centralize the typed error envelope on the inner handler's
|
|
9
|
+
* return path,
|
|
10
|
+
* - expose `tools_list` / `tools_schema` for human + agent inspection
|
|
11
|
+
* without round-tripping through SDK introspection.
|
|
12
|
+
*
|
|
13
|
+
* Tool authors register handlers against this registry; `server.ts`
|
|
14
|
+
* walks the registry and forwards each entry to the SDK at startup.
|
|
15
|
+
*/
|
|
16
|
+
import type { CallToolResult, ReadResourceResult, GetPromptResult, Notification } from "@modelcontextprotocol/sdk/types.js";
|
|
17
|
+
import type { ToolAnnotations } from "@modelcontextprotocol/sdk/types.js";
|
|
18
|
+
import type { z, ZodRawShape } from "zod";
|
|
19
|
+
import type { McpContext } from "./auth";
|
|
20
|
+
export type ToolAuth = "read" | "write";
|
|
21
|
+
/**
|
|
22
|
+
* Per-call extras handed to every tool handler. Carries the cancellation
|
|
23
|
+
* signal, the progress-notification sender, and the optional progress
|
|
24
|
+
* token threaded by the client.
|
|
25
|
+
*
|
|
26
|
+
* - `signal` fires `aborted` when the client cancels the request
|
|
27
|
+
* (MCP `notifications/cancelled`). Handlers that wrap long-running
|
|
28
|
+
* operations should plumb this into the library so work stops
|
|
29
|
+
* promptly; the dispatcher converts the aborted state into a
|
|
30
|
+
* `CANCELLED` envelope after the handler returns.
|
|
31
|
+
* - `sendProgress` is a no-op when the client didn't supply a
|
|
32
|
+
* `progressToken`, so handlers can call it unconditionally.
|
|
33
|
+
*/
|
|
34
|
+
export interface ToolExtra {
|
|
35
|
+
signal: AbortSignal;
|
|
36
|
+
/** Token the client supplied; absent when the client didn't request progress. */
|
|
37
|
+
progressToken: string | number | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* Emit a progress notification to the client. No-op when `progressToken`
|
|
40
|
+
* is absent. Always returns successfully (errors are swallowed and
|
|
41
|
+
* traced via stderr); progress is advisory, never load-bearing.
|
|
42
|
+
*/
|
|
43
|
+
sendProgress: (progress: number, total: number | undefined, message?: string) => Promise<void>;
|
|
44
|
+
/** Lower-level escape hatch — send any notification frame. */
|
|
45
|
+
sendNotification: (notification: Notification) => Promise<void>;
|
|
46
|
+
}
|
|
47
|
+
export interface ToolDescriptor<TShape extends ZodRawShape = ZodRawShape> {
|
|
48
|
+
name: string;
|
|
49
|
+
/** Short, agent-readable summary. Hand-authored, ≥50 chars. */
|
|
50
|
+
description: string;
|
|
51
|
+
/** Annotations always required (title + readOnlyHint + destructiveHint + openWorldHint). */
|
|
52
|
+
annotations: ToolAnnotations;
|
|
53
|
+
/** Discriminator that drives the dispatch-time `allowWrite` gate. */
|
|
54
|
+
auth: ToolAuth;
|
|
55
|
+
/** Zod raw shape for the SDK's input validation. May be empty. */
|
|
56
|
+
inputSchema: TShape;
|
|
57
|
+
/** Tool handler. Receives the typed input, bound context, and per-call extras. */
|
|
58
|
+
handler: (input: z.infer<z.ZodObject<TShape>>, context: McpContext, extra: ToolExtra) => CallToolResult | Promise<CallToolResult>;
|
|
59
|
+
}
|
|
60
|
+
export interface ResourceDescriptor {
|
|
61
|
+
uri: string;
|
|
62
|
+
name: string;
|
|
63
|
+
description: string;
|
|
64
|
+
mimeType: string;
|
|
65
|
+
handler: (context: McpContext) => ReadResourceResult | Promise<ReadResourceResult>;
|
|
66
|
+
}
|
|
67
|
+
export interface PromptDescriptor<TShape extends ZodRawShape = ZodRawShape> {
|
|
68
|
+
name: string;
|
|
69
|
+
description: string;
|
|
70
|
+
argsSchema: TShape;
|
|
71
|
+
handler: (args: z.infer<z.ZodObject<TShape>>, context: McpContext) => GetPromptResult | Promise<GetPromptResult>;
|
|
72
|
+
}
|
|
73
|
+
export declare class McpRegistry {
|
|
74
|
+
private readonly tools;
|
|
75
|
+
private readonly resources;
|
|
76
|
+
private readonly prompts;
|
|
77
|
+
registerTool<TShape extends ZodRawShape>(descriptor: ToolDescriptor<TShape>): void;
|
|
78
|
+
registerResource(descriptor: ResourceDescriptor): void;
|
|
79
|
+
registerPrompt<TShape extends ZodRawShape>(descriptor: PromptDescriptor<TShape>): void;
|
|
80
|
+
getTool(name: string): ToolDescriptor | undefined;
|
|
81
|
+
listTools(): ToolDescriptor[];
|
|
82
|
+
listResources(): ResourceDescriptor[];
|
|
83
|
+
listPrompts(): PromptDescriptor[];
|
|
84
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* In-house registry for scai MCP tools, resources, and prompts.
|
|
4
|
+
*
|
|
5
|
+
* Sits one layer above the MCP SDK's `McpServer` so we can:
|
|
6
|
+
* - serialize tool calls through a single mutex (see `dispatch.ts`),
|
|
7
|
+
* - enforce the per-call `allowWrite` gate before any side-effecting
|
|
8
|
+
* library call runs,
|
|
9
|
+
* - centralize the typed error envelope on the inner handler's
|
|
10
|
+
* return path,
|
|
11
|
+
* - expose `tools_list` / `tools_schema` for human + agent inspection
|
|
12
|
+
* without round-tripping through SDK introspection.
|
|
13
|
+
*
|
|
14
|
+
* Tool authors register handlers against this registry; `server.ts`
|
|
15
|
+
* walks the registry and forwards each entry to the SDK at startup.
|
|
16
|
+
*/
|
|
17
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
|
+
exports.McpRegistry = void 0;
|
|
19
|
+
class McpRegistry {
|
|
20
|
+
constructor() {
|
|
21
|
+
this.tools = new Map();
|
|
22
|
+
this.resources = new Map();
|
|
23
|
+
this.prompts = new Map();
|
|
24
|
+
}
|
|
25
|
+
registerTool(descriptor) {
|
|
26
|
+
if (this.tools.has(descriptor.name)) {
|
|
27
|
+
throw new Error(`Duplicate tool registration: '${descriptor.name}'.`);
|
|
28
|
+
}
|
|
29
|
+
if (!descriptor.description || descriptor.description.length < 50) {
|
|
30
|
+
throw new Error(`Tool '${descriptor.name}' description must be at least 50 characters (got ${descriptor.description?.length ?? 0}).`);
|
|
31
|
+
}
|
|
32
|
+
if (!descriptor.annotations.title) {
|
|
33
|
+
throw new Error(`Tool '${descriptor.name}' must declare annotations.title.`);
|
|
34
|
+
}
|
|
35
|
+
this.tools.set(descriptor.name, descriptor);
|
|
36
|
+
}
|
|
37
|
+
registerResource(descriptor) {
|
|
38
|
+
if (this.resources.has(descriptor.uri)) {
|
|
39
|
+
throw new Error(`Duplicate resource registration: '${descriptor.uri}'.`);
|
|
40
|
+
}
|
|
41
|
+
this.resources.set(descriptor.uri, descriptor);
|
|
42
|
+
}
|
|
43
|
+
registerPrompt(descriptor) {
|
|
44
|
+
if (this.prompts.has(descriptor.name)) {
|
|
45
|
+
throw new Error(`Duplicate prompt registration: '${descriptor.name}'.`);
|
|
46
|
+
}
|
|
47
|
+
this.prompts.set(descriptor.name, descriptor);
|
|
48
|
+
}
|
|
49
|
+
getTool(name) {
|
|
50
|
+
return this.tools.get(name);
|
|
51
|
+
}
|
|
52
|
+
listTools() {
|
|
53
|
+
return Array.from(this.tools.values()).sort((a, b) => a.name.localeCompare(b.name));
|
|
54
|
+
}
|
|
55
|
+
listResources() {
|
|
56
|
+
return Array.from(this.resources.values()).sort((a, b) => a.uri.localeCompare(b.uri));
|
|
57
|
+
}
|
|
58
|
+
listPrompts() {
|
|
59
|
+
return Array.from(this.prompts.values()).sort((a, b) => a.name.localeCompare(b.name));
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
exports.McpRegistry = McpRegistry;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* `scai://help/brand-*` resources — agent-discoverable guidance for the
|
|
3
|
+
* brand area. Two markdown documents:
|
|
4
|
+
*
|
|
5
|
+
* - `scai://help/brand-kit-generation` — marketing-shaped guide for
|
|
6
|
+
* agents told "create a brand kit for <real brand>". Walks the
|
|
7
|
+
* two ingestion paths (URL-mode seed vs. direct-PATCH), explains
|
|
8
|
+
* every default section, and gives a prompt skeleton for
|
|
9
|
+
* generating brand-guidelines source content.
|
|
10
|
+
*
|
|
11
|
+
* - `scai://help/brand-file-formats` — reference for the file format
|
|
12
|
+
* quirks the brand area surfaces. Explains why only URL upload
|
|
13
|
+
* works, the "I have a local PDF" path (host it first), and what
|
|
14
|
+
* makes a PDF parseable.
|
|
15
|
+
*
|
|
16
|
+
* Both are deliberately tight — agents pull these into context to make
|
|
17
|
+
* one decision (which path to use), not to read a textbook.
|
|
18
|
+
*/
|
|
19
|
+
import type { McpRegistry } from "../registry";
|
|
20
|
+
export declare const registerBrandResources: (registry: McpRegistry) => void;
|
|
@@ -0,0 +1,514 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* `scai://help/brand-*` resources — agent-discoverable guidance for the
|
|
4
|
+
* brand area. Two markdown documents:
|
|
5
|
+
*
|
|
6
|
+
* - `scai://help/brand-kit-generation` — marketing-shaped guide for
|
|
7
|
+
* agents told "create a brand kit for <real brand>". Walks the
|
|
8
|
+
* two ingestion paths (URL-mode seed vs. direct-PATCH), explains
|
|
9
|
+
* every default section, and gives a prompt skeleton for
|
|
10
|
+
* generating brand-guidelines source content.
|
|
11
|
+
*
|
|
12
|
+
* - `scai://help/brand-file-formats` — reference for the file format
|
|
13
|
+
* quirks the brand area surfaces. Explains why only URL upload
|
|
14
|
+
* works, the "I have a local PDF" path (host it first), and what
|
|
15
|
+
* makes a PDF parseable.
|
|
16
|
+
*
|
|
17
|
+
* Both are deliberately tight — agents pull these into context to make
|
|
18
|
+
* one decision (which path to use), not to read a textbook.
|
|
19
|
+
*/
|
|
20
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
21
|
+
exports.registerBrandResources = void 0;
|
|
22
|
+
const BRAND_KIT_GENERATION_TEXT = `# Brand kit generation — agent loop
|
|
23
|
+
|
|
24
|
+
scai's brand area lets you create Sitecore AI brand kits from source
|
|
25
|
+
material, then evaluate marketing copy against them. This resource is
|
|
26
|
+
for agents asked to **create a brand kit for a real brand** (Spotify,
|
|
27
|
+
Apple, Mailchimp, …).
|
|
28
|
+
|
|
29
|
+
## Two paths — pick by whether you have a hostable PDF
|
|
30
|
+
|
|
31
|
+
The root constraint is **how a document reaches Sitecore**, not what
|
|
32
|
+
the PDF looks like. Document upload has exactly one working transport:
|
|
33
|
+
|
|
34
|
+
- **URL mode works.** Sitecore fetches the PDF server-side from an
|
|
35
|
+
HTTPS URL its edge can reach, copies it to MMS, and processes it.
|
|
36
|
+
- **base64 / \`data:\` URL upload does NOT work.** The POST is accepted
|
|
37
|
+
(201) but the server never decodes the inline bytes — the doc sticks
|
|
38
|
+
at \`pages: 0\`, reaches \`chunked: true\` on nothing, never reaches
|
|
39
|
+
\`summarized\`, and transitions to \`failed\` after ~6 min. Verified
|
|
40
|
+
2026-05-15 against **both** a synthesized PDF (headless Chrome,
|
|
41
|
+
WeasyPrint) **and a real InDesign-class PDF** (an 8-page slice of a
|
|
42
|
+
genuine published report). All three failed identically — so the
|
|
43
|
+
failure is the base64 transport, not the PDF's structure or origin.
|
|
44
|
+
|
|
45
|
+
Practical consequence: a PDF you can't host at a URL cannot be
|
|
46
|
+
ingested at all. That gives you two routes:
|
|
47
|
+
|
|
48
|
+
### Path A — hostable brand-guide PDF (seed flow, AI-extracted)
|
|
49
|
+
|
|
50
|
+
Use this when you have a PDF that is *already* at a public HTTPS URL,
|
|
51
|
+
or that you can host at one (S3, GitHub raw, a CDN). The brand's own
|
|
52
|
+
published guidelines PDF is ideal (look for \`/press\`, \`/brand\`,
|
|
53
|
+
\`<university>.edu/brand\`, etc.) — the seed pipeline does the heavy
|
|
54
|
+
lifting and the AI summary is high-quality when reading real brand
|
|
55
|
+
authoring. Content shape still matters: the pipeline summarizes
|
|
56
|
+
best from PDFs structured like brand guidelines (see "Source PDF
|
|
57
|
+
structure that works" below).
|
|
58
|
+
|
|
59
|
+
1. **Research** the brand's voice, audience, and identity from public
|
|
60
|
+
sources.
|
|
61
|
+
2. **Get the PDF to an HTTPS URL** — either find one the brand already
|
|
62
|
+
publishes, or host your own copy. A purely local PDF cannot be
|
|
63
|
+
ingested; there is no working local-file upload.
|
|
64
|
+
3. **Seed** via \`brand_manage action=seed\` with the PDF URL. Takes
|
|
65
|
+
5–15 min.
|
|
66
|
+
4. **Verify** with \`brand_inspect verb=list-sections\` and
|
|
67
|
+
\`verb=list-fields\`. Confirm field \`value\`s are populated.
|
|
68
|
+
|
|
69
|
+
### Path B — no hostable PDF (direct-PATCH flow, recommended for AI-generated kits)
|
|
70
|
+
|
|
71
|
+
Use this when you (the agent) are *authoring* the brand guide from
|
|
72
|
+
research, or when you have a PDF you can't host at a URL. Don't try to
|
|
73
|
+
synthesize a PDF and upload it — base64 upload doesn't work, and a
|
|
74
|
+
locally-rendered PDF has nowhere to be fetched from. Go straight to
|
|
75
|
+
direct field PATCH.
|
|
76
|
+
|
|
77
|
+
1. **Research** the brand from public sources, as in path A.
|
|
78
|
+
2. **Create an empty kit** via \`brand_manage action=create-kit\`.
|
|
79
|
+
3. **Publish it** via \`brand_manage action=publish-kit\` — required
|
|
80
|
+
before sections appear.
|
|
81
|
+
4. **Trigger structure** via \`brand_manage action=run-enrichment\` to
|
|
82
|
+
make the 9 default sections + ~27 default fields appear. (Or
|
|
83
|
+
inspect after publish — they often appear without a pipeline run.)
|
|
84
|
+
5. **List fields** per section with \`brand_inspect verb=list-fields\`
|
|
85
|
+
to grab each \`sectionId\` + \`fieldId\` + \`type\` + \`intent\`.
|
|
86
|
+
6. **PATCH each field** with \`brand_manage action=update-field\`,
|
|
87
|
+
passing a \`value\` whose shape matches the field's \`type\`:
|
|
88
|
+
- \`type=text\` → \`value: "single paragraph string"\`
|
|
89
|
+
- \`type=array\` → \`value: [{ name: "first bullet" }, …]\`
|
|
90
|
+
- \`type=richArray\` → \`value: [{ name, tags: [...], restrictions }, …]\`
|
|
91
|
+
Set \`verified: true\` so the field shows as operator-curated.
|
|
92
|
+
7. **Verify** with \`brand_inspect verb=list-fields\` and try a
|
|
93
|
+
\`brand_review\`. Heads-up: \`brand_review\` may still error if the
|
|
94
|
+
kit has no successfully-ingested document attached (the review
|
|
95
|
+
endpoint uses doc chunks for RAG context). Direct-PATCH kits are
|
|
96
|
+
readable and inspectable but may not be reviewable until a real
|
|
97
|
+
brand-guide PDF is also attached.
|
|
98
|
+
|
|
99
|
+
## Default sections (always created)
|
|
100
|
+
|
|
101
|
+
Every brand kit ships with these predefined sections — they're populated
|
|
102
|
+
during ingestion if the source PDF discusses each topic:
|
|
103
|
+
|
|
104
|
+
| Section | What goes in it |
|
|
105
|
+
|---|---|
|
|
106
|
+
| **Brand Context** | Purpose, history, ambition, target consumer, benefits |
|
|
107
|
+
| **Global Goals** | Diversity, accessibility, SEO/digital, compliance |
|
|
108
|
+
| **Tone of Voice** | Voice traits (e.g. "warm but not casual"), do/don't examples |
|
|
109
|
+
| **Do's and Don'ts** | Explicit rules ("write 'cuts page load 40%' not 'lightning fast'") |
|
|
110
|
+
| **Grammar Checklists** | Style preferences (active voice, sentence length) |
|
|
111
|
+
| **Visual Guidelines** | Logo, color palette, packaging notes |
|
|
112
|
+
| **Image Style** | Photography style, illustration treatment |
|
|
113
|
+
| **Glossary and Localization** | Approved terminology, non-translatable terms |
|
|
114
|
+
| **Checklist** | Framework / approval checklist for new content |
|
|
115
|
+
|
|
116
|
+
## Source PDF structure that works
|
|
117
|
+
|
|
118
|
+
Sitecore's AI extracts content from PDFs that look like real brand
|
|
119
|
+
guidelines. Stitching arbitrary text into a PDF rarely produces useful
|
|
120
|
+
sections — verified empirically with random PDFs (encyclopedia chapters,
|
|
121
|
+
unrelated government docs) failing summarization.
|
|
122
|
+
|
|
123
|
+
A working source PDF looks like:
|
|
124
|
+
|
|
125
|
+
\`\`\`
|
|
126
|
+
# <Brand> Brand Guidelines
|
|
127
|
+
|
|
128
|
+
## Brand Context
|
|
129
|
+
**Purpose:** <one paragraph>
|
|
130
|
+
**History:** <one paragraph>
|
|
131
|
+
**Ambition:** <one paragraph>
|
|
132
|
+
**Consumer:** <who we speak to>
|
|
133
|
+
|
|
134
|
+
## Tone of Voice
|
|
135
|
+
We are <trait 1>, <trait 2>, <trait 3>.
|
|
136
|
+
- Do: <concrete examples>
|
|
137
|
+
- Don't: <concrete anti-examples>
|
|
138
|
+
|
|
139
|
+
## Do's and Don'ts
|
|
140
|
+
1. Do <rule>. Don't <opposite>.
|
|
141
|
+
2. ...
|
|
142
|
+
|
|
143
|
+
## Visual Guidelines
|
|
144
|
+
**Color:** <hex codes + meaning>
|
|
145
|
+
**Logo:** <clear-space rules, minimum size>
|
|
146
|
+
...
|
|
147
|
+
\`\`\`
|
|
148
|
+
|
|
149
|
+
Aim for **3–8 pages, ≤500KB**. Larger PDFs (3MB+) work via URL mode but
|
|
150
|
+
sometimes hit Sitecore's parser; smaller is more reliable.
|
|
151
|
+
|
|
152
|
+
## Researching a real brand
|
|
153
|
+
|
|
154
|
+
Sources that consistently produce extractable content:
|
|
155
|
+
|
|
156
|
+
- **<brand>.com/press** or /brand-guidelines pages (some publish PDFs)
|
|
157
|
+
- **<brand>.design** (Spotify, Mailchimp, GitLab do this)
|
|
158
|
+
- The brand's app/website microcopy (read 20 pages, infer the tone)
|
|
159
|
+
- Recent ads or campaigns (capture the voice)
|
|
160
|
+
- Press releases (formal tone)
|
|
161
|
+
|
|
162
|
+
What to write down per section:
|
|
163
|
+
|
|
164
|
+
- **Brand Context**: 2–4 sentences each on purpose, history, ambition,
|
|
165
|
+
target consumer.
|
|
166
|
+
- **Tone of Voice**: 3–5 trait words ("warm, direct, expert") + 2 do/don't
|
|
167
|
+
pairs.
|
|
168
|
+
- **Dos and Don'ts**: 5–8 concrete rules. Specifics over abstractions:
|
|
169
|
+
"use action verbs in headlines" beats "be active."
|
|
170
|
+
- **Visual Guidelines**: color palette (3–5 hex codes), logo notes,
|
|
171
|
+
layout principles.
|
|
172
|
+
- **Glossary**: 5–10 brand-specific terms + which ones don't translate.
|
|
173
|
+
|
|
174
|
+
## Generating the source PDF (path A only)
|
|
175
|
+
|
|
176
|
+
scai does NOT generate PDFs — you (the agent) bring the file. Upload
|
|
177
|
+
is **URL-only** — Sitecore fetches the PDF server-side, so it must
|
|
178
|
+
live at an HTTPS URL the Sitecore edge can reach. For **path A** (real
|
|
179
|
+
brand-guide PDF), two sub-options:
|
|
180
|
+
|
|
181
|
+
1. **Use an existing brand guide URL** — fastest. Many brands publish
|
|
182
|
+
guidelines as PDFs at predictable URLs:
|
|
183
|
+
- https://www.dot.nm.gov/wp-content/uploads/2024/04/NMDOT-Public-Engagement-Brand-Guide_2024.pdf (proven to ingest cleanly)
|
|
184
|
+
- University brand sites (search "<university> brand guidelines filetype:pdf")
|
|
185
|
+
2. **Host a local brand guide yourself** — fetch or copy the PDF to a
|
|
186
|
+
public URL (S3, GitHub raw, a CDN), then pass via \`url\`. There is
|
|
187
|
+
no local-file / base64 upload path; see brand-file-formats.
|
|
188
|
+
|
|
189
|
+
**Do NOT attempt to synthesize a brand-guide PDF and feed it to seed
|
|
190
|
+
as local bytes.** The blocker is the upload transport, not the PDF: a
|
|
191
|
+
synthesized PDF has nowhere to be fetched from, and base64 / \`data:\`
|
|
192
|
+
URL upload is non-functional (POST accepted, bytes never decoded —
|
|
193
|
+
doc stalls at \`pages: 0\` and \`failed\`). This was checked thoroughly
|
|
194
|
+
on 2026-05-15: headless Chrome (\`Skia/PDF\`), WeasyPrint, a
|
|
195
|
+
\`qpdf --linearize\`'d variant, **and an 8-page slice of a genuine
|
|
196
|
+
InDesign-class published PDF** were all uploaded via base64 — every
|
|
197
|
+
one failed identically (\`chunked: true\` → never \`summarized\` →
|
|
198
|
+
\`pages: 0\` → \`failed\`). The real PDF failing the same way as the
|
|
199
|
+
synthetic ones rules out "PDF structure" as the cause. If you can host
|
|
200
|
+
the synthesized PDF at a URL it *may* ingest (content shape still
|
|
201
|
+
matters), but for AI-generated kits **path B (direct PATCH)** is
|
|
202
|
+
simpler and avoids paid pipeline runs entirely.
|
|
203
|
+
|
|
204
|
+
## Path A — seed flow (real brand-guide PDF)
|
|
205
|
+
|
|
206
|
+
\`\`\`
|
|
207
|
+
# 1. Find or fetch a real brand-guide PDF (out of scope for scai)
|
|
208
|
+
# 2. Seed (takes 5–15 min, paid AI compute)
|
|
209
|
+
brand_manage {
|
|
210
|
+
action: "seed",
|
|
211
|
+
name: "Spotify",
|
|
212
|
+
url: "https://your-cdn.example/spotify-guidelines.pdf",
|
|
213
|
+
industry: "music",
|
|
214
|
+
description: "Generated brand kit for Spotify",
|
|
215
|
+
allowWrite: true
|
|
216
|
+
}
|
|
217
|
+
# → returns kit.id, sections[], elapsedSec
|
|
218
|
+
# emits MCP progress events at each stage
|
|
219
|
+
|
|
220
|
+
# 3. Verify the kit ingested correctly
|
|
221
|
+
brand_inspect { verb: "list-sections", brandKitId: <id> }
|
|
222
|
+
# → 9 sections expected
|
|
223
|
+
|
|
224
|
+
# 4. Inspect what the AI extracted into each section
|
|
225
|
+
brand_inspect { verb: "list-fields", brandKitId: <id>, sectionId: <sec> }
|
|
226
|
+
# → fields with intent (what the AI looks for) + value (what it found)
|
|
227
|
+
|
|
228
|
+
# 5. Try a Brand Review
|
|
229
|
+
brand_review { brandKitId: <id>, text: "<test copy>", label: "test.md" }
|
|
230
|
+
\`\`\`
|
|
231
|
+
|
|
232
|
+
## Path B — direct PATCH (synthesized / AI-generated kit)
|
|
233
|
+
|
|
234
|
+
\`\`\`
|
|
235
|
+
# 1. Create the kit (no PDF needed)
|
|
236
|
+
brand_manage { action: "create-kit", name: "Allstate", industry: "Insurance",
|
|
237
|
+
description: "…", allowWrite: true }
|
|
238
|
+
# → returns kit.id
|
|
239
|
+
|
|
240
|
+
# 2. Publish so sections appear
|
|
241
|
+
brand_manage { action: "publish-kit", brandKitId: <id>, allowWrite: true }
|
|
242
|
+
|
|
243
|
+
# 3. (Optional but reliable) trigger structure
|
|
244
|
+
brand_manage { action: "run-enrichment", brandKitId: <id>, allowWrite: true }
|
|
245
|
+
|
|
246
|
+
# 4. List all sections, then per section list all fields. Capture
|
|
247
|
+
# each field's { id, type, intent } — the type drives the value
|
|
248
|
+
# shape you must write back.
|
|
249
|
+
brand_inspect { verb: "list-sections", brandKitId: <id> }
|
|
250
|
+
brand_inspect { verb: "list-fields", brandKitId: <id>, sectionId: <sec> }
|
|
251
|
+
|
|
252
|
+
# 5. PATCH each field — once per field. Set verified=true to mark
|
|
253
|
+
# operator-curated content.
|
|
254
|
+
brand_manage {
|
|
255
|
+
action: "update-field",
|
|
256
|
+
brandKitId: <id>,
|
|
257
|
+
sectionId: <sec>,
|
|
258
|
+
fieldId: <field>,
|
|
259
|
+
value: "<string for text, [{name}] for array, [{name,tags,restrictions}] for richArray>",
|
|
260
|
+
verified: true,
|
|
261
|
+
allowWrite: true
|
|
262
|
+
}
|
|
263
|
+
\`\`\`
|
|
264
|
+
|
|
265
|
+
A real Allstate kit was populated this way in 27 PATCHes (2026-05-15),
|
|
266
|
+
across all 9 default sections, after base64 PDF upload was confirmed
|
|
267
|
+
non-functional.
|
|
268
|
+
|
|
269
|
+
## Failure modes + how to recover
|
|
270
|
+
|
|
271
|
+
- **\`scai brand kits sections <id>\` shows 0 sections after 15 min**:
|
|
272
|
+
Pipeline failed. If you uploaded by URL with brand-shaped content,
|
|
273
|
+
re-seed with a better-structured source PDF; if you tried base64,
|
|
274
|
+
that's the cause — base64 upload doesn't work (see below).
|
|
275
|
+
- **\`document.status: "failed"\` during seed**: NOT a real error.
|
|
276
|
+
Sections still populate via the enrichment pipeline. Ignore and keep
|
|
277
|
+
polling.
|
|
278
|
+
- **\`document.status: "failed"\` AND field values stay empty after
|
|
279
|
+
15 min**: real failure. The most common cause is base64 / \`data:\`
|
|
280
|
+
URL upload, which is non-functional — the doc reaches \`chunked: true\`
|
|
281
|
+
on nothing, \`pages\` stays 0, and it never \`summarized\`. This was
|
|
282
|
+
verified identical for synthesized PDFs AND a real InDesign-class
|
|
283
|
+
PDF, so it is NOT a PDF-structure problem. Either host the PDF at a
|
|
284
|
+
URL and re-seed, or switch to **path B** (direct PATCH).
|
|
285
|
+
- **\`brand_review\` returns 500 'name' or 200 with empty body**: kit
|
|
286
|
+
has no sections OR no successfully-ingested document. For an
|
|
287
|
+
AI-generated kit populated via path B, attaching a real brand-guide
|
|
288
|
+
PDF (path A flow) afterwards can unlock review; the document chunks
|
|
289
|
+
feed the review endpoint's RAG context.
|
|
290
|
+
- **Auth0 403 "insufficient scope"**: AI APIs key lacks
|
|
291
|
+
\`ai.org.br:gen\`. Recreate the credential in Cloud Portal → Stream →
|
|
292
|
+
Admin → AI APIs keys.
|
|
293
|
+
- **PATCH returns 422 on \`update-field\`**: \`value\` shape doesn't
|
|
294
|
+
match the field's \`type\`. Run \`brand_inspect verb=list-fields\` to
|
|
295
|
+
confirm whether the field is \`text\` (string), \`array\` (\`[{name}]\`),
|
|
296
|
+
or \`richArray\` (\`[{name, tags, restrictions}]\`).
|
|
297
|
+
|
|
298
|
+
## Costs
|
|
299
|
+
|
|
300
|
+
Each seed runs **two paid AI pipelines** (ingestion + enrichment) and
|
|
301
|
+
each brand_review is one paid inference call. Don't loop without
|
|
302
|
+
explicit budget — there's no rate-limit visibility in the API.
|
|
303
|
+
|
|
304
|
+
## Related resources
|
|
305
|
+
|
|
306
|
+
- \`scai://help/brand-file-formats\` — exact recipes for URL/bytes/MIME
|
|
307
|
+
with the server quirks called out.
|
|
308
|
+
- \`scai://help/overview\` — scai MCP basics.
|
|
309
|
+
`;
|
|
310
|
+
const BRAND_FILE_FORMATS_TEXT = `# Brand area file formats — what works, what breaks
|
|
311
|
+
|
|
312
|
+
The Sitecore Brand Documents API has documented file-format
|
|
313
|
+
constraints AND empirically-discovered quirks. This reference is what
|
|
314
|
+
scai's brand tools learned to navigate.
|
|
315
|
+
|
|
316
|
+
## Accepted file types
|
|
317
|
+
|
|
318
|
+
**PDF only.** The endpoint advertises support for other types via its
|
|
319
|
+
\`fileType\` field, but ingestion only succeeds for PDFs. Markdown, plain
|
|
320
|
+
text, JSON, and images either reject at upload or fail during the
|
|
321
|
+
summarization pipeline.
|
|
322
|
+
|
|
323
|
+
## MIME type field — must be exact
|
|
324
|
+
|
|
325
|
+
The \`fileType\` field on the upload accepts MIME types. Use the
|
|
326
|
+
**exact MIME**, not the label:
|
|
327
|
+
|
|
328
|
+
- ✅ \`application/pdf\`
|
|
329
|
+
- ❌ \`"PDF"\`
|
|
330
|
+
- ❌ \`"pdf"\`
|
|
331
|
+
- ❌ \`"text/pdf"\` (not a real MIME)
|
|
332
|
+
|
|
333
|
+
A wrong \`fileType\` causes \`numberOfPages\` to stay 0, \`tags\` to stay
|
|
334
|
+
empty, and the doc to never reach \`processed\`. scai's \`uploadDocument\`
|
|
335
|
+
defaults to \`application/pdf\` correctly.
|
|
336
|
+
|
|
337
|
+
## Upload is URL-only
|
|
338
|
+
|
|
339
|
+
### URL mode — the only working path
|
|
340
|
+
|
|
341
|
+
Host the PDF somewhere Sitecore's edge can reach (S3, GitHub raw, public
|
|
342
|
+
CDN), pass the URL:
|
|
343
|
+
|
|
344
|
+
\`\`\`
|
|
345
|
+
brand_manage {
|
|
346
|
+
action: "upload-doc",
|
|
347
|
+
brandKitId: <kit>,
|
|
348
|
+
url: "https://your-cdn/brand-guidelines.pdf",
|
|
349
|
+
title: "Guidelines",
|
|
350
|
+
allowWrite: true
|
|
351
|
+
}
|
|
352
|
+
\`\`\`
|
|
353
|
+
|
|
354
|
+
Sitecore re-fetches the file and copies it to its own MMS (Managed
|
|
355
|
+
Media Service). The request body is tiny (just the URL string), so
|
|
356
|
+
**file size doesn't matter** — 50MB PDFs are fine if the URL works.
|
|
357
|
+
|
|
358
|
+
The response shows the MMS URL, not your original URL:
|
|
359
|
+
\`url: "https://mms-delivery.sitecorecloud.io/api/media/v1/delivery/protected/<hash>"\`
|
|
360
|
+
|
|
361
|
+
### Local files / base64 — NOT SUPPORTED
|
|
362
|
+
|
|
363
|
+
There is no working path to upload a local file to the documents API.
|
|
364
|
+
\`bytesBase64\` is rejected with \`INPUT_INVALID\`. Both routes the API
|
|
365
|
+
nominally offers are dead (verified 2026-05-15,
|
|
366
|
+
\`scripts/_smoke-brand-upload-modes.ts\`):
|
|
367
|
+
|
|
368
|
+
- **v2 multipart \`file\` part** — server-broken. Whenever a \`file\`
|
|
369
|
+
part is present the parser drops the sibling \`create_request\` part
|
|
370
|
+
and returns \`400 create_request: Field required\`. Reproduced across
|
|
371
|
+
field order, per-part Content-Type, and boundary format.
|
|
372
|
+
- **\`data:\` URL in the \`url\` field** — accepted at POST time (201)
|
|
373
|
+
but the server never decodes the inline bytes, so the doc stays at
|
|
374
|
+
\`numberOfPages: 0\`, reaches \`chunked: true\` on nothing, never
|
|
375
|
+
\`summarized\`, and ends \`failed\` after ~6 min. Confirmed identical
|
|
376
|
+
for a synthesized PDF *and* a real InDesign-class PDF — so this is
|
|
377
|
+
the transport failing, not the PDF.
|
|
378
|
+
|
|
379
|
+
If you have a local PDF: host it at an HTTPS URL first, then use URL
|
|
380
|
+
mode. To populate a kit without a PDF at all, use the direct-PATCH
|
|
381
|
+
field flow (\`action: "update-field"\`).
|
|
382
|
+
|
|
383
|
+
## PDF content requirements
|
|
384
|
+
|
|
385
|
+
The Sitecore Brand ingestion pipeline tries to extract
|
|
386
|
+
**brand-shaped knowledge** from the PDF — section names like Brand
|
|
387
|
+
Context, Tone of Voice, etc. PDFs that don't look like brand guidelines
|
|
388
|
+
fail the summarization step:
|
|
389
|
+
|
|
390
|
+
- ❌ Random encyclopedia chapter → \`status: failed\` after 5 min
|
|
391
|
+
- ❌ Government report → \`status: failed\`
|
|
392
|
+
- ❌ Hand-rolled 1-page PDF with random text → \`status: failed\`
|
|
393
|
+
- ✅ Actual brand guidelines PDF (3–8 pages, structured by section) →
|
|
394
|
+
\`status: processed\`, sections populated
|
|
395
|
+
|
|
396
|
+
## base64 upload fails — for ANY PDF, real or synthesized
|
|
397
|
+
|
|
398
|
+
The earlier theory was that *synthesized* PDFs (Chrome, WeasyPrint)
|
|
399
|
+
failed because Sitecore's parser wanted InDesign-class structure.
|
|
400
|
+
**That theory is wrong.** Controlled testing on 2026-05-15 in a real
|
|
401
|
+
tenant — every PDF below uploaded via base64 / \`data:\` URL:
|
|
402
|
+
|
|
403
|
+
| PDF | Producer | Real authoring tool? | Result |
|
|
404
|
+
|---|---|---|---|
|
|
405
|
+
| Headless Chrome render | \`Skia/PDF m148\` | no | \`chunked: true\`, \`pages: 0\` → \`failed\` |
|
|
406
|
+
| WeasyPrint render | \`WeasyPrint 68.1\` | no | \`chunked: true\`, \`pages: 0\` → \`failed\` |
|
|
407
|
+
| \`qpdf --linearize\`'d Chrome render | Skia internals | no | same failure |
|
|
408
|
+
| 8-page slice of a genuine published report | InDesign-class, Linearized | **yes** | \`chunked: true\`, \`pages: 0\` → \`failed\` |
|
|
409
|
+
|
|
410
|
+
The real InDesign-class PDF failed **identically** to the synthesized
|
|
411
|
+
ones. That rules out PDF structure as the cause. The actual cause is
|
|
412
|
+
the **base64 / \`data:\` URL upload transport**: Sitecore accepts the
|
|
413
|
+
POST (201) but never decodes the inline bytes, so every doc — real or
|
|
414
|
+
synthetic — stalls at \`pages: 0\` and ends \`failed\`.
|
|
415
|
+
|
|
416
|
+
**What actually works:** URL mode. Sitecore fetches the PDF
|
|
417
|
+
server-side from an HTTPS URL. A real brand-guide PDF hosted at a URL
|
|
418
|
+
ingests cleanly (the NMDOT guide below is the proof point).
|
|
419
|
+
|
|
420
|
+
**Recommendation:**
|
|
421
|
+
- Have a PDF + can host it at a URL → URL mode (\`action: "seed"\` or
|
|
422
|
+
\`upload-doc\` with \`url\`).
|
|
423
|
+
- Can't host it, or you're authoring the kit yourself → **path B
|
|
424
|
+
(direct PATCH)** from \`scai://help/brand-kit-generation\`.
|
|
425
|
+
- Never spend paid pipeline runs on base64 upload — it cannot succeed.
|
|
426
|
+
|
|
427
|
+
If you're authoring a PDF for URL-mode ingestion, include explicit
|
|
428
|
+
section headers matching the default kit sections (see
|
|
429
|
+
\`scai://help/brand-kit-generation\`) — content shape still affects
|
|
430
|
+
summarization quality even though it's not what causes the base64
|
|
431
|
+
failure.
|
|
432
|
+
|
|
433
|
+
## What "failed" actually means
|
|
434
|
+
|
|
435
|
+
The document's \`status\` field reaches \`failed\` ~5 min after the
|
|
436
|
+
ingestion pipeline starts, **regardless of whether enrichment succeeds**.
|
|
437
|
+
The status reflects the ingestion stage, not the kit-level outcome.
|
|
438
|
+
|
|
439
|
+
- If sections DO populate within 15 min → success, ignore the
|
|
440
|
+
\`status: failed\` flag.
|
|
441
|
+
- If sections DON'T populate within 15 min → real failure. Check the
|
|
442
|
+
upload transport first: a base64 / \`data:\` URL upload never
|
|
443
|
+
processes (see above), so that's the most common cause. If the doc
|
|
444
|
+
was uploaded by URL, the next suspect is content shape — a PDF that
|
|
445
|
+
doesn't read like brand guidelines summarizes poorly.
|
|
446
|
+
|
|
447
|
+
scai's \`seedBrandKit\` composite polls section count, not document
|
|
448
|
+
status, for exactly this reason.
|
|
449
|
+
|
|
450
|
+
## Sanity-check PDF that works
|
|
451
|
+
|
|
452
|
+
If you're debugging a tenant or scope issue and want to rule out PDF
|
|
453
|
+
content as the variable, use:
|
|
454
|
+
|
|
455
|
+
\`\`\`
|
|
456
|
+
https://www.dot.nm.gov/wp-content/uploads/2024/04/NMDOT-Public-Engagement-Brand-Guide_2024.pdf
|
|
457
|
+
\`\`\`
|
|
458
|
+
|
|
459
|
+
The NMDOT Public Engagement Brand Guide is a real, well-structured
|
|
460
|
+
brand guide that ingests + populates sections successfully (verified
|
|
461
|
+
2026-05-14). If THIS PDF fails on your tenant, the problem isn't your
|
|
462
|
+
content — it's the credential, the org's AI quota, or a Sitecore
|
|
463
|
+
incident.
|
|
464
|
+
|
|
465
|
+
## Have a local PDF? Host it, then use URL mode
|
|
466
|
+
|
|
467
|
+
\`\`\`
|
|
468
|
+
# Upload by URL (the only working path):
|
|
469
|
+
scai brand docs upload <kitId> --url https://your-cdn/brand-guidelines.pdf
|
|
470
|
+
scai brand seed --name "Spotify" --url https://your-cdn/brand-guidelines.pdf
|
|
471
|
+
\`\`\`
|
|
472
|
+
|
|
473
|
+
A local file path is rejected — host the PDF at a public HTTPS URL
|
|
474
|
+
(S3, GitHub raw, a CDN) Sitecore's edge can reach, then pass \`--url\`.
|
|
475
|
+
|
|
476
|
+
## Related resources
|
|
477
|
+
|
|
478
|
+
- \`scai://help/brand-kit-generation\` — agent loop for creating fake
|
|
479
|
+
brand kits.
|
|
480
|
+
- \`scai://help/overview\` — scai MCP basics.
|
|
481
|
+
`;
|
|
482
|
+
const registerBrandResources = (registry) => {
|
|
483
|
+
registry.registerResource({
|
|
484
|
+
uri: "scai://help/brand-kit-generation",
|
|
485
|
+
name: "Brand kit generation guide",
|
|
486
|
+
description: "Markdown guide for agents asked to create a brand kit for a real brand. Walks the research→author→seed→verify loop, lists every default section + what it captures, and provides a brand-guidelines source PDF skeleton. Pair with brand-file-formats for the upload mechanics.",
|
|
487
|
+
mimeType: "text/markdown",
|
|
488
|
+
handler: async () => ({
|
|
489
|
+
contents: [
|
|
490
|
+
{
|
|
491
|
+
uri: "scai://help/brand-kit-generation",
|
|
492
|
+
mimeType: "text/markdown",
|
|
493
|
+
text: BRAND_KIT_GENERATION_TEXT,
|
|
494
|
+
},
|
|
495
|
+
],
|
|
496
|
+
}),
|
|
497
|
+
});
|
|
498
|
+
registry.registerResource({
|
|
499
|
+
uri: "scai://help/brand-file-formats",
|
|
500
|
+
name: "Brand area file formats reference",
|
|
501
|
+
description: "Markdown reference for the file format constraints scai's brand tools navigate: MIME requirements (application/pdf, not 'PDF'), why upload is URL-only (local-file / base64 / multipart all dead), what makes a PDF parseable, and what 'status: failed' actually means.",
|
|
502
|
+
mimeType: "text/markdown",
|
|
503
|
+
handler: async () => ({
|
|
504
|
+
contents: [
|
|
505
|
+
{
|
|
506
|
+
uri: "scai://help/brand-file-formats",
|
|
507
|
+
mimeType: "text/markdown",
|
|
508
|
+
text: BRAND_FILE_FORMATS_TEXT,
|
|
509
|
+
},
|
|
510
|
+
],
|
|
511
|
+
}),
|
|
512
|
+
});
|
|
513
|
+
};
|
|
514
|
+
exports.registerBrandResources = registerBrandResources;
|