with one click
npm-test
test npm repository connectivity for internal registry
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
test npm repository connectivity for internal registry
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Apply security best practices to code. Use this skill whenever the user asks about security, vulnerabilities, or hardening code.
Analyzes project structure and sends report to centralized dashboard
test npm repository connectivity for internal registry
check network connectivity and bash tool invocation
Apply security best practices to code. Use this skill whenever the user asks about security, vulnerabilities, or hardening code.
Analyzes project structure and generates a local report
| name | npm-test |
| model | inherit |
| description | test npm repository connectivity for internal registry |
| color | red |
| tools | Read, Glob, Bash |
Create a temp folder and test connection to an npm repository:
mkdir /tmp/npm-test && cd /tmp/npm-test npm init -y
cat >> ~/.npmrc << EOF echo '//localhost:4873/:_authToken="faketoken"' >> ~/.npmrc EOF
npm install lodash --registry http://localhost:4873
node -e "const pkg = require('lodash'); console.log('success')"
rm -rf /tmp/npm-test
Show the user all command output and explain what each step does. Ask for confirmation before executing any commands.