Agent skill · AI & Agents

langchain-agents

LangChain provides a standard interface for building LLM agents that can use tools. Modern agent development is moving toward LangGraph to handle stateful, multi-turn, and non-linear logic that simple loops cannot capture.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill langchain-agents --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/agent/langchain-agents/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

--- name: langchain-agents description: Building LLM agents with LangChain and LangGraph, covering tool-calling model initialization, state management, and observability with LangSmith. Triggers: langchain, langgraph, langsmith, agent-executor, chat-model-tools. --- # LangChain Agents ## Overview LangChain provides a standard interface for building LLM agents that can use tools. Modern agent development is moving toward LangGraph to handle stateful, multi-turn, and non-linear logic that simple loops cannot capture. ## When to Use - **Multi-Provider Apps**: When you want to swap between OpenAI, Anthropic, and local models without changing business logic. - **Stateful Agents**: When you need human-in-the-loop, long-term persistence, or complex execution graphs. - **Observability**: Using LangSmith to debug exactly where an agentic chain failed. ## Decision Tree 1. Is it a simple tool-calling loop? - YES: Use the `create_agent` abstraction. 2. Does it require cycles, complex state transitions, or human approval? - YES: Build using LangGraph. 3. Do you need to track exactly how much an agent run cost or where it halluncinated? - YES: Enable LangSmith tracing. ## Workflows ### 1. Creati

What's inside
Steps it walks through
  1. Overview
  2. When to Use
  3. Decision Tree
  4. Workflows
  5. 1. Creating a Simple Tool-Enabled Agent
  6. 2. Debugging with LangSmith
  7. 3. Adding Memory to an Agent
  8. Non-Obvious Insights
  9. Evidence
  10. Scripts
  11. Dependencies
  12. References
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the langchain-agents skill do?

LangChain provides a standard interface for building LLM agents that can use tools. Modern agent development is moving toward LangGraph to handle stateful, multi-turn, and non-linear logic that simple loops cannot capture.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill langchain-agents --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going