-
Notifications
You must be signed in to change notification settings - Fork 3.1k
docs: catch up documentation for v0.0.11 changes and add docs-skip #1719
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,37 @@ | ||
| # SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| # Docs Skip List | ||
| # | ||
| # Features and commits listed here are excluded from the | ||
| # nemoclaw-contributor-update-docs skill. The skill reads this file | ||
| # before mapping commits to doc pages and silently skips any match. | ||
| # | ||
| # Use this when a feature is merged but not ready for public docs | ||
| # (experimental, under UX review, pending approval, etc.). | ||
| # | ||
| # Format | ||
| # ------ | ||
| # skip-features: substring matches against commit messages and | ||
| # changed file paths. Any commit whose message or | ||
| # diff file list contains a listed string is skipped. | ||
| # | ||
| # skip-terms: terms that must never appear in generated docs, | ||
| # even if the commit itself is not skipped. The skill | ||
| # checks drafted content against this list before | ||
| # writing. Use for names, flags, or concepts that | ||
| # are not ready for public mention. | ||
| # | ||
| # Lines starting with '#' are comments. Inline comments after a value | ||
| # are supported (everything after ' # ' is ignored). | ||
| # | ||
| # Remember to remove entries once the feature is ready for docs. | ||
|
|
||
| skip-features: | ||
| - "--dangerously-skip-permissions" # experimental flag, pending UX review | ||
| - "openclaw-sandbox-permissive.yaml" # permissive policy file, same feature | ||
|
|
||
| skip-terms: | ||
| - "dangerously-skip-permissions" # do not mention this flag anywhere in docs | ||
| - "permissive mode" # do not reference this concept in docs | ||
| - "Hermes" | ||
|
Comment on lines
+30
to
+37
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. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Search for any other references to skip-commits in the codebase
rg -n "skip-commits" --type mdRepository: NVIDIA/NemoClaw Length of output: 41 🏁 Script executed: # Find SKILL.md and check its content
fd -t f "SKILL.md" || fd -t f "skill.md"Repository: NVIDIA/NemoClaw Length of output: 144 🏁 Script executed: # Check the docs/.docs-skip file
cat -n docs/.docs-skipRepository: NVIDIA/NemoClaw Length of output: 1910 🏁 Script executed: # Check the found SKILL.md file and get line count
wc -l test/e2e/e2e-cloud-experimental/features/skill/fixtures/skill-smoke-template.SKILL.mdRepository: NVIDIA/NemoClaw Length of output: 147 🏁 Script executed: # Display lines around line 55 of the found SKILL.md (if it's long enough)
sed -n '50,60p' test/e2e/e2e-cloud-experimental/features/skill/fixtures/skill-smoke-template.SKILL.mdRepository: NVIDIA/NemoClaw Length of output: 41 🏁 Script executed: # Search for all SKILL.md files to see if there are other documentation files
fd -t f "SKILL.md" -o "skill.md"Repository: NVIDIA/NemoClaw Length of output: 194 🏁 Script executed: # Get complete line count of docs/.docs-skip
wc -l docs/.docs-skipRepository: NVIDIA/NemoClaw Length of output: 77 🏁 Script executed: # Search for all SKILL.md files without the syntax error
find . -name "*SKILL.md" -o -name "*skill.md"Repository: NVIDIA/NemoClaw Length of output: 1139 🏁 Script executed: # Search for skip-commits in ALL file types (not just markdown)
rg -n "skip-commits"Repository: NVIDIA/NemoClaw Length of output: 41 🏁 Script executed: # List files in docs directory
ls -la docs/Repository: NVIDIA/NemoClaw Length of output: 1264 🏁 Script executed: # Check the nemoclaw-contributor-update-docs SKILL.md file
wc -l ./.agents/skills/nemoclaw-contributor-update-docs/SKILL.mdRepository: NVIDIA/NemoClaw Length of output: 121 🏁 Script executed: # Get content around the claimed line 55
sed -n '50,60p' ./.agents/skills/nemoclaw-contributor-update-docs/SKILL.mdRepository: NVIDIA/NemoClaw Length of output: 1355 🏁 Script executed: # Show the full content to understand the file structure
cat -n ./.agents/skills/nemoclaw-contributor-update-docs/SKILL.mdRepository: NVIDIA/NemoClaw Length of output: 10585 Add Line 55 of
Either add a 🤖 Prompt for AI Agents |
||
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.
Remove reference to
skip-commits— not defined or parsed.Line 55 mentions excluding commits whose short hash appears in
skip-commits, but:.docs-skipfile does not define askip-commits:sectionskip-featuresandskip-termsThis creates an inconsistency where the skill instructions reference a feature that isn't implemented.
📝 Proposed fix to remove skip-commits reference
📝 Committable suggestion
🤖 Prompt for AI Agents