Stabilize skill loader test isolation#1161
Open
stamsam wants to merge 1 commit into
Open
Conversation
jatmn
requested changes
May 15, 2026
Collaborator
jatmn
left a comment
There was a problem hiding this comment.
Findings
- [P2] Keep the isolated skill filter type-safe
src/skills/loadSkillsDir.test.ts:37
The new predicate dereferences optionalskillRoot, and the combined predicate no longer leavespromptSkillsnarrowed to prompt commands for the laterskillRootassertions.bun x tsc --noEmit --pretty falsenow reports errors in this touched test file forskill.skillRootpossibly being undefined and forskillRootnot existing on non-prompt commands. Please guardskillRootand keep the filtered array narrowed to prompt commands, for example with an explicit type predicate plus optional chaining.
Collaborator
Blockers
Non-Blocking
Looks Good
Verdict: Changes Requested — type safety issue needs to be fixed. |
Collaborator
|
Confirmed @jatmn's point. The new isolated-skill predicate dereferences optional |
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
loadSkillsDir.test.tsto the temp fixture skills root.Validation
bun test src/skills/loadSkillsDir.test.tsNotes
This is a tiny test-only cleanup from a fork. No runtime behavior changes.