Guides
From first prompt to production agents.
Written after actually shipping the workflows they describe. Pick your level and work through it in order.
Beginner
AI From Zero: Your First 30 Days
25mA calm, jargon-free path from never having used a chatbot to using AI confidently every day.
- 01Pick one assistant and use it exclusively for a week so you learn its personality.
- 02Replace one recurring chore — email drafts, meeting notes, trip planning — with an AI workflow.
- 03Learn to give context: role, goal, audience, constraints, format.
- 04Practise verification: always ask where a claim came from before you rely on it.
- 05Build a personal prompt file of the five things you ask for most often.
Prompting That Actually Works
18mThe small number of prompt techniques that reliably improve output quality, minus the folklore.
- 01State the job, not the vibe: deliverable, audience, length, tone.
- 02Give one strong example instead of five weak instructions.
- 03Ask for a plan before the answer on anything complex.
- 04Request a self-critique pass and a revised final version.
- 05Iterate on the prompt, not the output — fixes should be permanent.
Intermediate
Choosing Your AI Stack
22mHow to assemble models, retrieval, orchestration and observability without over-engineering day one.
- 01Start with one hosted frontier model and no framework.
- 02Add retrieval only when the model demonstrably lacks the knowledge.
- 03Introduce tracing before orchestration — you cannot debug what you cannot see.
- 04Route cheap, high-volume tasks to smaller models once quality is proven.
- 05Keep a written eval set from day one and run it on every change.
AI For Creative Teams
20mWorkflows for image, video, voice and copy that keep a consistent house style across a whole brand.
- 01Codify a house style preamble: palette, lighting, lens, forbidden clichés.
- 02Generate in batches, curate ruthlessly, and grade the survivors.
- 03Keep source prompts alongside assets so anything can be regenerated.
- 04Use voice cloning only with documented consent and clear labelling.
- 05Review every published asset with a human editor — no exceptions.
Advanced
Building RAG That Does Not Lie
30mChunking, hybrid retrieval, reranking and grounding checks — the pipeline that survives real documents.
- 01Chunk on semantic boundaries, never on fixed character counts alone.
- 02Combine keyword and vector retrieval; pure embeddings miss exact identifiers.
- 03Rerank aggressively — precision at the top of the list matters more than recall.
- 04Force citations and reject answers whose claims are not supported by retrieved spans.
- 05Log retrieved context with every response so failures are reproducible.
Running Agents in Production
28mGuardrails, budgets, retries and human-in-the-loop patterns for agents that touch real systems.
- 01Give every agent run a hard token, time and tool-call budget.
- 02Make destructive tools require explicit confirmation or a dry-run mode.
- 03Design idempotent tools so a retry never doubles an action.
- 04Checkpoint state so a failed run resumes instead of restarting.
- 05Escalate to a human on low confidence rather than guessing loudly.