@noxinfluencer/cli
v0.3.5
Published
NoxInfluencer CLI — agent-friendly creator discovery, analysis & monitoring
Maintainers
Readme
@noxinfluencer/cli
NoxInfluencer CLI for creator discovery, creator analysis, outreach contact lookup, skill quota inspection, and membership plan lookup.
Install
Global install:
npm install -g @noxinfluencer/cliOne-off execution:
npx @noxinfluencer/cli --helpAfter installation, the executable command is:
noxinfluencerRequirements
- Node.js 18+
- Access to a compatible KOL Claw server
- A valid API key
Quick Start
Configure your API key:
noxinfluencer auth --key YOUR_KEYUse the Chinese site for onboarding URLs and hints when needed:
noxinfluencer --lang zh auth --key YOUR_KEYCheck quota:
noxinfluencer quotaCheck pricing:
noxinfluencer pricingSearch creators:
noxinfluencer creator search --platform youtube --keywords [beauty,skincare] --page_size 3API-backed skill calls can consume both:
- the account's remaining Skill quota
- the underlying SaaS-side capability quota / entitlement for the requested operation
Core Commands
auth- save API keyquota- show the current Skill quota snapshotpricing- show public membership plans and quota notescreator search- search creators on YouTube, TikTok, or Instagramcreator profile/creator profile --detailcreator audience/creator audience --detailcreator cooperation/creator cooperation --detailcreator content/creator content --detailcreator contacts
Run help for the full command list:
noxinfluencer --helpGlobal Options
--lang <code>- choose user-facing URLs and hints (zhusescn.noxinfluencer.com, others usewww.noxinfluencer.com)--json/--plain- switch output format--trace-json- emit structured request traces to stderr--dry-run- preview the request without executing it
Proxy Support
The CLI reads standard proxy environment variables and passes them to fetch directly. NODE_USE_ENV_PROXY=1 is not required.
export HTTPS_PROXY=http://127.0.0.1:10808
export HTTP_PROXY=http://127.0.0.1:10808
export NO_PROXY=127.0.0.1,localhostNotes:
HTTPS_PROXYis used for online Skill API requestsHTTP_PROXYis used for local or non-TLS server URLsALL_PROXYis only used as a fallback when it is anhttp://orhttps://proxy URLsocks5://inALL_PROXYis not supported by the current CLI transport
Publish Checklist
Before publishing:
npm run pack:checkFor the first public release of this scoped package:
npm login
npm publish --access public