Working with LLMs / Fact sheet

Draft — this material tracks a talk that hasn't shipped yet. Details may still shift before the final version.

The Fact Sheet — where this leaves you

Let's go back over everything we did. Every key idea + every actionable concept from the whole talk, in their own two columns — one page, yours to take home. This is the closing wall the room reads through live; it mirrors presentations/scrollytelling-v3 exactly. Small model-building beats (010 · 020 · 050 · 100 · 110, and 120's key idea) are dropped here on purpose; 480 and 490 are folded into their parent beats.

Key ideas

Actionable concepts


It all lives in one place. The guide, the workshop, and these sheets: llms.codebycarson.com/working-with-llms

The Links Sheet — every resource the talk points at

Every slide with a linkable resource carries a small link at its bottom — like the little "how to make a skill" link under the Skills slide that takes you to Claude's docs. This sheet collects all of them in one place, grouped by beat in the order they come up, so you can go back and dig into anything after the talk. One line each; all primary sources.

Act I — How LLMs actually work

030 · Embeddings (word2vec & GloVe) - word2vec (Mikolov et al., 2013) — predict-the-neighbors embeddings: https://arxiv.org/abs/1301.3781 - GloVe (Pennington, Socher & Manning, 2014) — count-then-factorize embeddings: https://nlp.stanford.edu/pubs/glove.pdf

060 · Transformers → next-word prediction - "Attention Is All You Need" (Vaswani et al., 2017) — the transformer: https://arxiv.org/abs/1706.03762 - The Illustrated Transformer (Jay Alammar) — the visual deeper-dive on transformers/attention referenced on the 060 slide: https://jalammar.github.io/illustrated-transformer/ - ELMo (Peters et al., 2018) — contextual embeddings, done first with an LSTM: https://arxiv.org/abs/1802.05365 - BERT (Devlin et al., 2018) — the transformer that made contextual embeddings dominant: https://arxiv.org/abs/1810.04805

080 · Post-training into a chatbot - InstructGPT (Ouyang et al., 2022) — SFT + reward model + RLHF, the ChatGPT recipe: https://arxiv.org/abs/2203.02155

Act II — Working with basic LLMs

120 · Tokens - OpenAI tokenizer — see how text splits into tokens (~4 chars each): https://platform.openai.com/tokenizer

140 · Context window & context rot - "Context Rot" (Chroma Research, 2025) — every model degrades as input grows: https://www.trychroma.com/research/context-rot - "Lost in the Middle" (Liu et al., 2023) — facts buried mid-window are recalled worst: https://arxiv.org/abs/2307.03172

150 · Style control & few-shot - "Language Models are Few-Shot Learners" (Brown et al., GPT-3, 2020) — few-shot / in-context learning: https://arxiv.org/abs/2005.14165

210 · The scaling era ends - Ilya Sutskever, NeurIPS 2024 — the full talk ("peak data," data as "the fossil fuel of AI"): https://www.youtube.com/watch?v=1yvBqasHLZs - Model collapse (Shumailov et al., Nature 2024) — training on AI-generated data degrades models: https://www.nature.com/articles/s41586-024-07566-y

220 · Chain of thought - "Chain-of-Thought Prompting" (Wei et al., 2022) — reasoning tokens before the answer: https://arxiv.org/abs/2201.11903

Act III — Modern agentic work

320 · CLAUDE.md - Claude Code — Memory / CLAUDE.md: the standing-instructions files and their up-the-tree hierarchy: https://code.claude.com/docs/en/memory.md

330 · Skills("how to make a skill") - Claude Code — Agent Skills: where skills live, SKILL.md frontmatter, lazy loading: https://code.claude.com/docs/en/skills.md

340 · Sub-agents("how to make an agent") - Claude Code — Subagents: defining custom agents and how delegation / fresh-context handoff works: https://code.claude.com/docs/en/sub-agents.md

380 · Superpowers - Superpowers plugin (obra) — the brainstorm → plan → execute → review harness: https://github.com/obra/superpowers

390 · Auto mode & safety - Anthropic — "How we built Claude Code auto mode" (the two-stage safety classifier): https://www.anthropic.com/engineering/claude-code-auto-mode

410 · Hooks("how to make a hook") - Claude Code — Hooks reference: every event, settings.json format, exit-code / JSON blocking: https://code.claude.com/docs/en/hooks.md - Claude Code — Hooks guide (worked examples, incl. blocking protected files): https://code.claude.com/docs/en/hooks-guide.md

430 · GitHub for teams - GitHub — About Projects (boards/tables/fields, works on personal accounts): https://docs.github.com/en/issues/planning-and-tracking-with-projects/learning-about-projects/about-projects - GitHub — Sub-issues (native parent/child breakdown with rollup): https://docs.github.com/en/issues/tracking-your-work-with-issues/using-issues/adding-sub-issues - GitHub — About milestones (dated buckets of issues toward a goal): https://docs.github.com/en/issues/using-labels-and-milestones-to-track-work/about-milestones

440 · Git worktrees - Git — worktrees (checking out multiple branches into parallel folders): https://git-scm.com/docs/git-worktree

460 · Math with LLMs - Lean + mathlib community — the proof assistant behind the AI-formalization results: https://leanprover-community.github.io/ - DeepMind — AlphaProof (IMO 2024 silver, proved in Lean): https://deepmind.google/blog/ai-solves-imo-problems-at-silver-medal-level/ - Practical "math → code" at the workbench: SymPy https://sympy.org · NumPy https://numpy.org · Julia/SciML https://sciml.ai


Everything in one place: the guide, the workshop, and both sheets live at llms.codebycarson.com — full how-to at /working-with-llms.