feat: add auth0-cli skill for CLI resource management#27
Open
cristiandouce wants to merge 2 commits intoauth0:mainfrom
Open
feat: add auth0-cli skill for CLI resource management#27cristiandouce wants to merge 2 commits intoauth0:mainfrom
cristiandouce wants to merge 2 commits intoauth0:mainfrom
Conversation
4 tasks
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
Adds a new
auth0-cliskill to the core auth0 plugin, providing comprehensive guidance for managing Auth0 resources via the CLI. This skill helps AI agents generate correctauth0CLI commands instead of hallucinating non-existent flags and subcommands.What's included
New skill:
auth0-cliCross-references across all existing skills
Added
auth0-clias a related skill in all 11 existing skills so agents can discover it when working on any Auth0 integration:auth0-quickstart,auth0-migration,auth0-mfaauth0-react,auth0-nextjs,auth0-vue,auth0-angular,auth0-express,auth0-fastify,auth0-fastify-api,auth0-react-nativePlugin and marketplace updates
plugin.jsondescription to mention CLI managementmarketplace.jsondescription and keywords to includecliREADME.mdwith the new skill in listings and project structureWhy this matters
Without this skill, AI agents frequently hallucinate incorrect CLI commands — using non-existent flags like
auth0 logs list --followinstead of the correctauth0 logs tail, or suggesting environment variables are auto-detected for authentication instead of the actualauth0 login --client-id --client-secret --domaincommand. During evaluation, the skill improved assertion pass rates from 61% to 100% across test scenarios covering SPA creation, auth debugging, and CI/CD automation.