
Security News
Frontier AI Is Now Critical Infrastructure
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.
@postman-cse/automation-telemetry-core
Advanced tools
Shared anonymous usage telemetry for postman-actions: CI context, repo context, and the fire-and-forget event client.
Shared anonymous usage telemetry for the postman-actions suite. One source of
truth for CI-system detection, repo/SCM detection, and the fire-and-forget event
client; each action depends on this package and esbuild inlines it into the
action's self-contained dist/.
A single completion event per action run, after team_id resolves. Payload is
account/CI-level only — no secrets, no spec content, no repo or org names in
clear, no personal data:
| Field | Notes |
|---|---|
schema_version | wire contract version (currently 2) |
action, action_version, outcome, ts | which action ran and how it finished |
team_id | Postman team id, sent clear (legitimate-interest basis) |
ci_provider | detected CI system (11 named + other/unknown) |
git_provider | github / gitlab / bitbucket / azure-devops / unknown |
runner_kind | hosted / self-hosted / unknown (where contractually known) |
run_id | CI run identifier |
repo_id | sha256(repo slug or url) — hashed, never clear |
org_id | sha256(owner) — hashed VCS org/group/workspace |
account_type | service / user / unknown (from session consumerType) |
event_trigger | push / pull_request / schedule / manual / other / unknown (what kicked off the run) |
runner_os | linux / macos / windows / unknown |
ref_kind | default-branch / branch / tag / unknown — coarsened; the raw branch/tag name is never sent |
import { createTelemetryContext } from '@postman-cse/automation-telemetry-core';
const telemetry = createTelemetryContext({ action: 'postman-bootstrap-action' });
telemetry.setTeamId(teamId);
telemetry.setAccountType(sessionIdentity?.consumerType); // service/user/unknown
telemetry.emitCompletion('success');
action_version resolves from the consuming action's esbuild
--define:__ACTION_VERSION__ automatically (override via the actionVersion
option). Opt out with POSTMAN_ACTIONS_TELEMETRY=off or DO_NOT_TRACK=1.
Corporate proxies are honored via HTTPS_PROXY/HTTP_PROXY/NO_PROXY.
npm test # vitest
npm run typecheck
npm run lint
npm run build # tsc -> dist (JS + .d.ts)
FAQs
Shared anonymous usage telemetry for postman-actions: CI context, repo context, and the fire-and-forget event client.
We found that @postman-cse/automation-telemetry-core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
The Fable shutdown shows how quickly model access can become a business continuity risk for AI-dependent engineering teams.

Security News
AI agents are pulling packages into environments no scanner is watching, creating exposure before security teams can see it.

Security News
GitHub Actions checkout now blocks risky pull_request_target checkouts by default to help prevent pwn request supply chain attacks.