🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@amplitude/developer-cli

Package Overview
Dependencies
Maintainers
6
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@amplitude/developer-cli

amp CLI and developer artifacts for managing Amplitude platform primitives via the Developer API

beta
latest
Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
7
133.33%
Maintainers
6
Weekly downloads
 
Created
Source

@amplitude/developer-cli

CLI and developer artifacts for the Amplitude Developer API.

amp manages Amplitude first-class platform primitives (projects, taxonomy, and feature flags) via the Developer API. Related CLIs:

  • ampli — instrumentation and typed SDK codegen
  • amplitude-wizard — onboarding and setup

Design tenets

These guide every change to the CLI (see AGENTS.md for the full version):

  • Obvious by default. The best surface needs no explanation — discoverable help, consistent verbs, safe defaults, and errors that tell you what to do next.
  • Code is marketing. This source is public; it is organized for clarity, with small single-purpose modules, familiar naming, and schema-validated inputs.
  • Test the seams that matter. Pure logic is unit tested and the safety-critical paths (auth precedence, destructive-action confirmation, credential permissions) are covered explicitly.
  • Two readers: humans and agents. Interactive output maximizes visibility and readability (tables, summaries); piped output is compact and lossless (minimal characters) so agents don't pay tokens for decoration.

Install

npm install -g @amplitude/developer-cli
amp help

Or run without installing:

npx @amplitude/developer-cli help

Authentication

Run amp auth login to authenticate via the OAuth device flow. Creating a profile is force-explicit — name it and pick its environment:

amp auth login --profile prod --env prod        # device flow → save + activate
amp auth status                                  # active credential, type, expiry
amp context

Profiles bind a credential to an environment (its base_url), so a staging token can never be sent to prod. Add more and switch between them:

amp auth login --profile staging --env staging   # activates staging
amp auth use prod                                 # switch back (no re-auth)
amp auth list                                     # * marks the active profile
amp logout --profile staging                      # remove one
amp logout --all                                   # remove every profile

A bare amp auth login re-authenticates the active profile in place. Profiles are saved to ~/.amplitude/amp/credentials.json (0600).

Prefer a Personal Access Token? amp auth pat --with-token --profile <name> --env <env> reads a PAT from stdin (or a masked prompt at a terminal) and saves it as a profile — same force-explicit create rule, same store, just a different credential type. --with-token is required.

echo "$PAT" | amp auth pat --with-token --profile ci --env prod

For CI or a one-off shell, set a raw token — it overrides stored profiles:

export AMP_TOKEN=amp_...        # amp_… is treated as a PAT, anything else a bearer

AMP_PROFILE selects a stored profile by name; amp auth token prints the active access token to stdout (TOKEN=$(amp auth token)).

Base URL

Defaults to production:

https://developer-api.amplitude.com

Override for staging or a local server:

export AMP_API_BASE_URL=http://localhost:3036
# or
amp --base-url http://localhost:3036 context

Examples

amp context
amp projects list
amp events list --project <project_id> --limit 5
amp events create --project <project_id> --event-type my_event --display-name "My Event"
amp flags list --project <project_id> --limit 5
amp flags create --project <project_id> --key my-flag --name "My Flag"
amp flags get --project <project_id> --flag <flag_id>
amp flags archive --project <project_id> --flag <flag_id> --dry-run

Smoke test

With a credential available (amp auth login, or AMP_TOKEN set):

pnpm smoke

See docs/cli.md for the full smoke checklist and PAT scope notes.

Keywords

amplitude

FAQs

Package last updated on 26 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts