Day 3

Agentic AI
Foundations

Autonomous Workflows & Future Architecture

AnyCompany Financial Group · Generative & Agentic AI on AWS

Day 3 Agenda

  • AI Agents vs Agentic AI — definitions, differences, when to use which
  • Core Agentic AI Concepts — the Observe → Plan → Act → Reflect loop
  • Amazon Bedrock AgentCore & AWS Roadmap
  • Workflow Automation Deep Dive — invoice processing, reconciliation, fraud
  • "Opening Minds to Possibilities" — design your own workflow
  • Hands-on: Claude Code in Action on AWS & MCP Servers
  • AWS Specialist Team Sharing Session & Q&A

Foundations

AI Agents vs
Agentic AI

What's the difference and when does it matter?

AI Agent vs Agentic AI

AI Agent

A single AI that can use tools to complete a specific task.

  • Follows a defined workflow
  • Uses tools (search, calculate, API calls)
  • Completes one task at a time
  • Human defines the steps

Example: A chatbot that looks up account balances and answers customer questions

Agentic AI System

Multiple AI agents working together autonomously to achieve a goal.

  • Plans its own approach
  • Breaks complex goals into subtasks
  • Coordinates multiple agents
  • Reflects and adjusts strategy

Example: A system that receives an invoice, extracts data, validates against POs, flags discrepancies, and routes for approval — all autonomously

When to Use Which?

ScenarioUseWhy
Answer customer FAQsAI AgentSingle task, defined scope
Classify support ticketsAI AgentOne-step classification
Process invoice end-to-endAgentic AIMulti-step: extract, validate, route, report
Fraud investigationAgentic AIAnalyze patterns, gather evidence, draft report
Loan application reviewAgentic AICheck docs, verify data, assess risk, recommend
Generate a single reportAI AgentOne prompt, one output

Key takeaway: Start with agents for simple tasks. Graduate to agentic systems when you need multi-step workflows with decision points.

Key Takeaway: AI Agents vs Agentic AI

  • AI Agent = one skilled worker following instructions. Good for single, well-defined tasks.
  • Agentic AI = a team that plans, executes, and adapts. Good for multi-step workflows with decision points.
  • Most business tasks start as agents and evolve into agentic systems as complexity grows.
  • The prompt templates you built on Day 2 are the building blocks for agentic workflows.
  • Start simple. Don't build an agentic system when a good prompt will do.

Core Concepts

The Agentic
AI Loop

Goals, Memory, Tools, Reasoning, Planning, Reflection

6 Components of Agentic AI

1. Goals

What the system is trying to achieve. Clear goals = better outcomes.

2. Memory

What the system remembers across steps. Short-term (current task) and long-term (learned patterns).

3. Tools

External capabilities: search, calculate, call APIs, read databases, send emails.

4. Reasoning

How the system thinks through problems. Chain-of-Thought from Day 2 is the foundation.

5. Planning

Breaking a complex goal into ordered subtasks. "First extract, then validate, then route."

6. Reflection

Self-checking: "Did my output meet the goal? Should I try a different approach?"

The Agentic Loop

        ┌─────────────┐
        │   OBSERVE    │  ← Receive task or new information
        └──────┬───────┘
               │
        ┌──────▼───────┐
        │    PLAN       │  ← Break into subtasks, choose tools
        └──────┬───────┘
               │
        ┌──────▼───────┐
        │     ACT       │  ← Execute: call tools, generate output
        └──────┬───────┘
               │
        ┌──────▼───────┐
        │   REFLECT     │  ← Check: Did it work? Adjust if needed
        └──────┬───────┘
               │
        ┌──────▼───────┐
        │  GOAL MET?    │──Yes──▶ Done
        └──────┬───────┘
               │ No
               └──────────▶ Back to OBSERVE

Key Takeaway: The Agentic Loop

  • Every agentic system follows: Observe → Plan → Act → Reflect → Repeat
  • The "Reflect" step is what makes it intelligent — it can catch its own mistakes and retry
  • This is the same self-critique technique from Day 2, but automated
  • When designing workflows, ask: "What happens when a step fails?" — that's where reflection matters
  • The loop continues until the goal is met or a human is asked to intervene

AWS Platform

Amazon Bedrock
AgentCore

From DIY agents to managed infrastructure

The DIY Agent Challenge

Many teams build agents from scratch. Common pain points:

  • Orchestration complexity — managing multi-step workflows, retries, error handling
  • Memory management — maintaining context across long conversations and sessions
  • Tool integration — connecting to internal APIs, databases, and services
  • Scaling — handling concurrent users, rate limits, cost management
  • Monitoring — knowing when agents fail, drift, or produce bad output
  • Security — controlling what agents can access and do

Reality check: Building a reliable agentic system from scratch takes 3-6 months of engineering. Maintaining it is an ongoing cost.

AgentCore: What It Provides

CapabilityWhat it doesBusiness benefit
Agent RuntimeHosts and runs your agentsNo infrastructure to manage
MemoryPersistent context across sessionsAgents remember past interactions
Tool UseConnect agents to APIs and databasesAgents can take real actions
GuardrailsSafety filters and access controlsPrevent harmful or unauthorized actions
Knowledge BasesRAG over your documentsAgents answer from YOUR data
OrchestrationMulti-agent coordinationComplex workflows without custom code

Transition Path: DIY → AgentCore

PhaseWhat to doTimeline
1. AssessInventory current DIY agents, identify pain points2-4 weeks
2. PilotMigrate one low-risk agent to AgentCore4-6 weeks
3. ValidateCompare performance, cost, reliability2-4 weeks
4. MigrateMove remaining agents in priority order3-6 months
5. OptimizeLeverage AgentCore features (multi-agent, guardrails)Ongoing

Key benefit: Reduced maintenance burden, better reliability, faster development of new agents.

Key Takeaway: AgentCore

  • AgentCore handles the hard parts — orchestration, memory, scaling, security — so you focus on business logic
  • It's not "replace your agents" — it's "stop maintaining infrastructure and focus on what agents DO"
  • Knowledge Bases = enterprise RAG (same grounding technique from Day 2, at scale)
  • Guardrails = responsible AI controls (same concepts from Day 1, enforced automatically)
  • Start with a pilot — one agent, one use case. Prove value before migrating everything.

Deep Dive

Workflow
Automation

From manual processes to autonomous pipelines

Example: Invoice Processing Workflow

  📄 Invoice arrives (email/upload)
         │
    ┌────▼────┐
    │ EXTRACT  │  AI reads PDF, extracts vendor, amount, 
    │  DATA    │  line items, dates
    └────┬────┘
         │
    ┌────▼────┐
    │ VALIDATE │  Match against PO database
    │ vs PO    │  Check amounts within tolerance
    └────┬────┘
         │
    ┌────▼────────────────────┐
    │ DECISION                 │
    │ ✅ Match → Auto-approve  │
    │ ⚠️ Variance → Flag       │
    │ ❌ No PO → Escalate      │
    └────┬────────────────────┘
         │
    ┌────▼────┐
    │ REPORT   │  Generate validation report
    │          │  Update dashboard
    └─────────┘

More Workflow Opportunities

WorkflowStepsBusiness impact
Payment ReconciliationMatch txns → Flag mismatches → Suggest resolutions → ReportDays → hours
Fraud InvestigationDetect pattern → Gather evidence → Score risk → Draft case fileConsistent, faster triage
Loan ProcessingCheck docs → Verify data → Assess risk → RecommendFaster approvals, fewer errors
KYC VerificationExtract ID data → Check watchlists → Verify docs → Flag issuesHigher volume, consistent checks
Compliance ReportingScan txns → Apply rules → Generate report → Export for regulatorAudit-ready, automated

Key Takeaway: Workflow Automation

  • Every workflow follows: Input → Process → Decide → Output
  • Each step is a prompt template (Day 2) connected by decision logic
  • Start with the happy path — automate the 80% that's straightforward
  • Route exceptions to humans — don't try to automate edge cases on day one
  • Measure: time saved, error reduction, consistency improvement
  • The Kiro exercises you did (invoice processing, fraud detection) are prototypes of these workflows

Interactive

"Opening Minds
to Possibilities"

What could YOU automate?

Workshop: Design Your Workflow

In groups of 3-4, pick a workflow from your team and design it:

Step 1: Identify (10 min)

  • What manual process takes the most time?
  • Where do errors happen most often?
  • What's repetitive but requires judgment?

Step 2: Map (15 min)

  • Draw the current process (boxes and arrows)
  • Identify which steps AI could handle
  • Mark decision points and exception paths

Step 3: Assess (10 min)

  • Feasibility: Can current AI do this?
  • Impact: How much time/cost saved?
  • Risk: What if the AI gets it wrong?

Step 4: Present (5 min each)

  • Share your workflow with the group
  • Get feedback and suggestions
  • Identify quick wins vs long-term projects

Key Takeaway: Designing AI Workflows

  • Best candidates for automation: repetitive, judgment-based, high-volume, error-prone
  • Worst candidates: rare, highly creative, politically sensitive, no clear success criteria
  • Always ask: "What's the cost of the AI being wrong?" — that determines how much human oversight you need
  • Quick wins: Report generation, data extraction, classification, summarization
  • Long-term projects: End-to-end processing, multi-system integration, autonomous decision-making
  • Document your workflow design — it becomes the requirements spec for implementation

Hands-on

AI-Powered IDEs
in Action

Claude Code, Kiro, and MCP Servers

MCP: Model Context Protocol

MCP connects AI to your internal tools and data sources:

What MCP doesExample
Connect AI to databasesAI queries your transaction database directly
Connect AI to APIsAI calls your internal risk scoring API
Connect AI to file systemsAI reads and writes to your document store
Connect AI to monitoringAI checks system health dashboards

For business users: MCP is what turns AI from "a chatbot that answers questions" into "a system that can actually DO things in your environment." You don't need to build MCP servers — your engineering team does. But understanding what's possible helps you design better workflows.

Key Takeaway: AI-Powered Development Tools

  • Kiro (Day 1-2 exercises) — business users describe what they want, AI builds it
  • Claude Code / Cursor — developers build production systems with AI pair programming
  • MCP — the protocol that connects AI to your internal tools and databases
  • Business users don't need to code — but understanding what's possible helps design better workflows
  • The gap between "prototype in Kiro" and "production system" is where engineering teams add MCP, guardrails, and monitoring

Synthesis

Connecting
All Three Days

From concepts to templates to autonomous systems

The 3-Day Journey

DayWhat you learnedWhat you built
Day 1GenAI fundamentals, Bedrock, responsible AIUnderstanding of what's possible and safe
Day 2Prompt engineering techniquesReusable prompt templates for your team
Day 3Agentic AI, workflows, AgentCoreWorkflow designs for your specific use cases

The thread: Day 1's responsible AI principles → enforced by Day 3's guardrails. Day 2's prompt templates → become Day 3's workflow building blocks. Day 2's RAG grounding → becomes Day 3's Knowledge Bases.

Day 3 Outcomes

  • Distinguish between AI agents and agentic AI systems
  • Understand the agentic loop: Observe → Plan → Act → Reflect
  • Evaluate Amazon Bedrock AgentCore for your organization
  • Design multi-step workflow automations for your team's processes
  • Identify quick wins vs long-term automation projects
  • Understand MCP and how AI connects to internal systems
  • Plan a transition path from DIY agents to managed solutions

What to Do Next

  • This week: Share your workflow design with your team. Identify one quick win to prototype.
  • This month: Build a prototype using Kiro or Claude Code. Test your Day 2 prompt templates with real data.
  • This quarter: Evaluate AgentCore for your highest-impact workflow. Start a pilot.
  • Resources: Workshop site (exercises + slides), prompt templates, AWS documentation
  • Support: AWS specialist team available for architecture reviews and adoption planning

Thank You

From prompts to templates to autonomous workflows

AnyCompany Financial Group · Generative & Agentic AI on AWS