AgentStack
SKILL verified MIT Self-run

Help

skill-dhaupin-vant-vant-skill-help · by dhaupin

How do I do X?

No reviews yet
0 installs
15 views
0.0% view→install

Install

$ agentstack add skill-dhaupin-vant-vant-skill-help

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Help? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Help

> How do I do X?


Quick - What Do You Need?

| Need | Go To | |------|-------| | Run something | # Run | | Understand code | # Read | | Fix something | # Debug | | Check something | # Verify | | Build something | # Build | | Find something | # Search |


Run

I want to run this project

# Check package.json for scripts
cat package.json | grep -A20 '"scripts"'

# Common commands
npm install
npm run dev
npm test
npm run build
npm start

I want to add a script

# Edit scripts in package.json
nano package.json

Read

I want to understand this code

  1. Find entry point:
# CLI: main file
head -20 bin/*

# Library: main export
grep "^module.exports" lib/*.js | head -10
  1. Trace what happens:
  • Read top to bottom
  • Functions call functions
  • Find where data comes from/goes to
  1. Check dependencies:
# What does it use?
grep -h "^const\|^import" *.js | sort -u

Debug

It's not working

  1. Check error message - Read what it says
  2. Find the error - grep for it
  3. Check recent changes - git diff
  4. Check env - variables set?
  5. Run with debug - NODE_DEBUG=* node app.js

Common fixes:

| Error | Fix | |-------|-----| | Cannot find module | npm install | | Syntax error | Check line number | | Auth error | Check API keys | | Port in use | Kill process: lsof -i :port |


Verify

Check if something works

# Test the thing
npm test

# Check output
node file.js

# Verify version
node -v
npm -v

Build

I want to build/deploy

  1. Check build command:
grep build package.json
  1. Common builds:
npm run build      # Frontend
npm run package  # Backend
  1. Deploy:
npm publish      # npm
git push        # deploy

Search

Find something in code

# Find string
grep -r "string" .

# Find function
grep -r "function name" .

# Find file
find . -name "*.js"

Output

When asking for help, include:

  1. What you're trying to do
  2. What you tried
  3. What happened
  4. Environment (node -v, npm -v)

Role: Helper Input: What you need Output: How to do it

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.