Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计提醒

langchain-fundamentalsLangChain fundamentals 搜索

Agent Skill

langchain-fundamentals 用于记录任务执行中的错误、用户纠正、经验和能力缺口,适合在 Codex、Claude、Cursor、Gemini CLI 中希望让 Agent 持续沉淀问题、修正和最佳实践时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

143,376

周安装

5,775

GitHub Stars

638

下载量

45,008
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:langchain-fundamentals(LangChain fundamentals 搜索)
来源仓库:https://github.com/langchain-ai/langchain-skills
仓库路径:skills/langchain-fundamentals
安装命令:
npx skills add https://github.com/langchain-ai/langchain-skills --skill langchain-fundamentals
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/langchain-ai/langchain-skills --skill langchain-fundamentals

简介

使用 create_agent()、工具和中间件模式构建生产 LangChain 代理。

  • 使用create_agent()
  • 带有型号、工具列表、系统提示;使用检查点配置状态持久性
  • 和线程 ID
  • 用于跨调用的对话记忆
  • 通过@tool定义工具
  • 装饰器 (Python) 或 tool()
  • 具有清晰描述的函数 (TypeScript),以便代理知道何时调用它们
  • 添加中间件,例如 HumanInTheLoopMiddleware
  • 用于审批工作流程、自定义错误处理以及对代理决策的人机交互控制
  • 设置recursion_limit
  • 在调用配置中以防止无限循环,并通过 result["messages"][-1].content 访问结果
  • 而不是直接访问内容

SKILL.md

<create_agent>

Creating Agents with create_agent

create_agent() is the recommended way to build agents. It handles the agent loop, tool execution, and state management.

Agent Configuration Options

ParameterPurposeExample
modelLLM to use"anthropic:claude-sonnet-4-5" or model instance
toolsList of tools[search, calculator]
system_prompt / systemPromptAgent instructions"You are a helpful assistant"
checkpointerState persistenceMemorySaver()
middlewareProcessing hooks[HumanInTheLoopMiddleware] (Python) / [humanInTheLoopMiddleware({...})] (TypeScript)
</create_agent>

@tool def get_weather(location: str) -> str: """Get current weather for a location.

Args:
    location: City name
"""
return f"Weather in {location}: Sunny, 72F"

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)

</python>
<typescript>

import { createAgent } from "langchain"; import { tool } from "@langchain/core/tools"; import { z } from "zod";

const getWeather = tool( async ({ location }) => Weather in ${location}: Sunny, 72F, { name: "get_weather", description: "Get current weather for a location.", schema: z.object({ location: z.string().describe("City name") }), } );

const agent = createAgent({ model: "anthropic:claude-sonnet-4-5", tools: [getWeather], systemPrompt: "You are a helpful assistant.", });

const result = await agent.invoke({ messages: [{ role: "user", content: "What's the weather in Paris?" }], }); console.log(result.messages[result.messages.length - 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)

# Agent remembers: "Your name is Alice"

</python> <typescript> Add MemorySaver checkpointer to maintain conversation state across invocations.

import { createAgent } from "langchain";
import { MemorySaver } from "@langchain/langgraph";

const checkpointer = new MemorySaver();

const agent = createAgent({
  model: "anthropic:claude-sonnet-4-5",
  tools: [search],
  checkpointer,
});

const config = { configurable: { thread_id: "user-123" } };
await agent.invoke({ messages: [{ role: "user", content: "My name is Alice" }] }, config);
const result = await agent.invoke({ messages: [{ role: "user", content: "What's my name?" }] }, config);
// Agent remembers: "Your name is Alice"

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.

Args:
    a: First number
    b: Second number
"""
return a + b
</python>
<typescript>

import { tool } from "@langchain/core/tools"; import { z } from "zod";

const add = tool( async ({ a, b }) => a + b, { name: "add", description: "Add two numbers.", schema: z.object({ a: z.number().describe("First number"), b: z.number().describe("Second number"), }), } );


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` (Python) / `createMiddleware` (TypeScript) for custom hooks.

Key imports:

from langchain.agents.middleware import HumanInTheLoopMiddleware, wrap_tool_call

import { humanInTheLoopMiddleware, createMiddleware } from "langchain";


Key patterns:

- **HITL**: `middleware=[HumanInTheLoopMiddleware(interrupt_on={"dangerous_tool": True})]` — requires `checkpointer` + `thread_id`
- **Resume after interrupt**: `agent.invoke(Command(resume={"decisions": [{"type": "approve"}]}), config=config)`
- **Custom middleware**: `@wrap_tool_call` decorator (Python) or `createMiddleware({wrapToolCall:...})` (TypeScript)

<structured_output>

## Structured Output

Get typed, validated responses from agents using `response_format` or `with_structured_output()`.

class ContactInfo(BaseModel): name: str email: str phone: str = Field(description="Phone number with area code")

# Option 1: Agent with structured output

agent = create_agent(model="gpt-4.1", tools=[search], response_format=ContactInfo) result = agent.invoke({"messages": [{"role": "user", "content": "Find contact for John"}]}) print(result["structured_response"]) # ContactInfo(name='John',...)

# Option 2: Model-level structured output (no agent needed)

from langchain_openai import ChatOpenAI model = ChatOpenAI(model="gpt-4.1") structured_model = model.with_structured_output(ContactInfo) response = structured_model.invoke("Extract: John, [john@example.com](https://github.com/langchain-ai/langchain-skills/blob/HEAD/config/skills/langchain-fundamentals/mailto:john@example.com), 555-1234")

# ContactInfo(name='John', email='[john@example.com](https://github.com/langchain-ai/langchain-skills/blob/HEAD/config/skills/langchain-fundamentals/mailto:john@example.com)', phone='555-1234')

</python> <typescript>

import { ChatOpenAI } from "@langchain/openai";
import { z } from "zod";

const ContactInfo = z.object({
  name: z.string(),
  email: z.string().email(),
  phone: z.string().describe("Phone number with area code"),
});

// Model-level structured output
const model = new ChatOpenAI({ model: "gpt-4.1" });
const structuredModel = model.withStructuredOutput(ContactInfo);
const response = await structuredModel.invoke("Extract: John, john@example.com, 555-1234");
// { name: 'John', email: 'john@example.com', phone: '555-1234' }

<model_config>

Model Configuration

create_agent accepts model strings ("anthropic:claude-sonnet-4-5", "openai:gpt-4.1") or model instances for custom settings:

from langchain_anthropic import ChatAnthropic
agent = create_agent(model=ChatAnthropic(model="claude-sonnet-4-5", temperature=0), tools=[...])

</model_config>

CORRECT: Clear, specific description with Args

@tool def search(query: str) -> str: """Search the web for current information about a topic.

Use this when you need recent data or facts.

Args:
    query: The search query (2-10 words recommended)
"""
return web_search(query)
</python>
<typescript>
Clear descriptions help the agent know when to use each tool.

// WRONG: Vague description const badTool = tool(async ({ input }) => "result", { name: "bad_tool", description: "Does stuff.", // Too vague! schema: z.object({ input: z.string() }), });

// CORRECT: Clear, specific description const search = tool(async ({ query }) => webSearch(query), { name: "search", description: "Search the web for current information about a topic. Use this when you need recent data or facts.", schema: z.object({ query: z.string().describe("The search query (2-10 words recommended)"), }), });


# CORRECT: Add checkpointer and thread_id

from langgraph.checkpoint.memory import MemorySaver

agent = create_agent(model="anthropic:claude-sonnet-4-5", tools=[search], checkpointer=MemorySaver(),) config = {"configurable": {"thread_id": "session-1"}} agent.invoke({"messages": [{"role": "user", "content": "I'm Bob"}]}, config=config) agent.invoke({"messages": [{"role": "user", "content": "What's my name?"}]}, config=config)

# Agent remembers: "Your name is Bob"

</python> <typescript> Add checkpointer and thread_id for conversation memory across invocations.

// WRONG: No persistence
const agent = createAgent({ model: "anthropic:claude-sonnet-4-5", tools: [search] });
await agent.invoke({ messages: [{ role: "user", content: "I'm Bob" }] });
await agent.invoke({ messages: [{ role: "user", content: "What's my name?" }] });
// Agent doesn't remember!

// CORRECT: Add checkpointer and thread_id
import { MemorySaver } from "@langchain/langgraph";

const agent = createAgent({
  model: "anthropic:claude-sonnet-4-5",
  tools: [search],
  checkpointer: new MemorySaver(),
});
const config = { configurable: { thread_id: "session-1" } };
await agent.invoke({ messages: [{ role: "user", content: "I'm Bob" }] }, config);
await agent.invoke({ messages: [{ role: "user", content: "What's my name?" }] }, config);
// Agent remembers: "Your name is Bob"

CORRECT: Set recursion_limit in config

result = agent.invoke({"messages": [("user", "Do research")]}, config={"recursion_limit": 10}, # Stop after 10 steps)

</python>
<typescript>
Set recursionLimit in the invoke config to prevent runaway agent loops.

// WRONG: No iteration limit const result = await agent.invoke({ messages: [["user", "Do research"]] });

// CORRECT: Set recursionLimit in config const result = await agent.invoke( { messages: [["user", "Do research"]] }, { recursionLimit: 10 }, // Stop after 10 steps );


# CORRECT: Access messages from result dict

result = agent.invoke({"messages": [{"role": "user", "content": "Hello"}]}) print(result["messages"][-1].content) # Last message content

</python> <typescript> Access the messages array from the result, not result.content directly.

// WRONG: Trying to access result.content directly
const result = await agent.invoke({ messages: [{ role: "user", content: "Hello" }] });
console.log(result.content); // undefined!

// CORRECT: Access messages from result object
const result = await agent.invoke({ messages: [{ role: "user", content: "Hello" }] });
console.log(result.messages[result.messages.length - 1].content); // Last message content

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.5%
按下载量换算16,428

Claude

30.3%
按下载量换算13,637

Cursor

17.99%
按下载量换算8,097

Gemini CLI

9.14%
按下载量换算4,114

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills