@cremini/skillpack-cli
v0.1.1
Published
Standalone CLI for Skillpack account and workspace operations
Readme
Skillpack CLI
Command line tool for Skillpack login and Amazon data queries.
Install
Install globally:
npm i -g @cremini/skillpack-cliAfter global installation, you can use skillpack-cli commands directly.
Or run without global install:
npx @cremini/skillpack-cli --helpLogin
Start device authorization:
skillpack-cli loginUse a custom API server:
skillpack-cli loginAfter login, API key is saved to:
~/.skillpack/cli-config.jsonAmazon Commands
Search products by keyword:
skillpack-cli amazon search --query "wireless earbuds" --page 1Get product detail by ASIN:
skillpack-cli amazon product B0CHX3R8VSGet search volume by keyword list:
skillpack-cli amazon search-volume \
--keywords "wireless earbuds,gaming headset" \
--location-code 2840 \
--language-code enYou can also use:
skillpack-cli amazon search volume --keywords "wireless earbuds,gaming headset" --location-name "United States" --language-name "English"Notes:
--keywordsaccepts comma-separated values.- Search volume requires one of
--location-codeor--location-name. - Search volume requires one of
--language-codeor--language-name.
Common Issues
Not logged in. Run skillpack-cli login first.:
- Run
skillpack-cli loginfirst.
Request failed (401/403):
- Your API key may be invalid or expired. Run login again.
