Effective Vibe Coding for Beginners

Effective Vibe Coding for Beginners icon

Effective Vibe Coding for Beginners

About This Course

Vibe coding means describing what you want in plain language and steering an agent, rather than writing every line yourself. It is fast, and the result is only as good as your steering. This one-day workshop teaches the steering: how to get a coding agent to build the thing you actually wanted, and how to tell whether it did.

You work with OpenAI's Codex agent, building a small Streamlit application from scratch across the day. The order you build it in is the point. You start with a written spec rather than a prompt, plan the engine before the interface so the logic can be tested without the app running, and take the smallest useful step at a time. You can run the exercises against your own data instead if you would rather practise on your own work.

An agent predicts plausible code, not correct code. It will invent function names, flags and library behaviour, and state them confidently, and "it ran without errors" is not evidence that it works. The workshop takes that seriously. You will practise recovering a project with git after a session goes wrong, set sandbox and approval limits before you need them, and think about what leaves your environment when a task runs in the cloud rather than locally.

The aim is competent prototypes, not production systems. Most of the day goes on the part that decides whether a prototype is worth keeping: reading what the agent gave you and proving it does what you asked. You finish with a written review checklist, a set of project rules, and habits that transfer directly to Claude Code, OpenCode, Aider and whatever replaces them.

Who This Course Is For

Researchers, analysts, engineers and other technical professionals who are not full-time software developers but need to build small applications, scripts and reports for their work. It suits people who have had an agent produce something that ran without errors and had no way of telling whether it was right, and developers who are new to agentic coding tools and want a workflow rather than trial and error.

The room is mixed by design, so it works for a team whose coding experience varies. Every chapter has a core path everyone follows and an extended exercise for the people who already write code.

Prerequisites

Some familiarity with programming concepts in any language is helpful, but prior programming experience is not required. You do not need to have written Python before.

You do not need to have used Codex, Claude Code or any other agent, and no software engineering experience is assumed. Familiarity with the command line helps but is not required: the workshop introduces the small set of terminal and git commands you need on the day.

What You'll Learn

  • Drive a coding agent through a spec-first workflow instead of vague "build me an app" prompts.
  • Write a short implementation spec, and plan a small Streamlit application so that its core logic can be tested.
  • Work safely with an agent, using sandbox and approval settings deliberately and keeping rollback cheap with git.
  • Apply test-driven development with an agent for the parts of a project where behaviour actually matters.
  • Review AI-generated code against a specification, and recognise the failure patterns that recur.
  • Encode project rules and reusable prompts so the agent applies them in every session.

Course Syllabus

Day 1 — Building and checking software with a coding agent

  • How coding agents work, and why output is plausible rather than correct
  • Managing context, working spec first, and using git as a safety net
  • Test-driven development with an agent: writing and running the tests alongside it, and making tests the default for new logic
  • Working safely: sandboxing, approvals, practical guardrails, and data governance for local and cloud tasks
  • Reviewing AI-generated code: a repeatable loop run against the spec, and recognising "AI slop" and the recurring failure patterns
  • Configuring an agent with project rules, reusable prompts and helper scripts
  • Beyond Codex: choosing between Claude Code, OpenCode, Aider and the other agentic coding tools