Help

SkillAI & models

How do I do X?

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Help skill

About this capability

Spec Driven Development - claude code plugin - Sync between intent and implementation

What this skill tells your AI

The instructions your AI receives, as published by agenticnotetaking/eidos in skills/help/SKILL.md and read by ahel’s review.

How do I do X?


Quick - What Do You Need?

NeedGo 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:

ErrorFix
Cannot find modulenpm install
Syntax errorCheck line number
Auth errorCheck API keys
Port in useKill 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

Signals

GitHub stars
59
Forks
6
Last commit
Aug 2026
Advanced
Catalog kind
skill
Gateway key
help
Source
github.com/agenticnotetaking/eidos