docs: drop --full-depth from skills install commands - #3399
Merged
Conversation
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
Merged
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.
What
Removes
--full-depthfrom everynpx skills addcommand we document, and drops the prose that told readers to keep the flag.Files:
README.md,CLAUDE.md,AGENTS.md,docs/quickstart.mdx,docs/prompting/overview.mdx,docs/guides/skills.mdx,docs/guides/hyperframes-vs-remotion.mdx,docs/packages/cli.mdx.Why
Not every user's
skillsCLI supports--full-depth, so the documented command fails for them. A copy-pasteable install command that errors is worse than an install that is occasionally a few hours behindmain.How
Flag removed from the commands; bash comment columns re-aligned in
CLAUDE.mdandAGENTS.md. Where the docs explained why to keep the flag, the freshness note now points atnpx hyperframes skills update, which installs from the currentmain.The CLI itself is unchanged:
packages/cli/src/commands/skills.tsstill passes--full-depthto theskillsversion it spawns vianpx, sohyperframes skills updatekeeps its freshness guarantee.Test plan
Docs-only change, no runnable behavior.
grep -rn "full-depth"acrossREADME.md,CLAUDE.md,AGENTS.md, anddocs/returns nothing.Remaining
--full-depthreferences are confined topackages/cli/src/commands/skills.tsand its test, which are intentionally untouched.Unit tests added/updated
Manual testing performed
Documentation updated (if applicable)