-
Notifications
You must be signed in to change notification settings - Fork 3.1k
docs: remaining fern doc fixes #3780
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| /** | ||
| * Badge links for GitHub, License, project status, Discord, etc. | ||
| * Uses a flex wrapper to display badges horizontally and hides Fern's | ||
| * external-link icon that otherwise stacks under each badge image. | ||
| * Requires the `.badge-links` CSS rule from main.css. | ||
| */ | ||
| export type BadgeItem = { | ||
| href: string; | ||
| src: string; | ||
| alt: string; | ||
| }; | ||
|
|
||
| export function BadgeLinks({ badges = [] }: { badges?: BadgeItem[] }) { | ||
| if (badges.length === 0) { | ||
| return null; | ||
| } | ||
| return ( | ||
| <div className="badge-links"> | ||
| {badges.map((b) => ( | ||
| <a key={b.href} href={b.href} target="_blank" rel="noreferrer"> | ||
| <img src={b.src} alt={b.alt} /> | ||
| </a> | ||
| ))} | ||
| </div> | ||
| ); | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| declare const React: unknown; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add SPDX license header to this new TypeScript declaration file. The file currently has no required SPDX copyright/license header. As per coding guidelines, 🤖 Prompt for AI Agents |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,40 @@ | ||
| --- | ||
| # SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
| title: "NVIDIA NemoClaw Developer Guide" | ||
| title: "NVIDIA NemoClaw" | ||
| sidebar-title: "NVIDIA NemoClaw Developer Guide" | ||
| description: "NemoClaw is an open-source reference stack that simplifies running OpenClaw always-on assistants more safely, with a single command." | ||
| keywords: "NemoClaw, OpenClaw, OpenShell, AI agents, sandboxing, inference routing" | ||
| position: 1 | ||
| --- | ||
|
|
||
| import { BadgeLinks } from "./_components/BadgeLinks"; | ||
|
|
||
| <BadgeLinks | ||
| badges={[ | ||
| { | ||
| href: "https://github.com/NVIDIA/NemoClaw/blob/main/LICENSE", | ||
| src: "https://img.shields.io/badge/License-Apache_2.0-blue", | ||
| alt: "License", | ||
| }, | ||
| { | ||
| href: "https://github.com/NVIDIA/NemoClaw/blob/main/SECURITY.md", | ||
| src: "https://img.shields.io/badge/Security-Report%20a%20Vulnerability-red", | ||
| alt: "Security Policy", | ||
| }, | ||
| { | ||
| href: "https://github.com/NVIDIA/NemoClaw/blob/main/docs/about/release-notes.md", | ||
| src: "https://img.shields.io/badge/status-alpha-orange", | ||
|
Comment on lines
+26
to
+27
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix the Release Notes badge target URL. Line 26 links to As per coding guidelines, 🤖 Prompt for AI Agents |
||
| alt: "Project Status", | ||
| }, | ||
| { | ||
| href: "https://discord.gg/XFpfPv9Uvx", | ||
| src: "https://img.shields.io/badge/Discord-Join-7289da", | ||
| alt: "Discord", | ||
| }, | ||
| ]} | ||
| /> | ||
|
|
||
| NVIDIA NemoClaw is an open-source reference stack that simplifies running [OpenClaw](https://openclaw.ai) always-on assistants more safely. | ||
| NemoClaw provides onboarding, lifecycle management, and OpenClaw operations within OpenShell containers. | ||
| It installs the [NVIDIA OpenShell](https://github.com/NVIDIA/OpenShell) runtime, part of NVIDIA Agent Toolkit, setting up an environment designed for executing agents with additional security and inference routing capabilities. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add SPDX license header to this new TSX source file.
This file is missing the required SPDX copyright and license header.
As per coding guidelines,
**/*.{js,ts,tsx,jsx,sh,yaml,yml,json,md,mdx}: Every source file must include an SPDX license header for copyright and Apache-2.0 license.🤖 Prompt for AI Agents