CS1 in the Age of AI
Hereās the question thatās been bouncing around my head while I go on my long runs or wait in line for coffee: Should students actually use Cursor from Week One?
You donāt need to out-code everyone. You need to out-think the problem. ā Satya Nadella
I've been prepping my CS1 course for Fall. The version that I teach is called CS 5001 here at Northeastern, and itās our introduction to computing. But this time, I'm looking at the syllabus through a different lens. I canāt pretend weāre still in 2018. Students today are writing code with Copilot, debugging with ChatGPT, and quietly using tools like Cursor that make our old assignments laughably easy.
So hereās the question thatās been bouncing around my head while I go on my long runs or wait in line for coffee: Should students actually use Cursor from Week One?
That is, should I tell them on day one: Hereās Cursor. Use it. Treat it as your co-pilot. Learn with it, build with it, and reflect on what it gets right and where it falls short. Or should I hold off, try to preserve the struggle, and pretendājust for a few weeksāthat the world hasnāt changed?
Why This Is a Real Debate
Cursor is no toy. Itās a version of VS Code with an LLM built in, and when I gave it my beloved (and hard!) PokĆ©mon Battle lab, it didnāt just solve the problem. It ran the code with all expected input/output examples, iterated a few times and handed off a perfect solution in less time than it took to steep my tea.

Great for productivity. Catastrophic for pedagogy.
The old assignments no longer do what they were meant to do. They no longer produce the kind of struggle that leads to learning. We need to stop pretending they do.
But I Can't Rewrite Everything
This is where constraints come in.
I canāt change the catalog description. I canāt change the learning outcomes. I have to hand off students who are ready for the next courses in the pipeline: Algorithms and Data Structures (CS2-ish) and Object-Oriented Design. And I still believe that foundational skills matter. Recursion. Problem decomposition. Reasoning about data. Thinking in systems.
Iām a fan of this model.
Leo Porter and Dan Zingaro wrote a fantastic book called Learn AI-Assisted Python Programming with GitHub Copilot and ChatGPT. I was one of the reviewers, and the book lays out a full curriculum that embraces AI as a learning partner from the start. Itās thoughtful, well-scaffolded, and speaks to the same vision Iāve been exploringāthough with Copilot and ChatGPT rather than Cursor. Still, Cursor feels like a bold step further in the same direction.
So the real challenge is this:
Can we make an AI-first CS1 that still honors the foundations?
What We Canāt Afford to Lose
The learning outcomes in the course catalog say things like:
- Write code that is readable and modifiable.
- Represent information as data.
- Use testing as a habit.
- Document contracts and assumptions.
- Generalize to avoid duplication.
- Use common recursive structures.
- Informally argue termination.
None of these say "write every line yourself"! But they do require understanding. AI use is okay. Blind copy-paste is not.
This is not about banning AI. Itās about ensuring that learning still happens. If we make Cursor central to CS1, then we must make code comprehension, reasoning, and reflection central too.
The Blueprint I'm Sketching (And Tinkering With Early in the Mornings)
Week 1: Cursor Demo + Paper Tracing
Let Cursor generate a full solution to a well-known problem. Then: laptops closed. Students work in pairs with markers and big paper to trace the AI's code. They explain it. Find edge cases. Map state transitions. Learn to read before they learn to write.

Dual Track: Reading Code with and without AI
Reading code is everything now.
- With AI: Prompt Cursor to explain a function. Then present the explanation in class. Does it make sense? Does it create an intuition that sticks?
- Without AI: Classic paper-based exercises. Parsons problems. Code tracing. "What does this program print?" No autocomplete. Just thinking.

Sample Parsons Problem (img source: https://www2.eecs.berkeley.edu/Pubs/TechRpts/2020/EECS-2020-88.pdf)
Writing Code: Notebooks, Not Just Keyboards
We'll still practice writing, but not always with laptops.
- Every few weeks: closed-laptop checkpoints. Write pseudocode on paper. No formalized syntax expectedāstudents can mix Python-style ideas with plain English, diagrams, or whatever helps them think clearly.
- End of term: whiteboard a solution. Any format is allowedāpseudocode, diagrams, arrows, plain English. The point is clarity, not syntax. Maybe, even let them do it in pairs, to move focus even more towards technical communication.
Letās prepare students for technical interviews and real-world collaboration.
Projects That Demand AI and Human Judgment
If the old homework is dead, letās bury it and move on.
Here are some new ideas:
- Campus Coffee Tracker: Backend in Python, front-end in Retool or Streamlit. Students design endpoints, define data schema, and build dashboards. Cursor scaffolds; students think.
- Branching Story Engine: Recursive structures, cycle detection, and termination proofs (following the learning outcomes!). Hard to build, even with AI.
- Algorithms-in-Action Lab: Implement and visualize classic algorithms. Use the freed-up time to drill intuition about sorting, searching, recursion vs. iteration.

Deliverables? Code, of course. But also:
- A reflection log. Where did AI help? Mislead? What did you learn?
- A peer code-walk. Can you explain the code your peer wrote?
And the rubric? It will reward:
- Clear articulation of the problem
- Evidence of testing and iteration
- Communication of design decisions
- Demonstration of understandingāespecially in how students critique and explain AI-generated output
Bonus: More Time for Algorithms
Because AI lifts the boilerplate, we can drill algorithmic thinking earlier. Sorting. Searching. Divide-and-conquer. Letās help students build that toolbox before CS2 even starts.

img source: https://www.youtube.com/watch?v=44ZCu3VESbQ
Iām not going full CLRS-on-week-one, but Mihail Ericās vision of more algorithms, resonates. Maybe we can get closer.
What About Equity?
Cursor now gives students a free 1-year license. Copilot is free for students. These tools are becoming ubiquitous, and we now expect access to them as a default part of the setup. Still, weāll be mindful of different levels of familiarityāand weāll provide plenty of onboarding and support.
So... Cursor from Week One?
I think yes.
But only if we keep our analog tools close. Only if we double down on reading, reasoning, and reflection. Only if we help students become AI-assisted problem solvers, not prompt-engineers who donāt understand their own code.
The world has changed. But our jobāto challenge, to guide, to mentorāhasnāt.