vibe-validate 0.18.0 → 0.18.2-rc.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibe-validate",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.2-rc.1",
|
|
4
4
|
"description": "Git-aware validation orchestration for vibe coding (LLM-assisted development) - umbrella package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@vibe-validate/cli": "0.18.
|
|
53
|
+
"@vibe-validate/cli": "0.18.2-rc.1"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/node": "^20.19.26",
|
|
57
57
|
"typescript": "^5.9.3",
|
|
58
58
|
"vitest": "^2.1.9",
|
|
59
|
-
"@vibe-validate/utils": "0.18.
|
|
59
|
+
"@vibe-validate/utils": "0.18.2-rc.1"
|
|
60
60
|
},
|
|
61
61
|
"scripts": {
|
|
62
62
|
"test": "vitest run",
|
package/skill/SKILL.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: vibe-validate
|
|
3
|
-
version: 0.18.
|
|
3
|
+
version: 0.18.2-rc.1 # 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:
|
|
@@ -440,7 +440,7 @@ validation:
|
|
|
440
440
|
cwd: services/ml-engine
|
|
441
441
|
```
|
|
442
442
|
|
|
443
|
-
**Use case**: Perfect for monorepos and heterogeneous projects with multiple languages or build systems. See the [Heterogeneous Projects Guide](heterogeneous-projects.md) for comprehensive examples.
|
|
443
|
+
**Use case**: Perfect for monorepos and heterogeneous projects with multiple languages or build systems. See the [Heterogeneous Projects Guide](../../heterogeneous-projects.md) for comprehensive examples.
|
|
444
444
|
|
|
445
445
|
**Security**: All `cwd` paths are validated to prevent directory traversal attacks. Paths must resolve within the git repository.
|
|
446
446
|
|
|
@@ -974,7 +974,7 @@ Validation state is stored in git notes (not files):
|
|
|
974
974
|
|
|
975
975
|
## See Also
|
|
976
976
|
|
|
977
|
-
- [Getting Started](getting-started.md) - Initial setup
|
|
978
|
-
- [CLI Reference](cli-reference.md) - Command-line options
|
|
979
|
-
- [Config Templates Guide](
|
|
980
|
-
- [Error Extractors Guide](error-extractors-guide.md) - Error formatting details
|
|
977
|
+
- [Getting Started](../../getting-started.md) - Initial setup
|
|
978
|
+
- [CLI Reference](./cli-reference.md) - Command-line options
|
|
979
|
+
- [Config Templates Guide](../../../packages/cli/config-templates/README.md) - Using and customizing templates
|
|
980
|
+
- [Error Extractors Guide](./error-extractors-guide.md) - Error formatting details
|
|
@@ -727,10 +727,10 @@ TypeScript (3 errors):
|
|
|
727
727
|
|
|
728
728
|
## Related Documentation
|
|
729
729
|
|
|
730
|
-
- [Getting Started Guide](
|
|
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
|
---
|