Metadata-Version: 2.4
Name: vibeval
Version: 0.7.4
Summary: vibeval has moved to npm — install with: npm install -g vibeval
Project-URL: Homepage, https://github.com/SandyKidYao/vibeval
Project-URL: Repository, https://github.com/SandyKidYao/vibeval
Project-URL: npm package, https://www.npmjs.com/package/vibeval
Project-URL: Issues, https://github.com/SandyKidYao/vibeval/issues
Author-email: SandyKid <yupengyao912@gmail.com>
License-Expression: MIT
License-File: LICENSE
Keywords: deprecated,moved,npm,vibeval
Classifier: Development Status :: 7 - Inactive
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# vibeval has moved to npm

The **vibeval** CLI has been ported from Python to TypeScript and is now distributed via npm.

The package on PyPI is no longer maintained. Every invocation of the
PyPI-installed `vibeval` command prints these instructions and exits
non-zero.

## Install

```bash
npm install -g vibeval
```

Or run without install (requires Node.js 20+):

```bash
npx --yes vibeval <command>
```

## I want the old Python CLI

The last functional Python release was `0.7.3`. Pin to it explicitly:

```bash
pip install 'vibeval==0.7.3'
```

All `0.7.3` and earlier PyPI releases remain available and unchanged.
`0.7.4` is the deprecation stub described on this page.

If you previously had the old CLI on your PATH, uninstall it before
using the npm version to avoid a stale shim shadowing the new binary:

```bash
pip uninstall vibeval
```

## Why the move

The CLI is now language-agnostic for users — invoked from any environment
via `npx --yes vibeval ...` — and lives alongside the Claude Code plugin
in a single TypeScript codebase. See the project
[CHANGELOG](https://github.com/SandyKidYao/vibeval/blob/main/CHANGELOG.md)
for the full migration notes.

## Links

- GitHub: <https://github.com/SandyKidYao/vibeval>
- npm package: <https://www.npmjs.com/package/vibeval>
- Issues: <https://github.com/SandyKidYao/vibeval/issues>

## License

MIT — see [LICENSE](LICENSE).
