vibe-validate 0.9.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +68 -0
- package/package.json +46 -0
package/README.md
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
# vibe-validate
|
|
2
|
+
|
|
3
|
+
> Git-aware validation orchestration with 312x faster cached runs
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/vibe-validate)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
7
|
+
|
|
8
|
+
## Umbrella Package
|
|
9
|
+
|
|
10
|
+
This is a convenience package that installs the **vibe-validate CLI**.
|
|
11
|
+
|
|
12
|
+
When you install `vibe-validate`, you're actually installing `@vibe-validate/cli` and getting access to the `vibe-validate` command-line tool.
|
|
13
|
+
|
|
14
|
+
## Quick Install
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install -D vibe-validate
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
This installs:
|
|
21
|
+
- `@vibe-validate/cli` - The main CLI tool
|
|
22
|
+
- All its dependencies (`@vibe-validate/core`, `@vibe-validate/config`, etc.)
|
|
23
|
+
|
|
24
|
+
## Usage
|
|
25
|
+
|
|
26
|
+
After installation, use the `vibe-validate` command:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
# Initialize configuration
|
|
30
|
+
npx vibe-validate init
|
|
31
|
+
|
|
32
|
+
# Run validation
|
|
33
|
+
npx vibe-validate validate
|
|
34
|
+
|
|
35
|
+
# Check configuration diagnostics
|
|
36
|
+
npx vibe-validate doctor
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Full Documentation
|
|
40
|
+
|
|
41
|
+
For complete documentation, examples, and guides, visit:
|
|
42
|
+
|
|
43
|
+
**https://github.com/jdutton/vibe-validate**
|
|
44
|
+
|
|
45
|
+
## Packages
|
|
46
|
+
|
|
47
|
+
The vibe-validate ecosystem consists of:
|
|
48
|
+
|
|
49
|
+
- **vibe-validate** (this package) - Umbrella package for easy installation
|
|
50
|
+
- **[@vibe-validate/cli](https://www.npmjs.com/package/@vibe-validate/cli)** - Command-line interface
|
|
51
|
+
- **[@vibe-validate/core](https://www.npmjs.com/package/@vibe-validate/core)** - Validation orchestration engine
|
|
52
|
+
- **[@vibe-validate/config](https://www.npmjs.com/package/@vibe-validate/config)** - Configuration system
|
|
53
|
+
- **[@vibe-validate/formatters](https://www.npmjs.com/package/@vibe-validate/formatters)** - Error formatting
|
|
54
|
+
- **[@vibe-validate/git](https://www.npmjs.com/package/@vibe-validate/git)** - Git utilities
|
|
55
|
+
|
|
56
|
+
## Why vibe-validate?
|
|
57
|
+
|
|
58
|
+
Built for **agentic coding workflows** with AI assistants like [Claude Code](https://claude.ai/code):
|
|
59
|
+
|
|
60
|
+
- **312x faster cached validation** (288ms vs 90s when code unchanged)
|
|
61
|
+
- **Git tree hash caching** - Content-based, deterministic
|
|
62
|
+
- **Parallel execution** - Run checks simultaneously
|
|
63
|
+
- **Agent-optimized output** - Auto-detects Claude Code, Cursor, Aider, Continue
|
|
64
|
+
- **Branch sync enforcement** - Pre-commit hook ensures branches stay current
|
|
65
|
+
|
|
66
|
+
## License
|
|
67
|
+
|
|
68
|
+
MIT © Jeff Dutton
|
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "vibe-validate",
|
|
3
|
+
"version": "0.9.9",
|
|
4
|
+
"description": "Git-aware validation orchestration for vibe coding (LLM-assisted development) - umbrella package",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"validation",
|
|
8
|
+
"testing",
|
|
9
|
+
"ci-cd",
|
|
10
|
+
"git",
|
|
11
|
+
"caching",
|
|
12
|
+
"pre-commit",
|
|
13
|
+
"typescript",
|
|
14
|
+
"javascript",
|
|
15
|
+
"ai-agent-friendly",
|
|
16
|
+
"claude-code",
|
|
17
|
+
"cursor",
|
|
18
|
+
"aider",
|
|
19
|
+
"developer-experience",
|
|
20
|
+
"developer-tools",
|
|
21
|
+
"automation",
|
|
22
|
+
"workflow",
|
|
23
|
+
"llm",
|
|
24
|
+
"cli"
|
|
25
|
+
],
|
|
26
|
+
"author": "Jeff Dutton",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "git+https://github.com/jdutton/vibe-validate.git",
|
|
31
|
+
"directory": "packages/vibe-validate"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://github.com/jdutton/vibe-validate#readme",
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/jdutton/vibe-validate/issues"
|
|
36
|
+
},
|
|
37
|
+
"engines": {
|
|
38
|
+
"node": ">=20.0.0"
|
|
39
|
+
},
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"access": "public"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@vibe-validate/cli": "0.9.9"
|
|
45
|
+
}
|
|
46
|
+
}
|