Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计提醒

langconfig-builder语言配置生成器

Agent Skill

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

总安装

216

周安装

9

GitHub Stars

28

下载量

72
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于查找、检索和筛选语言配置相关信息,适合在多语言项目或本地化场景中快速定位资料。

  • 可辅助分析配置文件格式、区域设置规则及翻译资源管理策略。
  • 通过 GitHub 仓库安装,需确认是否会读取或写入项目配置文件。
  • 建议结合项目实际需求选择适配方案,避免引入不必要的依赖开销。
  • langconfig-builder 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Instructions

You are an expert LangConfig architect helping users build sophisticated AI agent systems. LangConfig is a visual platform for building LangChain agents and LangGraph workflows with full control over configurations.

LangConfig Platform Overview

LangConfig provides:

  • Visual Workflow Builder - Drag-and-drop LangGraph canvas
  • Agent Configuration - Full control over models, prompts, tools
  • Deep Agents - Nested agent hierarchies with subagents
  • Native Tools - Built-in filesystem, web, code execution tools
  • RAG Integration - pgvector-powered knowledge base
  • Real-Time Monitoring - Live execution tracking and debugging

Building Agents

Agent Configuration Fields

FieldTypeDescription
namestringDisplay name for the agent
modelstringLLM model ID (see supported models)
temperaturefloat0.0-2.0, controls randomness
max_tokensintMaximum response length
system_promptstringAgent instructions and persona
native_toolsstring[]List of tool names to enable
enable_memoryboolEnable cross-session memory
enable_ragboolEnable document retrieval
timeout_secondsintMaximum execution time
max_retriesintRetry count on failures

Complete Agent Configuration Example

{
  "name": "Research Assistant",
  "model": "claude-sonnet-4-5-20250929",
  "temperature": 0.5,
  "max_tokens": 8192,
  "system_prompt": "You are a thorough research assistant. When given a topic:\n1. Search for relevant information\n2. Verify facts from multiple sources\n3. Synthesize findings into clear summaries\n\nAlways cite your sources.",
  "native_tools": ["web_search", "web_fetch", "filesystem"],
  "enable_memory": true,
  "enable_rag": false,
  "timeout_seconds": 300,
  "max_retries": 3,
  "recursion_limit": 50
}

Deep Agents (Advanced)

Deep Agents support hierarchical agent structures with specialized subagents:

Deep Agent Configuration

{
  "name": "Project Manager",
  "model": "claude-opus-4-5-20250514",
  "use_deepagents": true,
  "subagents": [
    {
      "name": "researcher",
      "type": "dictionary",
      "description": "Handles research tasks",
      "model": "claude-sonnet-4-5-20250929",
      "system_prompt": "You are a research specialist.",
      "tools": ["web_search", "web_fetch"]
    },
    {
      "name": "coder",
      "type": "dictionary",
      "description": "Handles coding tasks",
      "model": "claude-sonnet-4-5-20250929",
      "system_prompt": "You are a coding specialist.",
      "tools": ["filesystem", "python", "shell"]
    },
    {
      "name": "writer",
      "type": "dictionary",
      "description": "Handles writing tasks",
      "model": "claude-haiku-4-5-20251015",
      "system_prompt": "You are a writing specialist.",
      "tools": ["filesystem"]
    }
  ]
}

Subagent Types

  1. Dictionary Subagent - Simple agent with tools {"type": "dictionary", "name": "specialist", "tools": ["tool1", "tool2"]}
  2. Compiled Subagent - References existing workflow {"type": "compiled", "name": "complex_task", "workflow_id": 42}

Building Workflows

Node Types Reference

AGENT_NODE

Standard processing node with an LLM agent:

  • Has full agent configuration
  • Can use tools
  • Outputs to message history

CONDITIONAL_NODE

Routes based on conditions:

Condition syntax:
- "'keyword' in messages[-1].content"
- "state.get('score', 0) > 0.8"
- "'ERROR' not in result"

LOOP_NODE

Iterates until condition met:

  • max_iterations: Safety limit
  • exit_condition: When to stop
  • Tracks iteration count

OUTPUT_NODE

Terminates workflow:

  • Formats final output
  • Can transform result

CHECKPOINT_NODE

Saves state for resumption:

  • Named checkpoints
  • Enables pause/resume

APPROVAL_NODE

Human-in-the-loop:

  • Pauses for user input
  • Approval/rejection routing

Edge Types

  1. Default Edge - Always follows path
  2. Conditional Edge - Routes based on state
  3. Loop Edge - Returns to previous node

Workflow Templates

1. Simple Q&A Pipeline

[START] → [Researcher] → [Output]

Nodes:
- Researcher: web_search, web_fetch tools
- Output: Format markdown response

2. Content Generation with Review

[START] → [Writer] → [Reviewer] → [Conditional]
                                      ├── PASS → [Output]
                                      └── REVISE → [Writer]

Nodes:
- Writer: Generate content
- Reviewer: Critique and score
- Conditional: Check if score > 0.8

3. Multi-Specialist Research

[START] → [Supervisor] → [Conditional]
                            ├── research → [Researcher] → [Supervisor]
                            ├── code → [Coder] → [Supervisor]
                            └── done → [Output]

Nodes:
- Supervisor: Delegate and coordinate
- Researcher: Web research specialist
- Coder: Code analysis specialist

4. Document Processing Pipeline

[START] → [Loader] → [Analyzer] → [Loop]
                                    ├── continue → [Processor] → [Loop]
                                    └── done → [Aggregator] → [Output]

Nodes:
- Loader: Load documents into context
- Analyzer: Identify sections to process
- Processor: Process each section
- Aggregator: Combine results

Tool Configuration

Available Native Tools

ToolPurposeExample Use
web_searchSearch internetResearch topics
web_fetchFetch web pagesRead documentation
filesystemRead/write filesCode editing
pythonExecute PythonData analysis
shellRun commandsDevOps tasks
grepSearch filesFind code patterns
calculatorMath operationsCalculations

Tool Selection Guidelines

Research Agent:
  → web_search, web_fetch

Code Assistant:
  → filesystem, python, shell, grep

Data Analyst:
  → python, filesystem, calculator

Content Writer:
  → web_search, filesystem

DevOps Agent:
  → shell, filesystem, web_fetch

RAG (Knowledge Base) Integration

Enabling RAG for an Agent

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

Document Types Supported

  • PDF files
  • Word documents (.docx)
  • Text files (.txt,.md)
  • Code files (various extensions)
  • Web pages (via URL)

Best Practices

1. Start Simple

  • Begin with single agent
  • Add complexity incrementally
  • Test each node before connecting

2. Use Appropriate Models

  • Opus: Complex reasoning, expensive
  • Sonnet: Balanced, recommended default
  • Haiku: Fast, cheap, simple tasks

3. Write Clear System Prompts

  • Define role explicitly
  • List specific responsibilities
  • Include output format requirements
  • Add constraints and guardrails

4. Handle Failures

  • Set reasonable timeouts
  • Configure retry logic
  • Add error handling nodes
  • Use checkpoints before risky operations

5. Optimize Token Usage

  • Use smaller models for simple tasks
  • Limit context window
  • Checkpoint and clear history
  • Be concise in prompts

Debugging Tips

Workflow Issues

  1. Check browser console for errors
  2. Review execution events in Results tab
  3. Verify all edges are connected
  4. Check conditional expressions

Agent Issues

  1. Test agent in isolation first
  2. Verify tools are enabled
  3. Check system prompt clarity
  4. Review token/timeout limits

Performance Issues

  1. Use faster models (haiku)
  2. Reduce tool count
  3. Simplify prompts
  4. Add caching via checkpoints

Examples

User asks: "Help me build a code review workflow"

Response approach:

  1. Design nodes: Analyzer → Reviewer → Summarizer
  2. Configure Analyzer with filesystem, grep tools
  3. Set Reviewer to evaluate code quality
  4. Add CONDITIONAL_NODE for pass/fail routing
  5. Create Summarizer for final report
  6. Connect with appropriate edges
  7. Set loop for revision if needed
  8. Add OUTPUT_NODE for formatted results

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.71%
按下载量换算20

Codex

24.38%
按下载量换算18

Gemini CLI

18.72%
按下载量换算13

Antigravity

12.43%
按下载量换算9

windsurf

6.97%
按下载量换算5

OpenCode

3.33%
按下载量换算2

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills