What problem does it solve?
Setting up a first LangGraph agent often involves guessing at APIs, hardcoded model choices, and cluttered project directories. This Skill walks through the official LangGraph Python quickstart so you get a working local agent with the correct current API and your preferred model provider.
Core Features & Use Cases
- Official quickstart alignment: Fetches the live LangGraph quickstart docs and implements the calculator/math agent using the Graph API rather than relying on memorized APIs.
- Model-agnostic setup: Prompts for a provider:model string (e.g. openai, anthropic, google_genai) and wires it via init_chat_model, with provider-specific constraints handled.
- Clean local environment: Creates a dedicated directory, keeps the API key in a gitignored .env file, and installs only the required packages.
- Use Case: You want to try LangGraph locally for the first time — the Skill scaffolds a new langgraph-agent directory, configures your chosen model, runs the example "Add 3 and 4.", and shows the output.
Quick Start
Ask your agent to scaffold a minimal local LangGraph agent in Python using the official quickstart with your preferred model provider.