← Back to home
THE WORK, NOT THE HYPE

Software Engineering with AI.

Explore how AI changes your work — and what to learn next.

A practical guide to
the work ahead
Software EngineeringCode ReviewGrowing Practice

Code Review

Flag suspicious changes and summarize the diff.

The workflow, side by side

Traditional workflow

Before generative AI assistance
  1. 1

    Clarify the goal using a pull request changing access controls

  2. 2

    Read the diff and surrounding code

  3. 3

    Check behavior and security assumptions

  4. 4

    Discuss findings and approve or request changes

  5. 5

    Check the result against the agreed criteria

  6. 6

    Communicate the outcome and record the decision

AI-assisted workflow

AI contributes. You guide and verify.
  1. 1

    Define the goal, constraints, and permitted information

  2. 2

    Provide relevant, sanitized context from a pull request changing access controls

  3. 3

    Ask AI to flag suspicious changes and summarize the diff

    AI + YOU
  4. 4

    Inspect suggestions against original evidence and domain rules

  5. 5

    Revise the output and independently validate the result

    YOU
  6. 6

    A responsible professional approves and communicates the outcome

HUMAN CHECKPOINT

Can a user gain access to another tenant through this change?

Your judgment matters

The shift: Reviewing, validating, and integrating AI-generated code. Foundational skills still matter.

Build the skills behind the work.

A practical learning path for Software Engineering.

GO A LITTLE DEEPEROpen only what you need
What changes — and what doesn’tSkills & responsibilities
AI HELPS WITH
AnalyzeReview

Flag suspicious changes and summarize the diff. The output is a starting point to inspect, not a decision to accept automatically.

STILL YOUR RESPONSIBILITY

Validate correctness, choose tradeoffs, protect users, and approve changes.

Skills to develop

FoundationsProgramming, algorithms, system design, and security.

AI collaborationProviding task-specific context and requesting explicit assumptions.

VerificationChecking a pull request changing access controls against independent evidence.

Professional skillsCommunicating tradeoffs and taking responsibility.

Where AI can go wrong3 things to check

A plausible but wrong answer

AI review may overlook an authorization boundary. It can fail the underlying goal even when it sounds convincing.

Your check

Test cross-tenant access and require the missing authorization check.

Missing or invented context

AI may fill gaps with unsupported assumptions, which can send the work in the wrong direction.

Your check

Trace claims to original evidence and ask the relevant person about unknowns.

Information shared in the wrong place

Sensitive records or code can cross confidentiality boundaries if supplied to an unsuitable tool.

Your check

Use approved tools, share the minimum context needed, and follow your organization’s rules.

Try a quick exerciseA practical scenario

A new lookup fetches a document by ID without checking its tenant.

What is the most important next step in this scenario?
Sources & contextEvidence behind this example