feat: add fusion-help skills and fix Windows validation scripts#83
Merged
feat: add fusion-help skills and fix Windows validation scripts#83
Conversation
Contributor
Changeset summaryDetected 4 changeset file(s): .changeset/add-fusion-help-api.md: ---
"fusion-help-api": patch
---
Add fusion-help-api skill
- Guides developers through direct Fusion Help REST API interaction
- Covers articles, FAQs, release notes, search, and content management.changeset/add-fusion-help-docs.md: ---
"fusion-help-docs": patch
---
Add fusion-help-docs skill
- Guides app teams through authoring and publishing help documentation using fusion-help-cli
- Covers articles, release notes, and FAQs.changeset/add-fusion-help-integration.md: ---
"fusion-help-integration": patch
---
Add fusion-help-integration skill
- Wires Fusion Help Center into app pages via useHelpCenter hook and PageLayout props
- Creates article slug constants and connects contextual help articles.changeset/fix-windows-validation-scripts.md: ---
"fusion-skills": patch
---
Fix Windows compatibility in validation scripts
- Fix extractFrontmatter regex to handle \r\n line endings
- Fix parseFrontmatter split to normalize \r\n line endings
- Fix discoverLocalSkills regex to strip both / and \ path separators |
cf07713 to
e53f7a1
Compare
4 tasks
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.
Why
Adds three Fusion Help skills from the global skill library into the repository catalog, and fixes Windows compatibility issues in validation scripts discovered during the process.
Current behavior
extractFrontmatter,parseFrontmatter,discoverLocalSkills) assume Unix line endings and forward-slash paths, causing failures on Windows.New behavior
skills/:useHelpCenterhook andPageLayoutpropsextractFrontmatterhandles\r\nline endingsparseFrontmattersplits on\r?\ninstead of\ndiscoverLocalSkillsstrips both/and\beforeSKILL.mdReferences
Reviewer focus
skills/fusion-help-api/,skills/fusion-help-docs/,skills/fusion-help-integration/npx -y skills add . --list;bun run validate:skillsandbun run validate:ownershippass on Windowsscripts/list-skills/andscripts/validate-skills/Self review checklist