From 3e9ef57886b6d41a44ad71073c52afd343312590 Mon Sep 17 00:00:00 2001 From: Ankit Kapur Date: Mon, 29 Jun 2026 12:27:35 +0200 Subject: [PATCH 1/2] docs: add Hlido to the third-party plugins acknowledgment Hlido (https://hlido.eu) provides independent, evidence-backed trust scores for AI agents. In a NeMo Agent Toolkit environment, `pip install hlido` registers a 'hlido' function group via the nat.plugins entry point, exposing hlido__trust_check / hlido__find_trusted / hlido__verify_claim / hlido__get_scorecard so a workflow can vet another agent before delegating to it. Public API, no key required. Signed-off-by: Ankit Kapur --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8192facedc..ed524cc1e2 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ limitations under the License. - [**AI Coding Agent Skills:**](./AGENTS.md) Use focused NeMo Agent Toolkit skills to give coding agents task-specific guidance for building, evaluating, optimizing, and observing workflows. - [**Dynamo Runtime Intelligence:**](./examples/dynamo_integration/latency_sensitivity_demo/README.md) Automatically infer per-request latency sensitivity from agent profiles and apply runtime hints for cache control, load-aware routing, and priority-aware serving. - [**Agent Performance Primitives (APP):**](https://docs.langchain.com/oss/python/integrations/providers/nvidia#install-2) Introduce framework-agnostic performance primitives that accelerate graph-based agent frameworks such as LangChain, CrewAI, and Agno with parallel execution, speculative branching, and node-level priority routing. -- [**Public Plugin API for Third-Party Tools:**](./docs/source/extend/third-party-plugins.md) Build provider-managed integrations against the public NeMo Agent Toolkit plugin API instead of framework-specific internal packages. Thank you to the maintainers of externally managed plugins including [NeMo-Agent-Toolkit-Tavily](https://github.com/tavily-ai/NeMo-Agent-Toolkit-tavily), [NeMo-Agent-Toolkit-Redis](https://github.com/redis-developer/nemo-agent-toolkit-redis), and [NeMo-Agent-Toolkit-ATR](https://github.com/Agent-Threat-Rule/NeMo-Agent-Toolkit-atr). This new workflow is intended to help third-party package maintainers bring their integrations into NeMo Agent Toolkit workflows more quickly. Note that these third-party packages are managed outside the NeMo Agent Toolkit repository and may release, change, or run CI on schedules independent of NeMo Agent Toolkit. +- [**Public Plugin API for Third-Party Tools:**](./docs/source/extend/third-party-plugins.md) Build provider-managed integrations against the public NeMo Agent Toolkit plugin API instead of framework-specific internal packages. Thank you to the maintainers of externally managed plugins including [NeMo-Agent-Toolkit-Tavily](https://github.com/tavily-ai/NeMo-Agent-Toolkit-tavily), [NeMo-Agent-Toolkit-Redis](https://github.com/redis-developer/nemo-agent-toolkit-redis), [NeMo-Agent-Toolkit-ATR](https://github.com/Agent-Threat-Rule/NeMo-Agent-Toolkit-atr), and [Hlido](https://github.com/ankitkapur1992-hlido/hlido-public/tree/main/integrations/hlido-trust) (independent agent-trust tools; `pip install hlido`). This new workflow is intended to help third-party package maintainers bring their integrations into NeMo Agent Toolkit workflows more quickly. Note that these third-party packages are managed outside the NeMo Agent Toolkit repository and may release, change, or run CI on schedules independent of NeMo Agent Toolkit. - [**LangSmith Native Integration:**](./docs/source/run-workflows/observe/observe-workflow-with-langsmith.md) Observe end-to-end agent execution with native LangSmith tracing, run evaluation experiments, compare outcomes, and manage prompt versions across development and production workflows. - [**FastMCP Workflow Publishing:**](./docs/source/run-workflows/fastmcp-server.md) Publish NeMo Agent Toolkit workflows as MCP servers using the FastMCP server runtime to simplify MCP-native deployment and integration. - **Migration notice:** `1.5.0` simplifies package installation and dependency management. See the [Migration Guide](./docs/source/resources/migration-guide.md#v150). From b8c8a5fc595759d3cc91db1e1a9dae9ff16bd70e Mon Sep 17 00:00:00 2001 From: Ankit Kapur Date: Fri, 10 Jul 2026 13:27:27 +0200 Subject: [PATCH 2/2] docs(readme): list Hlido like other third-party plugins (address review) Drop the extra install/description parenthetical so the Hlido entry matches the format of the other externally-managed plugins, per @willkill07 review. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ed524cc1e2..e60e851c27 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ limitations under the License. - [**AI Coding Agent Skills:**](./AGENTS.md) Use focused NeMo Agent Toolkit skills to give coding agents task-specific guidance for building, evaluating, optimizing, and observing workflows. - [**Dynamo Runtime Intelligence:**](./examples/dynamo_integration/latency_sensitivity_demo/README.md) Automatically infer per-request latency sensitivity from agent profiles and apply runtime hints for cache control, load-aware routing, and priority-aware serving. - [**Agent Performance Primitives (APP):**](https://docs.langchain.com/oss/python/integrations/providers/nvidia#install-2) Introduce framework-agnostic performance primitives that accelerate graph-based agent frameworks such as LangChain, CrewAI, and Agno with parallel execution, speculative branching, and node-level priority routing. -- [**Public Plugin API for Third-Party Tools:**](./docs/source/extend/third-party-plugins.md) Build provider-managed integrations against the public NeMo Agent Toolkit plugin API instead of framework-specific internal packages. Thank you to the maintainers of externally managed plugins including [NeMo-Agent-Toolkit-Tavily](https://github.com/tavily-ai/NeMo-Agent-Toolkit-tavily), [NeMo-Agent-Toolkit-Redis](https://github.com/redis-developer/nemo-agent-toolkit-redis), [NeMo-Agent-Toolkit-ATR](https://github.com/Agent-Threat-Rule/NeMo-Agent-Toolkit-atr), and [Hlido](https://github.com/ankitkapur1992-hlido/hlido-public/tree/main/integrations/hlido-trust) (independent agent-trust tools; `pip install hlido`). This new workflow is intended to help third-party package maintainers bring their integrations into NeMo Agent Toolkit workflows more quickly. Note that these third-party packages are managed outside the NeMo Agent Toolkit repository and may release, change, or run CI on schedules independent of NeMo Agent Toolkit. +- [**Public Plugin API for Third-Party Tools:**](./docs/source/extend/third-party-plugins.md) Build provider-managed integrations against the public NeMo Agent Toolkit plugin API instead of framework-specific internal packages. Thank you to the maintainers of externally managed plugins including [NeMo-Agent-Toolkit-Tavily](https://github.com/tavily-ai/NeMo-Agent-Toolkit-tavily), [NeMo-Agent-Toolkit-Redis](https://github.com/redis-developer/nemo-agent-toolkit-redis), [NeMo-Agent-Toolkit-ATR](https://github.com/Agent-Threat-Rule/NeMo-Agent-Toolkit-atr), and [Hlido](https://github.com/ankitkapur1992-hlido/hlido-public/tree/main/integrations/hlido-trust). This new workflow is intended to help third-party package maintainers bring their integrations into NeMo Agent Toolkit workflows more quickly. Note that these third-party packages are managed outside the NeMo Agent Toolkit repository and may release, change, or run CI on schedules independent of NeMo Agent Toolkit. - [**LangSmith Native Integration:**](./docs/source/run-workflows/observe/observe-workflow-with-langsmith.md) Observe end-to-end agent execution with native LangSmith tracing, run evaluation experiments, compare outcomes, and manage prompt versions across development and production workflows. - [**FastMCP Workflow Publishing:**](./docs/source/run-workflows/fastmcp-server.md) Publish NeMo Agent Toolkit workflows as MCP servers using the FastMCP server runtime to simplify MCP-native deployment and integration. - **Migration notice:** `1.5.0` simplifies package installation and dependency management. See the [Migration Guide](./docs/source/resources/migration-guide.md#v150).