Quick Start

Use this page when you want the shortest supported setup path. Keep two things separate:

  • Install decision: where should the Skill be installed for your agent environment?
  • Access preparation: which NoxInfluencer account and API key should the Skill use?

Public entry points

  • Skills dashboard / API key: https://www.noxinfluencer.com/skills/dashboard / https://cn.noxinfluencer.com/skills/dashboard
  • skills.sh listing: https://skills.sh/noxinfluencer/skills/noxinfluencer
  • ClawHub for OpenClaw: https://clawhub.ai/noxinfluencer/nox-influencer-marketing
  • GitHub fallback: https://github.com/NoxInfluencer/skills/tree/main

Before you run commands: prepare account access

If you do not have a brand account yet, sign up first:

  • English sign-up: https://www.noxinfluencer.com/signup?userType=brand&service=%2Fskills%2Fdashboard
  • Chinese sign-up: https://cn.noxinfluencer.com/signup?userType=brand&service=%2Fskills%2Fdashboard

Then open the Skills dashboard and get your API key:

  • English dashboard: https://www.noxinfluencer.com/skills/dashboard
  • Chinese dashboard: https://cn.noxinfluencer.com/skills/dashboard

For OpenClaw and other compatible environments, prefer host-managed secret injection or NOXINFLUENCER_API_KEY. If you configure the local CLI yourself, use noxinfluencer auth --key-stdin instead of placing the key in command arguments or logs.

Step 1: Have you installed Skills before?

  • If you have installed other Skills before, first search for Nox Influencer in the Skill store or install entry you already use
  • If this is your first install, or you are not sure which store or installer your agent uses, continue to Step 2

Step 2: Choose the install entry for your environment

Official OpenClaw

Start with ClawHub:

https://clawhub.ai/noxinfluencer/nox-influencer-marketing

If ClawHub is not practical because of network or access limits, use Skills CLI:

npx skills add https://github.com/NoxInfluencer/skills --skill noxinfluencer --agent openclaw

OpenClaw metadata expects NOXINFLUENCER_API_KEY and the noxinfluencer binary to be available.

Claude Code, OpenAI Codex, Cursor, or another Skills CLI environment

Start with the skills.sh listing or use Skills CLI directly. The listing is useful for browsing; the command is better when your agent can execute installation for you:

https://skills.sh/noxinfluencer/skills/noxinfluencer

npx skills add https://github.com/NoxInfluencer/skills --skill noxinfluencer

Environment-specific examples:

npx skills add https://github.com/NoxInfluencer/skills --skill noxinfluencer --agent claude-code
npx skills add https://github.com/NoxInfluencer/skills --skill noxinfluencer --agent codex
npx skills add https://github.com/NoxInfluencer/skills --skill noxinfluencer --agent cursor

For Claude Code, the plugin marketplace path is also supported:

claude plugin marketplace add https://github.com/NoxInfluencer/skills
claude plugin install nox-influencer@noxinfluencer

Hermes Skills Hub

Hermes can install through the skills.sh identifier:

hermes skills install skills-sh/noxinfluencer/skills/noxinfluencer

You can inspect the listing before installing:

hermes skills inspect skills-sh/noxinfluencer/skills/noxinfluencer

ChatGPT status

NoxInfluencer Skill does not support ChatGPT as a runtime.

The supported OpenAI path is OpenAI Codex. NoxInfluencer needs an execution environment that can install Skills, access local context, run the NoxInfluencer CLI, and pass API key configuration securely. ChatGPT does not expose that public Skill runtime path for this workflow. If you are already using OpenAI products and want this kind of agent workflow, use OpenAI Codex and follow the Skills CLI path above. Codex availability and limits are controlled by OpenAI and may change, so check OpenAI's current product guidance when access matters.

Step 3: Install or refresh the CLI

The current public documentation baseline is @noxinfluencer/cli 0.4.7 or newer. Install the latest CLI package:

npm install -g @noxinfluencer/cli@latest

Then verify the command tree:

noxinfluencer schema --all

The command tree must include:

  • campaign
  • collection
  • email
  • message
  • crm
  • product
  • brand-monitor
  • export
  • agent

Version output alone is not enough if your machine has stale local or global compiled files. If schema --all does not show the expected command groups after reinstalling the latest package, stop the affected workflow and treat it as a CLI package or command-tree mismatch.

Step 4: Let your agent continue

In most supported environments, you do not need to move files by hand, edit directories, or configure complex paths. Give your agent the store link or install command, then let it finish the setup and run the CLI checks.

Use GitHub only when your agent needs the repository address, or when the earlier install paths cannot complete:

https://github.com/NoxInfluencer/skills/tree/main

Step 5: Confirm a first successful run

A first run is successful when one of these works:

  • Creator discovery returns a usable shortlist
  • Creator analysis returns decision-ready signals
  • Video monitoring can be created, listed, or queried
  • A marketing ops read command such as campaign, collection, CRM, email, message, product, export, or brand-monitor returns the expected account-scoped data

If setup fails

  • Run noxinfluencer doctor first
  • Run noxinfluencer schema --all to confirm the installed command tree
  • Run noxinfluencer agent exit-codes when your agent or automation needs stable failure handling
  • If the network path is blocked, set HTTPS_PROXY and retry; add HTTP_PROXY only when the server URL is non-TLS
  • Review Error Codes and CLI Diagnostics for recovery paths

Common next steps