The agent is told to execute complete setup instructions extracted from a mutable webpage
Source references: 3The Skill extracts all code and configuration steps from an external quickstart and then directs the agent to execute them, including package installation and authentication-file changes. Although the stated URL is Clerk’s site, its content can change, and the Skill neither pins a version nor requires review of the resulting commands.
An incorrect update, compromised dependency, or instructions unsuitable for the project could install unwanted software or alter authentication boundaries, causing build failures or access-control errors.
The Skill actively requests “complete” instructions from a Clerk webpage and then directs the agent to execute them, including package installation, environment variables, and authentication middleware changes. The URL is official and the behavior fits the setup purpose, but the page is mutable and these lines require no pre-execution review. The user can restrict the agent to showing the source, commands, and diffs for approval first.
Use WebFetch to retrieve the official quickstart for the detected framework:```WebFetch: https://clerk.com/docs/{framework}/getting-started/quickstartPrompt: "Extract the complete setup instructions including all code snippets, file paths, and configuration steps."```Show 2 other places
Execute each step from the quickstart guide:- Install the required packages- Set up environment variables- Add the provider and proxy/middleware- Create sign-in/sign-up routes if needed- Test the integration### 3. Follow the InstructionsExecute each step from the quickstart guide:- Install the required packages- Set up environment variables- Add the provider and proxy/middleware- Create sign-in/sign-up routes if needed- Test the integration