Business Workflows

Boost Your Office Productivity with AI: Lessons from AWS Applied Scientist Matineh Shaker

Discover practical strategies for integrating AI into daily office tasks from AWS expert Matineh Shaker. Her free short course on deeplearning.ai covers prompting, automation, evaluation, and AI agents to supercharge your workflow.

A

Andrew Snyder

AI & Automation Editor

December 29, 2025 min read
Share:

Meet Matineh Shaker: Bringing AI Expertise to Everyday Office Work

Imagine transforming mundane office routines into efficient, innovative processes using AI. That's the mission of Matineh Shaker, an Applied Scientist at Amazon Web Services (AWS). With her deep background in AI research and real-world applications, Matineh has created a concise, hands-on course called "Working with AI at the Office" on the deeplearning.ai platform. This free program, totaling about one hour across five lessons, equips non-technical professionals—like managers, analysts, and admins—with actionable AI skills.

The Problem: Many office workers feel overwhelmed by AI hype but unsure how to apply it practically without coding expertise.

The Solution: Matineh's course demystifies AI through simple, relatable examples using tools like large language models (LLMs) from providers such as Anthropic's Claude, OpenAI's GPT, and others.

The Outcome: You'll gain confidence to automate tasks, craft better prompts, evaluate outputs, and even build basic AI agents, saving hours weekly.

All course materials, including Jupyter notebooks and prompt templates, are available in the GitHub repository. Let's break down each lesson.

Lesson 1: Why Use AI? Unpacking Benefits and Hurdles

Problem: AI promises productivity gains, but what's the real value for office settings, and what pitfalls should you avoid?

Solution: Matineh starts by highlighting AI's core strengths: speed, scale, and creativity. For instance, AI excels at generating ideas quickly or handling repetitive data tasks that would take humans hours.

Key benefits include:

  • Rapid ideation: Brainstorm 50 marketing slogans in seconds.
  • Data synthesis: Summarize lengthy reports instantly.
  • Consistency: Ensure uniform tone across emails or docs.

However, she candidly addresses challenges:

  • Hallucinations: AI might invent facts.
  • Bias: Outputs can reflect training data flaws.
  • Context limits: Models forget long conversations.

Outcome: Armed with this balanced view, you'll approach AI strategically. A practical tip: Always cross-check critical outputs. Matineh shares a real-world example—using AI to draft customer responses, then verifying facts manually—which reduced response time by 70% in her team's workflow.

Lesson 2: Mastering Prompt Engineering for Reliable Results

Problem: Generic prompts like "Write a report" yield mediocre, off-target results.

Solution: Learn structured prompting techniques to guide AI precisely. Matineh emphasizes four pillars:

  1. Role-playing: Assign personas, e.g., "Act as a seasoned HR manager."
  2. Clear instructions: Be specific about format, length, and style.
  3. Context provision: Include relevant details or examples.
  4. Chain of thought: Ask AI to reason step-by-step.

Here's a before-and-after example:

Poor Prompt:

Summarize this sales data.

Improved Prompt:

You are a data analyst at a retail firm. Summarize the Q3 sales data below, highlighting top products, regional trends, and YoY growth. Use bullet points and include a recommendation. Data: [paste data here].

Outcome: Outputs become polished and actionable. In one demo, Matineh turns vague email drafts into professional communications tailored to executives, saving drafting time dramatically. Experiment with these in the course notebooks from the GitHub repo.

Lesson 3: Automating Repetitive Tasks with AI

Problem: Time sinks like data entry, scheduling, or report formatting eat into your day.

Solution: Leverage AI for no-code automation. Matineh demonstrates using LLMs via simple interfaces or APIs to handle workflows.

Practical applications:

  • Email triage: Classify and draft replies automatically.
  • Spreadsheet magic: Clean data, generate charts from natural language.
  • Meeting prep: Transcribe calls and extract action items.

Example workflow for invoice processing:

  1. Upload PDF to AI tool.
  2. Prompt: "Extract vendor, amount, date, and line items into a CSV. Flag discrepancies over $100."
  3. Output: Ready-to-import file.

She covers tools like Zapier integrations or AWS Bedrock for enterprise scale.

Outcome: Reclaim hours for high-value work. One case study: A team automated 80% of routine queries, boosting throughput by 3x.

Lesson 4: Evaluating and Iterating on AI Outputs

Problem: Blind trust in AI leads to errors propagating downstream.

Solution: Develop a systematic evaluation framework. Matineh introduces rubrics covering:

  • Accuracy: Fact-check against sources.
  • Relevance: Does it address the goal?
  • Completeness: Missing elements?
  • Safety: No harmful content.

Use iterative prompting:

Review this output for accuracy and suggest improvements: [paste output]. Rate 1-10 on clarity.

For teams, she recommends shared rubrics in tools like Google Sheets.

Outcome: Higher-quality results with less rework. In a demo, evaluating code snippets generated by AI caught bugs early, preventing deployment issues.

Lesson 5: Building Your First AI Agents

Problem: Single prompts handle one task; complex jobs need multi-step orchestration.

Solution: Construct AI agents using frameworks like LangChain or AWS tools. Agents combine LLMs with tools (e.g., search, calculators) and memory.

Step-by-step build:

  1. Define goal: E.g., "Research competitor pricing."
  2. Tools: Web search, data parser.
  3. Agent loop: Plan, act, observe, repeat.

Code snippet example (Python with LangChain):

import os
from langchain.agents import create_react_agent
from langchain.tools import Tool

# Define tools
tools = [Tool(name="Search", func=web_search, description="Searches the web")]

# Create agent
agent = create_react_agent(llm, tools)
agent.run("Find latest iPhone price and compare to Samsung.")

Access full notebooks in the GitHub repository.

Outcome: Autonomous systems tackle end-to-end tasks. Matineh's example agent researches markets, saving analysts days of manual work.

Bringing It All Together: Your AI-Enhanced Office

Matineh wraps up by encouraging experimentation. Start small: Pick one task from your day and AI-ify it. Track time saved and iterate.

Pro Tips for Success:

  • Use free tiers of Claude.ai or ChatGPT.
  • Version control prompts in the GitHub repo.
  • Collaborate: Share agents team-wide.

This course isn't theory—it's a toolkit for immediate impact. Enroll today at deeplearning.ai and dive into the materials. Whether you're in sales, ops, or leadership, AI levels the playing field. What's your first project?

(Word count: ~1250)


<div style="text-align: center; margin-top: 2rem;"> <a href="https://www.deeplearning.ai/blog/working-ai-at-the-office-with-applied-scientist-matineh-shaker/" target="_blank" rel="noopener noreferrer" class="view-full-resource-btn" style="display: inline-block; background-color: #f97316; color: white; padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: background-color 0.2s;">View Full Resource</a> </div>
The #1 Newsletter in AI

Stay ahead of the AI curve

The most important updates, news, and content — delivered in one weekly newsletter.

No spam. Unsubscribe anytime. Privacy policy

AI productivity
prompt engineering
office automation
AI agents
deeplearning-ai
ai-agents
A

About Andrew Snyder

AI & Automation Editor

Andrew covers practical AI automation, workflow design, and the tools teams use to streamline everyday operations.

Comments (0)