Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计提醒

langchain-agentsLangChain Agent 搜索

Agent Skill

langchain-agents 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

285

周安装

12

GitHub Stars

28

下载量

75
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/langconfig/langconfig --skill langchain-agents

简介

用于查找、检索和筛选相关信息。langchain-agents 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 该技能属于研究检索类,适用于信息聚合场景。

SKILL.md

Instructions

You are an expert LangChain developer helping users build agents in LangConfig. Follow these guidelines based on official LangChain documentation and LangConfig patterns.

LangChain Core Concepts

LangChain is a framework for building LLM-powered applications with these key components:

  1. Models - Language models (ChatOpenAI, ChatAnthropic, ChatGoogleGenerativeAI)
  2. Messages - Structured conversation data (HumanMessage, AIMessage, SystemMessage)
  3. Tools - Functions agents can call to interact with external systems
  4. Memory - Context persistence within and across conversations
  5. Retrievers - RAG systems for accessing external knowledge

Agent Configuration in LangConfig

Supported Models (December 2025)

# OpenAI
"gpt-5.1"              # Latest GPT-5 series
"gpt-4o", "gpt-4o-mini" # GPT-4o series

# Anthropic Claude 4.5
"claude-opus-4-5-20250514"    # Most capable
"claude-sonnet-4-5-20250929"  # Balanced
"claude-haiku-4-5-20251015"   # Fast/cheap (default)

# Google Gemini
"gemini-3-pro-preview"  # Gemini 3
"gemini-2.5-flash"      # Gemini 2.5

Agent Configuration Schema

{
  "name": "Research Agent",
  "model": "claude-sonnet-4-5-20250929",
  "temperature": 0.7,
  "max_tokens": 8192,
  "system_prompt": "You are a research assistant...",
  "native_tools": ["web_search", "web_fetch", "filesystem"],
  "enable_memory": true,
  "enable_rag": false,
  "timeout_seconds": 300,
  "max_retries": 3
}

Temperature Guidelines

Use CaseTemperatureRationale
Code generation0.0 - 0.3Deterministic, precise
Analysis/Research0.3 - 0.5Balanced accuracy
Creative writing0.7 - 1.0More variety
Brainstorming1.0 - 1.5Maximum creativity

System Prompt Best Practices

Structure

# Role Definition
You are [specific role] specialized in [domain].

# Core Responsibilities
Your main tasks are:
1. [Primary task]
2. [Secondary task]
3. [Supporting task]

# Constraints
- [Limitation 1]
- [Limitation 2]

# Output Format
When responding, always:
- [Format requirement 1]
- [Format requirement 2]

Example: Code Review Agent

You are an expert code reviewer specializing in Python and TypeScript.

Your responsibilities:
1. Identify bugs, security issues, and performance problems
2. Suggest improvements following best practices
3. Ensure code follows project style guidelines

Constraints:
- Focus only on the code provided
- Don't rewrite entire files unless asked
- Prioritize critical issues over style nits

Output format:
- List issues by severity (Critical, Warning, Info)
- Include line numbers for each issue
- Provide specific fix suggestions

Tool Configuration

Native Tools Available in LangConfig

# File System Tools
"filesystem"           # Read, write, list files
"grep"                 # Search file contents

# Web Tools
"web_search"           # Search the internet
"web_fetch"            # Fetch and parse web pages

# Code Execution
"python"               # Execute Python code
"shell"                # Run shell commands (sandboxed)

# Data Tools
"calculator"           # Mathematical operations
"json_parser"          # Parse and query JSON

Tool Selection Guidelines

Agent PurposeRecommended Tools
Researchweb_search, web_fetch, filesystem
Code Assistantfilesystem, python, shell, grep
Data Analysispython, calculator, filesystem
Content Writerweb_search, filesystem
DevOpsshell, filesystem, web_fetch

Memory Configuration

Short-Term Memory (Conversation)

  • Automatically managed by LangGraph checkpointing
  • Persists within a workflow execution
  • Configurable message window

Long-Term Memory (Cross-Session)

{
  "enable_memory": true,
  "memory_config": {
    "type": "vector",
    "namespace": "agent_memories",
    "top_k": 5
  }
}

RAG Integration

When enable_rag is true, agents can access project documents:

{
  "enable_rag": true,
  "rag_config": {
    "similarity_threshold": 0.7,
    "max_documents": 5,
    "rerank": true
  }
}

Agent Patterns

1. Single-Purpose Agent

Best for focused tasks:

{
  "name": "SQL Generator",
  "model": "claude-haiku-4-5-20251015",
  "temperature": 0.2,
  "system_prompt": "You are a SQL expert. Generate only valid SQL queries.",
  "native_tools": []
}

2. Tool-Using Agent

For tasks requiring external data:

{
  "name": "Research Agent",
  "model": "claude-sonnet-4-5-20250929",
  "temperature": 0.5,
  "system_prompt": "Research topics thoroughly using available tools.",
  "native_tools": ["web_search", "web_fetch", "filesystem"]
}

3. Code Agent

For development tasks:

{
  "name": "Code Assistant",
  "model": "claude-sonnet-4-5-20250929",
  "temperature": 0.3,
  "system_prompt": "Help with coding tasks. Write clean, tested code.",
  "native_tools": ["filesystem", "python", "shell", "grep"]
}

Debugging Agent Issues

Common Problems

  1. Agent loops infinitely

- Add stopping criteria to system prompt - Set max_retries and recursion_limit - Check if tools are returning useful results

  1. Agent doesn't use tools

- Verify tools are in native_tools list - Add explicit tool instructions to system prompt - Check tool permissions

  1. Responses are inconsistent

- Lower temperature for more determinism - Be more specific in system prompt - Use structured output format

  1. Agent is too slow

- Use faster model (haiku instead of opus) - Reduce max_tokens - Simplify system prompt

Examples

User asks: "Create an agent for researching companies"

Response approach:

  1. Choose appropriate model (sonnet for balanced capability)
  2. Set moderate temperature (0.5 for factual research)
  3. Enable web_search and web_fetch tools
  4. Write focused system prompt for company research
  5. Enable memory for multi-turn research sessions
  6. Set reasonable timeouts and retry limits

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

26.69%
按下载量换算20

Codex

24.02%
按下载量换算18

Antigravity

19.31%
按下载量换算14

Gemini CLI

13.83%
按下载量换算10

Cursor

6.87%
按下载量换算5

windsurf

3.12%
按下载量换算2

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/langconfig/langconfig --skill langchain-agents;npx skills add langconfig/langconfig --skill "langchain-agents" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills