Supplier Team Leadership
Supplier AI Agent Transformation
Unleashing AI Agents from the inside out
Agenda
What we'll cover
Section One
AI Workflow and Agent Patterns
Overview & Fundamentals
Pattern
Augmented LLM
An LLM enhanced with retrieval, tools, and memory — the fundamental building block
Chatbot answering supplier questions by looking up CSP account data in real time
Pattern
Prompt Chaining
Break complex work into sequential steps with validation gates between each
Invoice extraction: parse document → match to POs → enrich with master data → submit
Pattern
Routing
Classify the request, route to the right specialist — right expert, right problem
Navi Global Buyer Agent: Analytics vs. Sourcing vs. Document Retrieval vs. General BSM
Pattern
Agent
An autonomous system that reasons, acts, and adapts on its own — no script, just a goal
Inflection Point
In the last ~120 days, coding agents crossed a reliability threshold: benchmark scores jumped, terminal autonomy improved sharply, and the category became commercially consequential.
Pattern
The Agent Harness
One architecture powers Claude Code, Codex, OpenClaw, Cursor — reason, act, observe, repeat
Deep Dive
Skills as Files
A markdown file, a folder of references, and the agent learns a new capability at runtime
.claude/skills/ ├── analysis/ ├── expert-system/ ├── init-project/ ├── metabase-query/ │ ├── SKILL.md │ ├── references/ │ │ ├── semantic-layer.md │ │ └── semantic-layer-appendix.md │ └── scripts/ │ └── metabase-query.sh ├── pendo-query/ ├── pr-cleanup/ ├── pr-description/ ├── skill-creator/ └── vault-ops/
--- name: metabase-query description: > Generate and run SQL queries against the Coupa Presto data warehouse via Metabase. Use when the user asks data questions, references database tables, wants to run queries, asks about supplier analytics, invoices, purchase orders, CSP accounts, CoupaPay, sourcing... --- You are a Coupa data analyst. You generate accurate Presto SQL using a semantic layer that encodes institutional knowledge about the Coupa data warehouse — table relationships, join patterns, business logic, and metric definitions. ## How This Skill Works 1. User asks a data question (natural language or SQL) 2. Read the semantic layer reference to identify the right tables, joins, and filters 3. Generate Presto SQL and show it to the user 4. If the user confirms, execute via the Metabase script ## References Always read first: references/semantic-layer.md — Core reference. Contains Presto dialect rules, multi-tenancy hashing, all 12 entity definitions, 20+ metric formulas, dimensions, join paths, and 5 annotated examples. Read this before generating any query. Read on demand: references/semantic-layer-appendix.md — Verbose business logic blocks. Invoice cost weights, savings projections, SPA ranking, payment terms parsing (80+ line CASE WHEN block), cross-border spend detection, supplier engagement thresholds...
# The following skills are available: - analysis: End-to-end analytics workflow: intake a question, research context, plan the analysis, run queries, and publish to the Confluence Insights Archive. - expert-system: Search a curated repository of recent research and insights about business, AI development, economics, and strategy. - init-project: Scaffold a new project from a golden template, create a GitHub repo, write CLAUDE.md, and deploy to Vercel. - metabase-query: Generate and run SQL queries against the Coupa Presto data warehouse via Metabase. Use when the user asks data questions, references database tables, wants to run queries, asks about supplier analytics, invoices, purchase orders... - pendo-query: Query Pendo analytics data using natural language. Use when the user asks about page views, feature usage, visitor activity, or traffic. - pr-cleanup: Find and remove unused code on the current branch before merging. - pr-description: Create clear, concise pull request descriptions from branch diffs and recent commits. - skill-creator: Create new skills, modify existing skills, and measure skill performance. - vault-ops: Manage Spencer's notes system end-to-end. Use when adding to, reading from, or organizing notes and knowledge base.
Under the Hood
Context In, Action Out
Section Two
Claude Code Demo
Live Demos
Section Three
Building Agentic Workflows
Insights Distillery — Supplier Analytics
Thesis
Two primitives.
Context
what it knows
Tools
what it can do
Primitive
Context
what it knows
Primitive
Tools
what it can do
start read-only
Framework
Build an agentic workflow
Case Study
Insights Distillery — Agentic Analytics
The same four steps, applied
Weekly high-volume analytics questions drowning the analyst team
Metabase semantic layer → skill; Pendo schema → skill; analysis templates; past queries
SQL against Metabase, Pendo API, Jupyter for reproducibility, Confluence for docs
Analysts refine skills → PMs distill for business relevance → Execs distill for strategic impact
Deep Dive
Human Gates
Where human judgment enters the workflow
Validate that we’re answering the right question for the right stakeholder
Address open questions in the data and provide additional domain context
Sign off on metric definitions, time periods, and comparisons before execution
Scrutinize surprising or low-confidence results before they reach the archive
What’s your team’s
context?
What are their
tools?
Section Four
The Supplier Agent Platform
Constrained to Autonomous
Constrained
The harness does the thinking.
Autonomous
The model does the thinking.
Arbitrary Input
The interface becomes irrelevant.
Headless Future
Agents need APIs, not screens.
End State
Their agents. Our platform.
Discussion
What problems can agents solve for suppliers?
Recap
The Mental Model
Call to Action