fix(feeds): fix absolute CI paths leaking into skill manifest URLs#336
Merged
Conversation
The find command in generate-skill-manifest.sh returned absolute paths (e.g., /home/runner/_work/...) which leaked into manifest resource file URLs when the path prefix stripping failed. This caused every skill sync to fail with 404s — skills were only available from the built-in seed copy, never updated from the feed. Fix: normalize paths with pwd before stripping. Also skip versioned subdirectories (e.g., 1.1.0/SKILL.md) from being treated as resources.
Aaronontheweb
added a commit
that referenced
this pull request
Mar 20, 2026
Update version to 0.7.3 and add release notes for the manifest path normalization fix (#336).
3 tasks
Aaronontheweb
added a commit
that referenced
this pull request
Mar 20, 2026
Update version to 0.7.3 and add release notes for the manifest path normalization fix (#336).
This was referenced Mar 20, 2026
Aaronontheweb
added a commit
that referenced
this pull request
Mar 20, 2026
…e skills across compaction (#339) * Release 0.7.3 — skill feed sync fix Update version to 0.7.3 and add release notes for the manifest path normalization fix (#336). * fix(skills): strip YAML frontmatter before injecting auto-loaded skill content (#324) Skill files include metadata like version numbers in their YAML frontmatter. When injected raw into the LLM context, the model can mistake skill metadata (e.g., version: "0.8.2") for its own runtime version. Strip frontmatter using SkillScanner.ExtractBody so the LLM only sees the markdown body with behavioral guidance. * fix(sessions): preserve auto-loaded skills across compaction (#315) Previously, compaction cleared _autoLoadedSkills and _autoLoadedSkillContent, causing the bot to lose all skill context. Skills would only re-load if the next user message happened to score above the keyword threshold again — generic follow-up messages like "ok" or "what were we talking about" would not re-trigger them, causing apparent amnesia. Skills loaded during a session remain relevant after compaction. Keep the cache so they continue to be injected on subsequent turns. New skills can still be added via keyword matching on future messages.
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.
Summary
The
generate-skill-manifest.shscript usedfindwith absolute paths that leaked CI runner paths (e.g.,/home/runner/_work/netclaw/...) into manifest resource file URLs. This caused every skill sync to fail with 404s — all 6 system skills failed to update from the feed on every daemon startup.Skills were only available from the built-in seed copy baked into the binary, never updated from the CDN feed.
Fix
pwdbefore prefix stripping1.1.0/SKILL.md) from resource file listImpact
This has been broken since skills with resource files were introduced. After this fix,
netclaw doctorand daemon startup will successfully sync skills from the feed.Test plan
bash feeds/scripts/generate-skill-manifest.sh— generates clean URLs/home/runner/paths in manifestreferences/local-search.mdetc.)netclawdstartup showsSynced skillinstead ofDownload failed