Prompt Engineering Is Mostly Specification Writing
The prompts that work in production don't look like magic spells. They look like the spec a good engineer would hand a new teammate.
a Purdue AI senior's field notes
Prompt & context engineering, agent loops, harnesses, MCP servers, model routing, GPUs, observability, and the foundations underneath. Written by students, read by builders.
// what you'll find here
const neuralgist = {
foundations: ['ml', 'deep learning', 'models', 'gpus'],
trends: ['prompt eng', 'context eng', 'harnesses', 'loops'],
patterns: ['semantic layer', 'agents', 'model switching'],
tooling: ['mcp', 'workflows', 'observability'],
author: 'purdue ai, class of 2027'
};
// featured
The prompts that work in production don't look like magic spells. They look like the spec a good engineer would hand a new teammate.
// latest
Model calls are non-deterministic, expensive, and slow. The only way to debug, cost-control, and improve them is to record everything. Here's what to log and what to look at.
Most "agent" use cases are workflows in disguise. Knowing the difference saves money, latency, and a lot of debugging.
The Model Context Protocol standardizes how models discover and call tools. Here's the mental model, the three primitives, and a server in forty lines.
One model for everything is the expensive default. Routing tasks to different models by difficulty, cost, and latency is how real systems stay affordable.
A chatbot answers. An agent acts. Building either well comes down to state, tools, and knowing when to hand off to a human.
Text-to-SQL demos fall over the moment two people define "revenue" differently. A semantic layer is where you write down what words mean before the model guesses.
// map
What the field is arguing about this month.
Architectures that keep showing up in real systems.
// watch
Intro to Large Language Models — Andrej Karpathy
Let's build GPT: from scratch, in code — Andrej Karpathy
But what is a neural network? — 3Blue1Brown
Create an account, write in Markdown, and submit. Articles are reviewed before they go live so the signal stays high.