Sign In

evolveguard-cli

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

evolveguard-cli - npm Package Compare versions

Comparing version
0.1.1
to
0.1.2
+6
-4
CHANGELOG.md
# Changelog
All notable changes to this project are documented in this file. This changelog
covers both distributions -- the npm package (`evolveguard`, JS/TS, not yet
published) and the PyPI package (`evolveguard`, Python, not yet published) -- since
they implement the same record/replay/diff pipeline; entries note which
distribution they apply to.
covers both distributions -- the npm package (`evolveguard-cli`, JS/TS, live)
and the PyPI package (`evolveguard-cli`, Python, live) -- since they implement
the same record/replay/diff pipeline; entries note which distribution they
apply to. Both were renamed 2026-07-19 from the old plain `evolveguard`
(entries below predating the rename refer to the package by its name at the
time; the old `evolveguard` name is now deprecated on both registries).

@@ -9,0 +11,0 @@ ## [Python 0.1.0] - 2026-07-17

{
"name": "evolveguard-cli",
"version": "0.1.1",
"version": "0.1.2",
"description": "Regression-testing CLI for self-edited Claude Agent Skills (SKILL.md, MEMORY.md) -- golden-transcript record/replay against a skill's own declared and inferred capability surface, zero hosted infrastructure.",

@@ -19,2 +19,5 @@ "keywords": [

"author": "Rudrendu Paul",
"contributors": [
"Sourav Nandy"
],
"repository": {

@@ -21,0 +24,0 @@ "type": "git",

+12
-12

@@ -17,12 +17,12 @@ # evolveguard

# npm -- JavaScript/TypeScript CLI + library
npm install -g evolveguard
npm install -g evolveguard-cli
```
> Both packages are live: `evolveguard-cli` on PyPI, `evolveguard` on npm (the npm
> package has not been renamed to match the `-cli` convention yet -- see
> [Status](#status) below). `npm install -g evolveguard` and
> Both packages are live and named consistently: `evolveguard-cli` on PyPI and
> `evolveguard-cli` on npm (renamed 2026-07-19 from the old plain `evolveguard`,
> which is now deprecated). `npm install -g evolveguard-cli` and
> `pip install evolveguard-cli` both work today; the demo GIFs below were recorded
> against the published packages, not a local build.
![Terminal recording: npm install -g evolveguard, then evolveguard --version and evolveguard --help, showing the published CLI's command list.](docs/demo.gif)
![Terminal recording: npm install -g evolveguard-cli, then evolveguard --version and evolveguard --help, showing the published CLI's command list.](docs/demo.gif)

@@ -319,3 +319,3 @@ ---

**Python** (`pip install evolveguard`):
**Python** (`pip install evolveguard-cli`):

@@ -378,7 +378,7 @@ ```python

`evolveguard-cli` instead.
- **npm (`evolveguard`, TypeScript)** -- live at
[npmjs.com/package/evolveguard](https://www.npmjs.com/package/evolveguard).
`npm install -g evolveguard` installs it directly. The npm package has not yet been
renamed to `evolveguard-cli` to match the PyPI package's naming convention; the
installable name is still `evolveguard` for now.
- **npm (`evolveguard-cli`, TypeScript)** -- live at
[npmjs.com/package/evolveguard-cli](https://www.npmjs.com/package/evolveguard-cli).
`npm install -g evolveguard-cli` installs it directly. Renamed 2026-07-19 from the
old plain `evolveguard`, which is now deprecated, to match the PyPI package's
naming convention.

@@ -420,3 +420,3 @@ ## FAQ

The npm package requires Node.js >=20.12 (any OS Node supports) and installs with
`npm install -g evolveguard`. The PyPI package requires Python >=3.9 and installs with
`npm install -g evolveguard-cli`. The PyPI package requires Python >=3.9 and installs with
`pip install evolveguard-cli`; both distributions are pure-library/CLI packages with no

@@ -423,0 +423,0 @@ native bindings, so there is no OS-specific build step on either side.