-
Notifications
You must be signed in to change notification settings - Fork 3
refactor(skills): unify cursor rules and claude skills #180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -1,6 +1,8 @@ | ||||
| --- | ||||
| name: orama-integration | ||||
| description: Orama API integration reference for StackOne | ||||
| description: Use when integrating with Orama. Links to official docs for search, indexing, answer engine. (project) | ||||
| globs: "" | ||||
|
||||
| globs: "" |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,6 +1,8 @@ | ||||||
| --- | ||||||
| name: typescript-testing | ||||||
| description: Vitest test runner and MSW-based testing patterns for StackOne SDK | ||||||
| description: Use when writing or running tests. Covers Vitest commands, MSW HTTP mocking, fs-fixture for file system tests. (project) | ||||||
| globs: "*.spec.ts" | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P2: Glob pattern Prompt for AI agents
Suggested change
|
||||||
| alwaysApply: false | ||||||
| --- | ||||||
|
|
||||||
| # TypeScript Testing with Vitest and MSW | ||||||
|
|
||||||
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ../../.claude/skills/development-workflow/SKILL.md |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
globsfield is set to an empty string, but for Cursor compatibility, it should either specify file patterns or be omitted. Since this skill is about development workflow (commands, testing, linting, git), consider usingglobs: "**/*"to apply to all files, or just remove the field entirely ifalwaysApply: trueis sufficient.