Agent skill · Frontend

langchain-agents-anton-abyzov-specweave

LangChain & AI Agent Frameworks expert. Covers LCEL chains, ReAct/Plan-and-Execute/Multi-Agent architectures, tool calling, memory systems, LangGraph, CrewAI, prompt engineering, streaming, LangSmith tracing, RAG integration, and production deployment patterns.

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 19 KB
Bundled scripts: none
Path: skills/agent/langchain-agents-anton-abyzov-specweave/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

# LangChain & AI Agent Frameworks Expert guidance for building LLM-powered applications using LangChain, LangGraph, CrewAI, and related agent frameworks. Covers chain composition, agent architectures, tool integration, memory management, and production deployment. ## LCEL (LangChain Expression Language) ### Chain Composition with Runnables LCEL is the declarative way to compose LangChain components. Every component implements the Runnable interface. ```python from langchain_core.prompts import ChatPromptTemplate from langchain_core.output_parsers import StrOutputParser from langchain_openai import ChatOpenAI # Basic chain: prompt | model | parser prompt = ChatPromptTemplate.from_messages([ ("system", "You are a helpful assistant specialized in {domain}."), ("human", "{question}") ]) model = ChatOpenAI(model="gpt-4o", temperature=0) parser = StrOutputParser() chain = prompt | model | parser # Invoke synchronously result = chain.invoke({"domain": "Python", "question": "Explain decorators"}) # Async invoke result = await chain.ainvoke({"domain": "Python", "question": "Explain decorators"}) # Batch processing results = chain.batch([ {"domain": "Python", "question": "Explain decorators"

What's inside
Steps it walks through
  1. LCEL (LangChain Expression Language)
  2. Chain Composition with Runnables
  3. Parallel and Branching Chains
  4. Fallback Chains
  5. Routing
  6. Agent Architectures
  7. ReAct Agent (Reasoning + Acting)
  8. Tool Calling Agent (Preferred for Modern Models)
  9. Plan-and-Execute Agent
  10. Tool Calling and Function Calling
  11. Defining Tools
  12. Binding Tools to Models
  13. Memory Systems
  14. Conversation Memory
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the langchain-agents-anton-abyzov-specweave skill do?

LangChain & AI Agent Frameworks expert. Covers LCEL chains, ReAct/Plan-and-Execute/Multi-Agent architectures, tool calling, memory systems, LangGraph, CrewAI, prompt engineering, streaming, LangSmith tracing, RAG integration, and production deployment patterns.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill langchain-agents-anton-abyzov-specweave --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