
Start with a business use case
A good starting point describes what you want users to be able to do, not the technical steps. Examples:- “Let users ask questions about Redshift warehouse usage and generate cost charts.”
- “Give support a place to see escalated accounts and recommended next actions.”
- “Turn weekly sales data into an executive report teammates can open.”
- “Create a KYC review workspace for document checks and case status.”
Example: Redshift Analyzer or Power BI Analyzer
A Redshift Analyzer lets users ask about warehouse usage, inspect query patterns, generate charts, and share the analysis. A Power BI Analyzer lets users explore reports and datasets in natural language, surface the metrics that matter, and produce a shareable summary. Both follow the same shape: a built-in frontend experience users interact with, and a backend you configure to do the work.The frontend experience (built in)
The frontend experience comes built in. Every Agentic Application includes the same set of surfaces out of the box - you don’t have to design them:- Chat for asking questions and giving instructions
- Live surfaces that show current state and progress
- Reports, dashboards, charts, and visual components
- Inputs, forms, and approvals where the workflow needs them
Set up the backend
The backend is the part you actually set up. It’s where the real work of building an Agentic Application happens:- The model that powers reasoning
- A system prompt that defines the role and output
- Skills and tools for taking action
- Data access for the systems the workflow touches
- An execution engine that runs the work

