Agents & MCP
11 videos
Agentic patterns, subagents, MCP servers, and tool integrations.
1-Hour AI Context Engineering Sprint with Your Team
- Block 1 hour on your team calendar (everyone must attend)
- Each person opens their favorite AI tool (Claude, ChatGPT, Copilot, Gemini, etc.)
- Identify a task where AI is underperforming or you want deeper understanding
- Use this prompt: "I am having problems with [X]. I really want to [Y]. Interview me and ask a varied set of questions until you have 95% understanding of my problem, goal, and nuance — then work to solve it, or save it as a context doc I can refer to later"
- Dictate back-and-forth with AI (optionally use Wispr Flow or similar for voice dictation)
- Build context docs for: personal goals, 2026 team goals, family, friends, team members, vendors
- Reuse these context docs in future AI sessions for better, more personalized outputs
View full video →Run a 1-hour AI context engineering sprint: open Claude, tell it "Interview me with varied questions until you have 95% understanding of my [role / goals / working style], then save the result as a context doc I can paste into future sessions."
Vercel Agent Browsers: 15x Fewer Tokens for Claude Browser Automation
Use Vercel Agent Browsers instead of screenshot-based tools like Claude for Chrome or Playwright MCP when building browser automation for AI agents. It provides Claude with a clean accessibility file and smart references, cutting token costs by up to 15x per screenshot.
View full video →Why You Need Evals When Building with AI (LLM Output Is Unpredictable)
- Define metrics for what 'good' output looks like for your specific feature.
- Use an evaluation framework to automatically grade model outputs (can use another LLM as a judge).
- Analyze statistical trends in evaluations over time and across many samples.
- Use the framework's sample synthesis feature to generate additional test cases using language models.
- Integrate evaluations directly into your test suite.
View full video →Set up a simple evaluation for this feature: define what 'correct' output looks like, write 5–10 test cases including edge cases, and create a grading prompt that judges whether the model's output meets the criteria. Run the eval after any prompt change.
Kanban Board for Claude Code — Drag Tasks to Trigger Multi-Agent Sessions
Find the Kanban board project by @om_patel5 on GitHub or their profile. Set up the board, create task cards for your coding tasks, and drag them into 'In Progress' to trigger Claude Code automatically. Monitor multiple parallel agent sessions from the board.
View full video →Boris Cherny (Claude Code Creator) Talks at Conference — Intro Clip (Full 24-min Talk Available)
Watch the full 24-minute Boris Cherny talk for the 40 prompting techniques. This 2-min clip is just the intro. Find the full video via @aiforgez's profile or caption link.
View full video →How IBM's Enterprise AI Coding Agent "Bob" Balances Safety, Control, and Developer Trust
- Before adopting any new AI model in enterprise: run a full evaluation for compliance, cost, and security standards — never just swap in the latest release.
- Give developers control levers — custom modes, custom RAG systems, configurable tool-calling — so they decide how much agency the AI has.
- Run vulnerability scanners during code generation, but avoid alert fatigue: popping up every 2 seconds causes developers to turn it off entirely.
- Prioritize UX trust: if the AI keeps interrupting or overclaims credit, developers stop trusting it. Design so engineers feel they did the work alongside the AI.
- Remember only ~1/3 of productivity gains come from the model — good architecture and engineering matter just as much.
- AI is best framed as a boost (like better equipment for athletes), not a replacement: 60% of software workload is modernization/migration, and that work still requires skilled engineers.
View full video →Audit how I'm using you in this workflow and flag anywhere you might be creating alert fatigue or making me feel less in control. Suggest changes so I feel like I'm doing the work alongside you, not watching you do it.
Builder + Checker Agent Loop That Self-Fixes Until All Tests Pass
- Set up a Builder + Checker agent loop in Claude Code:
- Create a Builder agent: its only job is to write and fix code.
- Create a Checker agent: its only job is to run tests, type checks, and linting, then report exactly what failed.
- Keep them separate — the same agent that writes code cannot reliably check its own work.
- Create an orchestrator command that chains them: Builder implements → Checker runs → if all green, stop; if failures, send back to Builder → repeat.
- Add stop rules: (a) max 5 cycles — if not fixed after 5, a human must intervene; (b) stop immediately if a fix breaks something previously passing (regression detected).
- Without stop rules, agents will start weakening tests to fake a pass.
View full video →Set up a Builder + Checker agent loop for this project: create a Builder agent for writing/fixing code and a Checker agent for running tests/linting. Add an orchestrator that loops them with a max 5-cycle stop rule and an immediate stop on regression. Show me the exact commands.
Two Types of AI Loops: Deterministic vs. LLM-as-Judge
- When setting up an AI loop:
- First ask: can the goal be measured with a concrete value? (load time, error count, coverage %) → Use a deterministic loop with a numeric target Claude checks itself.
- If no clean metric exists (code quality, doc accuracy, prose clarity) → Use an LLM-as-judge loop, but write a detailed rubric for Claude to test its work against.
- Default rule: try to reduce the goal to something deterministic first. Only hand judgment to the AI when it genuinely can't be measured.
View full video →I want to set up a loop for [task]. Help me decide: is this a deterministic loop (measurable target) or an LLM-as-judge loop (needs a rubric)? If deterministic, define the target. If LLM-as-judge, write the rubric.
Why 'Human in the Loop' Is Failing — and What Agent Accountability Looks Like
- Design AI agent systems with end-to-end accountability:
- Give the agent an independent identity, not just a user identity.
- Define explicit permission boundaries: what the agent can and cannot do.
- Use dynamic scoped policies — grant only the access needed for each specific task.
- Log every tool call, script run, database change, and failure back to the specific agent and human owner.
- Express constraints as intent-based rules (e.g. 'do not cause reduction impact') not just action blocks — agents will find alternate paths around simple 'no' rules.
- Have humans design the goal, permission boundary, escalation point, audit trail, and accountability chain — not approve every individual action.
View full video →Review how this project's Claude Code workflow handles agent permissions and accountability. Do we have: (1) scoped permissions per task, (2) intent-based constraints not just action blocks, (3) an audit trail for every agent action? Identify gaps and suggest improvements.
Clips — Free Open Source Agent-Native Alternative to Loom
- Identify exactly what would be installed: the free, open-source Clips Chrome extension by steve8708 (records screen + audio + browser logs/network into one shareable link). Do NOT install it yet.
- Research it first — what it does, that it's open source (the repo can be reviewed), who publishes/maintains it, and what browser permissions it requests (it captures network requests and client errors, and redacts sensitive info). See Find the Resource for the repo.
- Present the findings for review, and install ONLY after explicit approval.
- Once approved and installed: from any tab, hit record, talk through/demonstrate the bug, then copy the generated link and paste it to the agent — the agent can read the transcript, view video snapshots, and inspect the logs from the URL, with no extra plugin needed.
View full video →I've recorded a Clips session showing the bug: [paste Clips URL]. Please review the transcript, video snapshots, and any browser errors captured in the clip, then identify the root cause and propose a fix.
Anthropic Internal Claude Code Masterclass — Key Takeaways
review visuals — audio transcript only captures the speaker introduction. The 5 key principles from the caption (Interactive Extraction, token efficiency, etc.) are likely displayed as text overlays on screen. Watch the video to read and capture these steps.
View full video →