🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis
Socket
Book a DemoInstallSign in
Socket

@alwaysmeticulous/cli

Package Overview
Dependencies
Maintainers
3
Versions
431
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alwaysmeticulous/cli

The Meticulous CLI

latest
Source
npmnpm
Version
2.248.5
Version published
Weekly downloads
7.5K
44.91%
Maintainers
3
Weekly downloads
 
Created
Source

Meticulous CLI

npm version npm downloads License: ISC Node.js Version

The official command-line interface for Meticulous - automated end-to-end testing that eliminates test maintenance. See the documentation for more details.

What is Meticulous?

Meticulous automatically creates and maintains a comprehensive test suite for your web application by recording real user interactions. When you open a pull request, Meticulous replays these user sessions against both the old and new versions of your app, identifying visual and functional differences.

Key Benefits:

  • Zero maintenance tests that evolve with your app
  • Scale to thousands of tests without writing code
  • Catch regressions before they reach production
  • Test real user flows, not assumptions

Installation

npm install --save-dev @alwaysmeticulous/cli

Quick Start

Sessions are recordings of user interactions with your application that Meticulous can replay to test for regressions.

1. Record a Session

Record a new session by interacting with your application:

npx @alwaysmeticulous/cli record \
  --apiToken="<API_TOKEN>" \
  --appUrl="http://localhost:3000"

Note: --apiToken is only required if the token is not stored in ~/.meticulous/config.json.

2. Simulate a Session

Simulate a recorded session on your local environment:

npx @alwaysmeticulous/cli simulate \
  --apiToken="<API_TOKEN>" \
  --sessionId="<SESSION_ID>" \
  --appUrl="http://localhost:3000"

3. Run in CI

Add Meticulous to your CI pipeline to automatically test every pull request. See the documentation for detailed CI setup instructions.

CLI Commands

Run npx @alwaysmeticulous/cli --help to see all available commands.

Common commands:

  • record - Record a new session
  • simulate - Simulate a recorded session locally
  • run-all-tests - Run all replay test cases
  • Additional commands available via --help

Configuration

The CLI can be configured using command-line flags or environment variables:

  • --apiToken / METICULOUS_API_TOKEN - Your Meticulous API token
  • --appUrl / METICULOUS_APP_URL - URL where your app is running
  • --sessionId - Specific session ID to replay (for simulate command)

Documentation

Requirements

  • Node.js >= 12

Support

FAQs

Package last updated on 20 Nov 2025

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