Verify Installation
Published
After installation, detect available runtimes and run the entry test to confirm everything works.
bash
- 1
- 2
- 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
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 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
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.