Verify Installation

Published

After installation, detect available runtimes and run the entry test to confirm everything works.

bash
  1. 1
  2. 2
  3. 3

# Check in priority order (Python > Node.js > Shell)

python --version # Requires >= 3.6, needs requests library

node --version # Requires >= 12, no external dependencies

bash
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11

# Python

python <skill_dir>/scripts/anysearch_cli.py doc

# Node.js

node <skill_dir>/scripts/anysearch_cli.js doc

# PowerShell (Windows)

powershell -ExecutionPolicy Bypass -File <skill_dir>/scripts/anysearch_cli.ps1 doc

# Bash (Linux/macOS)

bash <skill_dir>/scripts/anysearch_cli.sh doc

bash
  1. 1

python <skill_dir>/scripts/anysearch_cli.py search "hello world" --max_results 1

Tip: A successful JSON response from the entry test confirms the installation is working. Replace <skill_dir> with the actual path to your skill directory.