This repository is for training purposes only.
A collection of Sitecore Agentic Studio workflow definitions used in training and demos. All files are JSON — there is no application runtime code.
Custom/ — sample workflows used as teaching examples
.vscode/ — VS Code MCP server configuration
These are hand-crafted sample workflows created for training purposes. They demonstrate how to build custom agents for Sitecore Agentic Studio. Use them as teaching examples when learning how to compose new workflows.
Current agents:
| File | Description |
|---|---|
alien-story-teller.json |
Generates alien-themed stories |
boston-sports-writer.json |
Writes Boston sports content |
translate-press-release.json |
Translates press releases |
weather-reporter.json |
Produces weather reports |
The .vscode/mcp.json file configures two MCP servers used during development:
| Server | URL |
|---|---|
marketer |
Sitecore Agentic Studio MCP (external auth — no credentials stored here) |
sitecore-docs |
Sitecore documentation MCP (SSE) |
Authentication for the marketer server is handled externally — no credentials are committed to this repo.
Get-ChildItem Custom\*.json | ForEach-Object { Get-Content $_.FullName -Raw | ConvertFrom-Json | Out-Null }Each workflow must include the top-level keys: schema_version, id, actions, version, is_active.