Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

@flakiness/sdk

Package Overview
Dependencies
Maintainers
1
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@flakiness/sdk

Comprehensive SDK for creating and managing Flakiness JSON Reports in Node.js

Source
npmnpm
Version
2.0.0
Version published
Weekly downloads
1.5K
-2.31%
Maintainers
1
Weekly downloads
 
Created
Source

Flakiness Node.js SDK

The Flakiness SDK provides a comprehensive set of tools for creating and managing Flakiness JSON Reports in Node.js.

Installation

npm i @flakiness/sdk @flakiness/flakiness-report

Quick Start

Here's a minimal example of creating a Flakiness JSON Report:

import { FlakinessReport } from '@flakiness/flakiness-report';
import {
  GitWorktree,
  ReportUtils,
  writeReport,
  uploadReport,
  CIUtils 
} from '@flakiness/sdk';

// Initialize git worktree and environment
const worktree = GitWorktree.create(process.cwd());
const env = ReportUtils.createEnvironment({ name: 'CI' });

// Create a simple test report
const report: FlakinessReport.Report = {
  category: 'testreport',
  commitId: worktree.headCommitId(),
  url: CIUtils.runUrl(),
  environments: [env],
  suites: [{
    title: 'My Test Suite',
    type: 'describe',
    tests: [{
      title: 'My Test',
      location: { file: 'test.spec.ts', line: 10, column: 1 },
      attempts: [{
        environmentIdx: 0,
        status: 'passed',
        expectedStatus: 'passed',
        duration: 100 as FlakinessReport.DurationMS,
      }],
    }],
  }],
  startTimestamp: Date.now() as FlakinessReport.UnixTimestampMS,
  duration: 100 as FlakinessReport.DurationMS,
};

// Write report to disk or upload to Flakiness.io
await writeReport(report, [], './flakiness-report');
// Or: await uploadReport(report, [], { flakinessAccessToken: 'your-token' });

Entry Points

The SDK provides two entry points:

@flakiness/sdk

The main entry point for Node.js environments. Provides full access to all SDK functionality including:

  • Git repository utilities
  • File system operations
  • System resource monitoring
  • Report upload/download
  • Local report viewing

@flakiness/sdk/browser

A browser-compatible entry point with a subset of utilities that work in browser environments. Exports:

  • ReportUtils - Browser-safe utilities (normalizeReport, stripAnsi, visitTests)

Use this entry point when you need to process or manipulate reports in browser-based tools or web applications.

Top-Level Exports

Building Reports

  • CIUtils - Utilities to extract CI/CD information (run URLs, environment detection)
  • GitWorktree - Git repository utilities for path conversion and commit information
  • ReportUtils - Namespace with utilities for report creation and manipulation:
    • createEnvironment() - Create environment objects with system information
    • normalizeReport() - Deduplicate environments, suites, and tests
    • collectSources() - Extract source code snippets for locations in the report
    • stripAnsi() - Remove ANSI escape codes from strings
    • visitTests() - Recursively visit all tests in a report
    • createFileAttachment() / createDataAttachment() - Create report attachments
  • CPUUtilization - Track CPU utilization over time via periodic sampling
  • RAMUtilization - Track RAM utilization over time via periodic sampling

Working with Reports

  • readReport() - Read a Flakiness report and its attachments from disk
  • showReport() - Start a local server and open the report in your browser
  • uploadReport() - Upload reports and attachments to Flakiness.io
  • writeReport() - Write reports to disk in the standard Flakiness report format

Uploading Reports

uploadReport() authenticates using one of the following methods (in order of priority):

  • Access token — pass flakinessAccessToken option or set the FLAKINESS_ACCESS_TOKEN environment variable.

  • GitHub Actions OIDC — when running inside GitHub Actions, uploadReport can authenticate automatically without an access token. This works when both conditions are met:

    • The report has flakinessProject set to a flakiness project identifier (e.g. "org/proj").
    • The flakiness project is bound to the GitHub repository that runs the action.

    Your GitHub Actions workflow must grant the id-token: write permission:

    permissions:
      id-token: write
    
    const report: FlakinessReport.Report = {
      flakinessProject: 'my-org/my-project',
      // ... rest of the report
    };
    // No access token needed — OIDC authentication is used automatically.
    await uploadReport(report, attachments);
    

If neither method is available, the upload is skipped with a 'skipped' status.

FAQs

Package last updated on 24 Feb 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