Token导航 LogoToken导航TokenDH.com
研究检索external-serviceclawhub未标认证来源可访问clear审计通过

nat-skill自然技能

Agent Skill

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

总安装

2,709

周安装

114

GitHub Stars

公开资料未说明

下载量

948
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:nat-skill(自然技能)
来源仓库:https://github.com/sauravdev/nat-skill
安装命令:
openclaw skills install nat-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install nat-skill

简介

nat-skill 集成 NVIDIA NeMo Agent Toolkit,支持工作流程创建、工具添加与 A2A/MCP 服务器发布。

  • 适用于高级代理开发与性能评估场景。
  • 通过 clawhub 安装后按指引配置环境与工具链。
  • 使用前需具备 GPU 资源与 NVIDIA 开发者权限。
  • nat-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
nat
description
NVIDIA NeMo Agent Toolkit (NAT) — install, create workflows, add tools, run agents, evaluate performance, and publish as A2A/MCP servers. Use when: (1) installing or setting up NAT, (2) creating or editing workflow YAML configs, (3) adding built-in or custom tools/functions, (4) running agents with nat run, (5) evaluating or profiling workflows, (6) publishing workflows as A2A or MCP servers, (7) creating custom functions or function groups, (8) integrating with LangChain, LlamaIndex, CrewAI, or other frameworks. Trigger keywords: NAT, NeMo Agent Toolkit, nvidia-nat, nat run, nat workflow, nat eval, nat a2a, nat profiler, workflow.yml, react_agent, tool_calling_agent.
metadata
{ "openclaw": { "requires": { "anyBins": ["nat", "pip", "uv"] }, "primaryEnv": "NVIDIA_API_KEY" } }

NVIDIA NeMo Agent Toolkit (NAT)

A flexible library for connecting enterprise agents to data sources and tools across any framework.

  • Repo: https://github.com/NVIDIA/NeMo-Agent-Toolkit
  • Docs: https://docs.nvidia.com/nemo/agent-toolkit/latest/

Installation

# Core (pick one)
uv pip install nvidia-nat        # recommended
pip install nvidia-nat

# With framework extras
uv pip install "nvidia-nat[langchain]"    # LangChain/LangGraph
uv pip install "nvidia-nat[llama-index]"  # LlamaIndex
uv pip install "nvidia-nat[crewai]"       # CrewAI
uv pip install "nvidia-nat[mcp]"          # MCP
uv pip install "nvidia-nat[a2a]"          # A2A
uv pip install "nvidia-nat[mem0ai]"       # Mem0 memory
uv pip install "nvidia-nat[eval,profiling]"  # Eval + profiling

# Verify
nat --help && nat --version

For development install from source, see references/install-from-source.md.

Quick Start

export NVIDIA_API_KEY=<key_from_build.nvidia.com>

Create workflow.yml:

functions:
  wikipedia_search:
    _type: wiki_search
    max_results: 2

llms:
  nim_llm:
    _type: nim
    model_name: meta/llama-3.1-70b-instruct
    temperature: 0.0

workflow:
  _type: react_agent
  tool_names: [wikipedia_search]
  llm_name: nim_llm
  verbose: true
  parse_agent_response_max_retries: 3
nat run --config_file workflow.yml --input "List five subspecies of Aardvarks"

Workflow Configuration Structure

Four main YAML sections:

SectionPurpose
functionsTools (web search, calculators, custom)
llmsLLM provider configs (NIM, OpenAI, Azure, Bedrock)
embeddersEmbedding models for vector storage
workflowAgent type + wiring of tools and LLMs

Agent Types (_type in workflow)

  • react_agent — Reasoning and acting
  • reasoning_agent — Advanced reasoning
  • rewwo_agent — Reasoning Without Observation
  • responses_api_agent — OpenAI Responses API
  • tool_calling_agent — Direct tool calling
  • automatic_memory_wrapper_agent — Adds memory
  • router_agent — Routes to different workflows
  • sequential_executor — Sequential tool execution

Built-in Tools (_type in functions)

wiki_search, webpage_query, tavily_internet_search, arxiv_search, current_datetime, calculator, text_file_ingest, and many more framework-specific tools.

List all available components:

nat info components -t function      # Tools
nat info components -t llm_provider  # LLMs
nat info components -t embedder      # Embedders

Common CLI Commands

# Run workflow
nat run --config_file workflow.yml --input "question"

# Override params without editing YAML
nat run --config_file workflow.yml --input "question" \
  --override llms.nim_llm.temperature 0.7 \
  --override llms.nim_llm.model_name meta/llama-3.3-70b-instruct

# Create new workflow template
nat workflow create --workflow-dir examples my_workflow

# Evaluate
nat eval --config_file eval_config.yml

# Profile
nat profiler --config_file workflow.yml --input "test"

# Red team
nat red-team --config_file workflow.yml

# Workflow management
nat workflow reinstall my_workflow
nat workflow delete my_workflow

Custom Tools and Function Groups

For creating custom tools, function groups, and advanced patterns, see:

A2A Server

Publish workflows as A2A agents for discovery and invocation by other A2A clients.

# Start A2A server
nat a2a serve --config_file workflow.yml

# Discover agent
nat a2a client discover --url http://localhost:10000

# Call agent
nat a2a client call --url http://localhost:10000 --message "What is 42 * 67?"

For full A2A configuration (auth, concurrency, Kubernetes), see references/a2a-server.md.

Examples

The repo includes examples organized by category: Getting Started, Agents, Advanced Agents, Control Flow, Frameworks, MCP/A2A, Evaluation, and more. See references/examples.md for the full catalog and how to run them.

# Run any example
uv pip install -e examples/<example_directory>
nat run --config_file examples/<example_directory>/configs/config.yml --input "test"

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

81.4%
按下载量换算772

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills