docs: mark 3 non-executable code blocks as skip to fix doc-codeblocks CI#2042
docs: mark 3 non-executable code blocks as skip to fix doc-codeblocks CI#2042Copilot wants to merge 1 commit into
skip to fix doc-codeblocks CI#2042Conversation
Agent-Logs-Url: https://github.com/dimensionalOS/dimos/sessions/e5fbc52b-018c-433a-aca7-0064a150d4cb Co-authored-by: leshy <681516+leshy@users.noreply.github.com>
Greptile SummaryThis PR adds the
Confidence Score: 4/5Safe to merge — purely documentation metadata changes that fix CI without touching any executable code. Two of the three docs/capabilities/navigation/nav_stack.md — the skipped block contains pseudo-code placeholders that don't conform to the executable-docs policy; the other two files are fine. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
CI[doc-codeblocks CI job] --> nav[nav_stack.md block]
CI --> g1[g1/index.md block]
CI --> viz[visualization.md block]
nav -->|pseudo-code placeholders, not valid Python| SKIP_NAV[Skipped - skip flag added]
g1 -->|requires live G1 robot over SSH| SKIP_G1[Skipped - skip flag added]
viz -->|requires CameraModule hardware| SKIP_VIZ[Skipped - skip flag added]
SKIP_NAV --> PASS[CI passes]
SKIP_G1 --> PASS
SKIP_VIZ --> PASS
|
Problem
Three markdown code blocks were failing the
doc-codeblocksCI job because they contain pseudo-code or hardware-dependent commands that cannot execute in CI:docs/capabilities/navigation/nav_stack.md:36— uses{...}placeholder syntax, invalid Pythondocs/platforms/humanoid/g1/index.md:81— shell command requires a live G1 robot over SSHdocs/usage/visualization.md:74— importsCameraModule, which requires hardwareSolution
Add the
skipfence flag to each block per the policy indocs/agents/docs/codeblocks.md:No logic changes; purely documentation metadata.
How to Test
All three previously-failing blocks should now be skipped without error.
Contributor License Agreement