chore: reference unified auth0 skill in quickstarts#1498
Draft
frederikprijck wants to merge 1 commit into
Draft
Conversation
The agent-skills re-architecture (auth0/agent-skills#137) consolidates all per-SDK skills into a single auth0 skill (plugin bumped to v2.0.0). Old per-SDK skill names (auth0-react, auth0-angular, etc.) no longer resolve. Update all 30 quickstarts so no individual skill name is referenced. Every `npx skills add ... --skill <name>` install command becomes: npx skills add auth0/agent-skills --skill auth0 --skill auth0 keeps the install non-interactive (omitting --skill triggers an interactive selection prompt), and resolves cleanly to the single skill named auth0. Also normalizes the three files that used the full github.com/auth0/agent-skills source to the short form.
8588e6d to
ce0f1b0
Compare
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
The agent-skills re-architecture (auth0/agent-skills#137) consolidates all per-SDK skills into a single
auth0skill (plugin bumped to v2.0.0). Old per-SDK skill names (auth0-react,auth0-angular,auth0-mfa, etc.) no longer resolve.This updates all quickstarts so they never reference individual skill names. Every
npx skills add ... --skill <name>install command becomes:Why
--skill auth0(and not a barenpx skills add auth0/agent-skills)Per the skills CLI docs, omitting
--skilltriggers an interactive selection prompt, which breaks the copy-paste / agent-run flow in a quickstart.--skill auth0installs non-interactively and resolves cleanly to the single skill namedauth0.Changes
spa/,webapp/,backend/, andnative/.--skillreferences (auth0-quickstart,auth0-react,go-jwt-middleware,auth0-net-android/auth0-net-ios,auth0-wpf/auth0-winforms, etc.).https://github.com/auth0/agent-skillssource (nuxt,express,react-native) to the shortauth0/agent-skillsform, so all 30 are consistent.webapp/nextjs.mdx,webapp/laravel/interactive.mdx).Not touched
agent-skills.mdxhub page — only references theauth0plugin and whole-repo installs, no individual skills.@auth0/auth0-react), which are SDK packages, not skills.