Use with AI

AI Prompts

Turn the ideas on Programmer.ie into practical AI workflows you can run against your own code, models and agent systems.

These prompts are designed to move from reading to doing.

Each prompt is connected to a Programmer.ie learning path and asks an AI system to inspect real evidence before recommending changes. Copy one into ChatGPT, Codex, Claude, or another repository-aware assistant and point it at the system you want to understand or improve.

01
Learning path

PyTorch: Zero to Hero

Debug training systems and apply the machinery-level techniques from the PyTorch curriculum.

View curriculum →
Start broad

Path reviews

Use these when you want to inspect the whole repository through the lens of this learning path.

Path Review Foundations → Intermediate

PyTorch Repository Review

Inspect a PyTorch project for correctness, training, tensor-shape, autograd and performance problems before proposing changes.

Go specific

Chapter applications

Focused workflows that apply one mechanism or diagnostic method from a specific chapter.

Chapter Application Intermediate

Audit PyTorch Autograd and Gradient Flow

Trace the computation graph in a real PyTorch training path and find detach, requires_grad, backward, in-place and NaN-gradient failures using repository evidence.

02
Learning path

Models From First Principles

Inspect model architecture and decide which learned mechanisms are actually justified by the problem.

View curriculum →
Start broad

Path reviews

Use these when you want to inspect the whole repository through the lens of this learning path.

Path Review Intermediate

Model Architecture Review

Map a learned system into its actual model components, decision boundaries and training signals before judging the architecture.

Go specific

Chapter applications

Focused workflows that apply one mechanism or diagnostic method from a specific chapter.

Chapter Application Intermediate

Audit a Learned Scorer Before You Trust Its Score

Apply Models From First Principles Step 01 to a real repository by reconstructing what a scalar quality model is actually learning, what evidence reaches it, and whether its score is meaningful.

Chapter Application Advanced

Audit Fast and Slow Learned State

Apply Models From First Principles Step 04 to test whether hierarchical recurrent state is actually necessary and whether its fast/slow timescales remain semantically coherent.

Chapter Application Advanced

Audit Learned Component Boundaries

Apply Models From First Principles Step 03 to determine whether Q, V, policy or other learned submodels should be separate components or simpler shared heads.

Chapter Application Intermediate → Advanced

Audit Q, V, Policy and Advantage Objectives

Apply Models From First Principles Step 02 to verify whether a shared representation with multiple learned heads has coherent targets, losses and downstream roles.

Chapter Application Advanced

Audit Recursive Compute in a Small Model

Apply Models From First Principles Step 05 to determine whether repeated application of a compact learned model creates useful iterative computation or just repeated cost.

03
Learning path

Agents From First Principles

Apply planning, tools, memory, search and verification patterns to real agent repositories.

View curriculum →
Start broad

Path reviews

Use these when you want to inspect the whole repository through the lens of this learning path.

Path Review Intermediate → Advanced

Agent Architecture Review

Trace an AI agent from intent through state, tools, memory and verification, then identify where complexity is actually helping.

Go specific

Chapter applications

Focused workflows that apply one mechanism or diagnostic method from a specific chapter.

Chapter Application Intermediate

Audit Whether This Agent Knows When to Stop

Apply Agents From First Principles Step 05 to a real repository and test whether state, progress signals, budgets and termination reasons prevent unproductive agent loops.

04
Learning path

Advanced Agents From First Principles

Audit production agent systems for reliability, authority, distributed execution and operational safety.

View curriculum →
Start broad

Path reviews

Use these when you want to inspect the whole repository through the lens of this learning path.

Go specific

Chapter applications

Focused workflows that apply one mechanism or diagnostic method from a specific chapter.

Chapter Application Advanced

Audit Agent Replay and Provenance Completeness

Apply Advanced Agents Step 25 to determine whether a historical agent run can actually be reconstructed, explained and compared after models, prompts, tools and state have changed.

Chapter Application Advanced

Reconstruct Why This Agent Run Failed

Apply Advanced Agents Step 26 to build an evidence-backed incident-forensics timeline, identify the earliest meaningful divergence, and separate root cause from downstream symptoms.