fix(template): replace broken skills symlink with real files#33
Merged
Conversation
The default template's .agents/skills was a symlink to the monorepo root, which npm silently excludes from the tarball. Users running `npx @agent-native/core create` got zero skills. Replace the symlink with real skill files (matching the pattern used by all other templates). Also sync missing skills (capture-learnings, create-skill, self-modifying-code) to all 7 templates and add the full skills directory to the mail template which had none.
✅ Deploy Preview for agent-native-fw ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
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
.agents/skillswas a symlink to the monorepo root (../../../../../../.agents/skills). npm silently excludes symlinks from tarballs, sonpx @agent-native/core createproduced apps with zero skillscapture-learnings,create-skill,self-modifying-code) to all 6 existing templates.agents/skills/directory to themailtemplate which had noneTesting
npm pack --dry-runconfirms all 8 SKILL.md files appear in the tarballnode dist/cli/index.js create test-appscaffolds an app with all 8 skills.claude/skillssymlink resolves correctly in scaffolded appsPost-Deploy Monitoring & Validation
No additional operational monitoring required: static file change only — skills are markdown files included in the npm package, no runtime behavior change