Skip to main content
The Skills CLI collects anonymous usage data to help improve the tool. No personal information or skill contents are collected.
Telemetry is automatically disabled in CI environments and can be disabled manually via environment variables.

What Data is Collected

The CLI tracks these events:
Tracked when skills are installed via skills add
Tracked when skills are removed via skills remove
Tracked when checking for updates via skills check
Tracked when updating skills via skills update
Tracked when searching for skills via skills find
Tracked when syncing skills from node_modules via skills experimental_sync

What is NOT Collected

The following data is never collected:
  • Personal information (name, email, IP address)
  • Skill file contents
  • Local file paths (only skill names and counts)
  • Repository contents
  • Authentication tokens
  • Environment variables (except telemetry opt-out flags)

How Telemetry Works

Implementation

Telemetry is implemented in src/telemetry.ts:
1

Check if enabled

Verify telemetry is not disabled via environment variables or CI detection
2

Build request

Construct a URL with event data as query parameters
3

Fire and forget

Send a GET request to the telemetry endpoint (non-blocking, errors silently ignored)

Endpoint

Request Format

Telemetry is sent as URL query parameters:

Automatic CI Detection

Telemetry is automatically disabled when running in CI environments.

Detected CI Platforms

The CLI checks for these environment variables:

CI

CI=true

GitHub Actions

GITHUB_ACTIONS=true

GitLab CI

GITLAB_CI=true

CircleCI

CIRCLECI=true

Travis CI

TRAVIS=true

Buildkite

BUILDKITE=true

Jenkins

JENKINS_URL set

TeamCity

TEAMCITY_VERSION set

CI Flag

When running in CI, events include ci=1 in the telemetry data (if telemetry is manually enabled).

Disabling Telemetry

You can disable telemetry in two ways:

Option 1: DISABLE_TELEMETRY

Option 2: DO_NOT_TRACK

Both environment variables have the same effect. Use whichever you prefer or is already set by other tools.

Security Audit Telemetry

In addition to usage telemetry, the CLI fetches security audit data from a separate API when installing skills.

Audit API

Request Format

Response Format

Risk Levels

Safe

No security concerns detected

Low

Minor concerns, generally safe

Medium

Some concerns, review recommended

High

Significant concerns, caution advised

Critical

Severe concerns, installation not recommended

Unknown

No audit data available

Timeout

Audit requests timeout after 3 seconds to avoid blocking installations. If the API doesn’t respond in time, the installation proceeds without audit data.
Audit data is informational only and never blocks installations. You can always install skills regardless of risk level.

Source Code Reference

The telemetry implementation is in src/telemetry.ts:

API Reference

function
Track a telemetry event
function
Fetch security audit data for skills
function
Set CLI version for telemetry tracking

Privacy Commitment

The Skills CLI is committed to user privacy:

Open Source

All telemetry code is open source and auditable on GitHub

No PII

No personally identifiable information is ever collected

Opt-Out

Easy to disable via environment variables

Non-Blocking

Telemetry failures never affect CLI functionality

Environment Variables

See all environment variables, including telemetry controls

Update System

Learn how update checks send telemetry data