fix: update Cursor install instructions to use native skills directory#32
Open
gonzoblasco wants to merge 2 commits into
Open
fix: update Cursor install instructions to use native skills directory#32gonzoblasco wants to merge 2 commits into
gonzoblasco wants to merge 2 commits into
Conversation
The previous instructions told users to copy the SKILL.md body into .cursor/rules/hallmark.mdc, which: - Strips the YAML frontmatter that Cursor's Agent Skills standard requires - Ignores the reference/ files that Hallmark depends on - Uses the .mdc rules format instead of the native skills directory Cursor supports the same Agent Skills standard as Claude Code. The correct install path is .cursor/skills/hallmark/ (project-scoped) or ~/.cursor/skills/hallmark/ (global), keeping the full folder structure. Closes Nutlope#22
|
@gonzoblasco is attempting to deploy a commit to the Together AI Team on Vercel. A member of the Team first needs to authorize it. |
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
Fixes #22 — the Cursor install instructions were misleading and sub-optimal.
Problem
The README told users to copy the body of
SKILL.mdinto.cursor/rules/hallmark.mdc, which:references/for anti-patterns, macrostructures, typography, etc. A single.mdcfile cannot include them.mdcis for Cursor Rules (simple instructions), not for multi-file skills with referencesFix
.cursor/rules/hallmark.mdcto.cursor/skills/hallmark/(project-scoped) or~/.cursor/skills/hallmark/(global)skills/hallmark/folder instead of individual filesVerification
Cursor docs confirm that
.cursor/skills/supports the same folder structure as Claude Code: a directory withSKILL.md+ optionalreferences/,scripts/, andassets/subdirectories.