@foxcite/cli
v1.0.2
Published
Foxcite AEO CLI tool
Readme
Foxcite CLI
The official Command Line Interface for Foxcite. Manage your workspaces, trigger manual AEO audits, and measure your ai search visibility and LLM citation gaps directly from your terminal.
Installation
Install the CLI globally using npm:
npm install -g @foxcite/cliAuthentication
Before using the CLI, you need to link it to your Foxcite account using an API Key generated from your Dashboard.
foxcite loginYou will be prompted to paste your API Key.
Common Commands
Manage Brands
List all the brands currently tracked in your workspace:
foxcite brands listRun Audits
Trigger a quick AI visibility audit across ChatGPT, Claude, Gemini, Grok, and Perplexity:
foxcite audits run --domain "example.com" --query "best analytics tools"Tracked Queries
View the historical AI visibility performance for a specific brand:
foxcite queries view <brand-id>Advanced Usage & Dev Notes
The CLI is built using Commander.js and leverages the @foxcite/sdk under the hood. All API interactions are strictly typed.
If you are running the CLI in a CI/CD environment (like GitHub Actions), you can bypass the foxcite login prompt by setting the environment variable directly:
export FOXCITE_API_KEY="seomd_live_..."
foxcite audits run --domain "example.com" --query "best tools"Contributing
- Clone the repository: https://github.com/foxciteai/cli
- Install dependencies:
npm install - Run the development build:
npm run dev -- <command>
