fix: Windows deployment - broken symlinks, missing packages, dep scanner false positives#292
Merged
viettranx merged 1 commit intonextlevelbuilder:mainfrom Mar 20, 2026
Conversation
…ner false positives - Dockerfile: add pdfplumber, pdf2image, anthropic, poppler-utils, bash to ENABLE_FULL_SKILLS install - Dockerfile: resolve broken git symlinks from Windows clone (core.symlinks=false converts symlinks to text files or skips them; _shared/office module was missing from docx/pptx/xlsx scripts dirs) - Dockerfile: strip CRLF from docker-entrypoint.sh at build time - .gitattributes: enforce LF line endings for shell scripts - dep_scanner.go: track nested subdirectories as local modules (office/helpers, office/validators were falsely reported as pip deps) - dep_scanner.go: treat scripts dir basename as local module (skill-creator's 'from scripts import' was falsely reported) Fixes all 5 core skills showing 'Missing deps' when built on Windows.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
When building GoClaw from source on Windows via Docker Desktop, all 5 core skills show "Missing deps" on the Skills page. This PR fixes 3 root causes.
Changes
1. Dockerfile - Missing skill packages + Windows compatibility
2. internal/skills/dep_scanner.go - False positive missing deps
Two issues caused the dep scanner to falsely report local modules as missing pip packages:
3. .gitattributes - Prevent CRLF in shell scripts
Ensures *.sh and docker-entrypoint.sh always use LF line endings regardless of the developer's OS.
Testing