fix(cli): document Cursor skills install path#645
Closed
miguel-heygen wants to merge 1 commit intomainfrom
Closed
Conversation
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
339f74c to
5c147da
Compare
Collaborator
|
@miguel-heygen I think still though that the main fix here is getting into the marketplace these are bandaids on how to install any skill no? |
Collaborator
Author
yeah, I wouldn't merge this |
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.
Problem
Fixes #644.
The README told Cursor users to install HyperFrames from the Cursor Marketplace or sideload
.cursor-plugin/plugin.jsonvia Settings -> Plugins -> Load unpacked. In Cursor 3.2.21, the reporter could not find a HyperFrames Marketplace plugin and the unpacked-manifest flow is not available, so the docs pointed users at a dead install path.What this fixes
npx hyperframes skills --cursorinside a project, ornpx skills add heygen-com/hyperframes --agent cursor --yesbefore project creation.hyperframes skills --cursorthrough to the upstreamskillsCLI as--agent cursor --yesinstead of ignoring the flag and using the broad--allinstall.Root cause
There were two separate drifts:
skillswrapper documented tool-specific flags, but the command ignored every flag and always spawnednpx skills add heygen-com/hyperframes --all.Verification
Local checks
bunx vitest run packages/cli/src/commands/skills.test.ts- 2/2 passed.bun run build:hyperframes-runtime- generated the missing fresh-worktree runtime artifacts.bun run --filter @hyperframes/cli typecheck- passed after runtime generation.bunx oxlint packages/cli/src/commands/skills.ts packages/cli/src/commands/skills.test.ts- 0 warnings / 0 errors.bunx oxfmt --check README.md docs/quickstart.mdx docs/packages/cli.mdx docs/guides/claude-design.mdx docs/guides/open-design.mdx packages/cli/src/commands/skills.ts packages/cli/src/commands/skills.test.ts- clean.git diff --check- clean./tmp/hf-cursor-cli-proof:bun /Users/miguel07code/.codex/worktrees/e605/hyperframes-oss/packages/cli/src/cli.ts skills --cursornpx skills ls -a cursor --jsonCursor, includinghyperframesandhyperframes-cli.curl https://cursor.com/install -fsS | bash.cursor-agent --versionreturned2026.05.05-84a231c.agent -p ...smoke was blocked by local auth:Authentication required. Please run 'agent login' first, or set CURSOR_API_KEY environment variable.Browser verification
npx mintlify dev --port 3333.agent-browserto openhttp://localhost:3333/quickstartand verified the rendered Cursor note text.agent-browserto openhttp://localhost:3333/packages/cli#skillsand verified the renderednpx hyperframes skills --cursor,.agents/skills/, Marketplace, and "Load unpacked" guidance.agent-browser errors --clearreturned no page errors./tmp/hf-cursor-docs-browser-proof/quickstart-cursor-note.png/tmp/hf-cursor-docs-browser-proof/cli-cursor-skills.png/tmp/hf-cursor-docs-browser-proof/cursor-docs-flow-complete.webmNotes
The checked-in
.cursor-plugin/plugin.jsonremains in place for packaging/submission work. This PR stops presenting it as the current user install surface until a HyperFrames Cursor Marketplace plugin actually exists.