vibe-validate 0.17.4 → 0.17.5
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/bin/vibe-validate
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Thin wrapper that delegates to @vibe-validate/cli
|
|
4
4
|
* This ensures single source of truth for all wrapper logic.
|
|
5
5
|
*/
|
|
6
|
-
import { fileURLToPath } from 'url';
|
|
6
|
+
import { fileURLToPath, pathToFileURL } from 'url';
|
|
7
7
|
import { dirname, join } from 'path';
|
|
8
8
|
|
|
9
9
|
const __filename = fileURLToPath(import.meta.url);
|
|
@@ -15,4 +15,5 @@ const __dirname = dirname(__filename);
|
|
|
15
15
|
const cliWrapperPath = join(__dirname, '../node_modules/@vibe-validate/cli/dist/bin/vibe-validate.js');
|
|
16
16
|
|
|
17
17
|
// Import and execute the CLI wrapper
|
|
18
|
-
|
|
18
|
+
// Use pathToFileURL for Windows compatibility (import() requires file:// URLs)
|
|
19
|
+
await import(pathToFileURL(cliWrapperPath).href);
|
package/bin/vv
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Thin wrapper that delegates to @vibe-validate/cli
|
|
4
4
|
* This ensures single source of truth for all wrapper logic.
|
|
5
5
|
*/
|
|
6
|
-
import { fileURLToPath } from 'url';
|
|
6
|
+
import { fileURLToPath, pathToFileURL } from 'url';
|
|
7
7
|
import { dirname, join } from 'path';
|
|
8
8
|
|
|
9
9
|
const __filename = fileURLToPath(import.meta.url);
|
|
@@ -15,4 +15,5 @@ const __dirname = dirname(__filename);
|
|
|
15
15
|
const cliWrapperPath = join(__dirname, '../node_modules/@vibe-validate/cli/dist/bin/vibe-validate.js');
|
|
16
16
|
|
|
17
17
|
// Import and execute the CLI wrapper
|
|
18
|
-
|
|
18
|
+
// Use pathToFileURL for Windows compatibility (import() requires file:// URLs)
|
|
19
|
+
await import(pathToFileURL(cliWrapperPath).href);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibe-validate",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.5",
|
|
4
4
|
"description": "Git-aware validation orchestration for vibe coding (LLM-assisted development) - umbrella package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -50,12 +50,13 @@
|
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@vibe-validate/cli": "0.17.
|
|
53
|
+
"@vibe-validate/cli": "0.17.5"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@types/node": "^20.
|
|
57
|
-
"typescript": "^5.
|
|
58
|
-
"vitest": "^2.
|
|
56
|
+
"@types/node": "^20.19.26",
|
|
57
|
+
"typescript": "^5.9.3",
|
|
58
|
+
"vitest": "^2.1.9",
|
|
59
|
+
"@vibe-validate/utils": "0.17.5"
|
|
59
60
|
},
|
|
60
61
|
"scripts": {
|
|
61
62
|
"test": "vitest run",
|
package/skill/SKILL.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: vibe-validate
|
|
3
|
-
version: 0.17.
|
|
3
|
+
version: 0.17.5 # Tracks vibe-validate package version
|
|
4
4
|
description: Expert guidance for vibe-validate, an LLM-optimized validation orchestration tool. Use when working with vibe-validate commands, configuration, pre-commit workflows, or validation orchestration in TypeScript projects.
|
|
5
5
|
model: claude-sonnet-4-5
|
|
6
6
|
tools:
|
|
@@ -922,7 +922,7 @@ Ensure error extractors are working correctly (see [Error Extractors Guide](./er
|
|
|
922
922
|
- [Getting Started Guide](./getting-started.md)
|
|
923
923
|
- [Configuration Reference](./configuration-reference.md)
|
|
924
924
|
- [CLI Reference](./cli-reference.md)
|
|
925
|
-
- [Config Templates Guide](
|
|
925
|
+
- [Config Templates Guide](./../../packages/cli/config-templates/README.md)
|
|
926
926
|
- [Error Extractors Guide](./error-extractors-guide.md)
|
|
927
927
|
|
|
928
928
|
---
|
|
@@ -694,7 +694,7 @@ npx vibe-validate init --template typescript-nodejs
|
|
|
694
694
|
|
|
695
695
|
# Or copy directly from GitHub
|
|
696
696
|
curl -o vibe-validate.config.yaml \
|
|
697
|
-
https://raw.githubusercontent.com/jdutton/vibe-validate/main/config-templates/typescript-nodejs.yaml
|
|
697
|
+
https://raw.githubusercontent.com/jdutton/vibe-validate/main/packages/cli/config-templates/typescript-nodejs.yaml
|
|
698
698
|
```
|
|
699
699
|
|
|
700
700
|
### Customizing Templates
|
|
@@ -976,5 +976,5 @@ Validation state is stored in git notes (not files):
|
|
|
976
976
|
|
|
977
977
|
- [Getting Started](getting-started.md) - Initial setup
|
|
978
978
|
- [CLI Reference](cli-reference.md) - Command-line options
|
|
979
|
-
- [Config Templates Guide](
|
|
979
|
+
- [Config Templates Guide](./../../packages/cli/config-templates/README.md) - Using and customizing templates
|
|
980
980
|
- [Error Extractors Guide](error-extractors-guide.md) - Error formatting details
|
|
@@ -730,7 +730,7 @@ TypeScript (3 errors):
|
|
|
730
730
|
- [Getting Started Guide](./getting-started.md)
|
|
731
731
|
- [Configuration Reference](./configuration-reference.md)
|
|
732
732
|
- [CLI Reference](./cli-reference.md)
|
|
733
|
-
- [Config Templates Guide](
|
|
733
|
+
- [Config Templates Guide](./../../packages/cli/config-templates/README.md)
|
|
734
734
|
- [Agent Integration Guide](./agent-integration-guide.md)
|
|
735
735
|
|
|
736
736
|
---
|