Skip to main content
Back to the directory
langchain-ai/langchain-skillsSoftware EngineeringFrontend and Design

langchain-fundamentals

Build production LangChain agents with create_agent(), tools, and middleware patterns.

SkillJury keeps community verdicts, source metadata, and external repository signals in separate lanes so ranking data never pretends to be a review.

SkillJury verdict
Pending

No approved reviews yet

Would recommend
Pending

Waiting on enough review volume

Install signal
5

Weekly or total install activity from catalog data

Sign in to review
0 review requests
Install command
npx skills add https://github.com/langchain-ai/langchain-skills --skill langchain-fundamentals
SkillJury does not have enough approved reviews to publish a community verdict yet. Source metadata and repository proof are still available above.
SkillJury Signal Summary

As of Apr 30, 2026, langchain-fundamentals has 5 weekly installs, 0 community reviews on SkillJury. Community votes currently stand at 0 upvotes and 0 downvotes. Source: langchain-ai/langchain-skills. Canonical URL: https://skills.sh/langchain-ai/langchain-skills/langchain-fundamentals.

Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykWARN
About this skill
Build production LangChain agents with create_agent(), tools, and middleware patterns. create_agent() is the recommended way to build agents. It handles the agent loop, tool execution, and state management. @tool def get_weather(location: str) -> str: """Get current weather for a location. agent = create_agent( model="anthropic:claude-sonnet-4-5", tools=[get_weather], system_prompt="You are a helpful assistant." ) result = agent.invoke({ "messages": [{"role": "user", "content": "What's the weather in Paris?"}] }) print(result["messages"][-1].content) checkpointer = MemorySaver() agent = create_agent( model="anthropic:claude-sonnet-4-5", tools=[search], checkpointer=checkpointer, ) config = {"configurable": {"thread_id": "user-123"}} agent.invoke({"messages": [{"role": "user", "content": "My name is Alice"}]}, config=config) result = agent.invoke({"messages": [{"role": "user", "content": "What's my name?"}]}, config=config) Tools are functions that agents can call. Use the @tool decorator (Python) or tool() function (TypeScript). @tool def add(a: float, b: float) -> float: """Add two numbers. Middleware intercepts the agent loop to add human approval, error handling, logging, and more. A deep understanding of middleware is essential for production agents — use HumanInTheLoopMiddleware (Python) / humanInTheLoopMiddleware (TypeScript) for approval workflows, and @wrap_tool_call...

Source description provided by the upstream listing. Community review signal and install context stay separate from this narrative layer.

Community reviews

Latest reviews

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does langchain-fundamentals do?

Build production LangChain agents with create_agent(), tools, and middleware patterns.

Is langchain-fundamentals good?

langchain-fundamentals does not have approved reviews yet, so SkillJury cannot publish a community verdict.

Which AI agents support langchain-fundamentals?

langchain-fundamentals currently lists compatibility with Claude Code, Codex, Skills CLI.

Is langchain-fundamentals safe to install?

langchain-fundamentals has been scanned by security audit providers tracked on SkillJury. Check the security audits section on this page for detailed results from Socket.dev and Snyk.

What are alternatives to langchain-fundamentals?

Skills in the same category include grimoire-morpho-blue, conversation-memory, second-brain-ingest, zai-tts.

How do I install langchain-fundamentals?

Run the following command to install langchain-fundamentals: npx skills add https://github.com/langchain-ai/langchain-skills --skill langchain-fundamentals

Related skills

More from langchain-ai/langchain-skills

Related skills

Alternatives in Software Engineering