vibe-validate 0.17.6 → 0.18.0-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.
|
|
3
|
+
"version": "0.18.0-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.
|
|
53
|
+
"@vibe-validate/cli": "0.18.0-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.
|
|
59
|
+
"@vibe-validate/utils": "0.18.0-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.
|
|
3
|
+
version: 0.18.0-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:
|
|
@@ -386,7 +386,7 @@ vibe-validate doctor --yaml # YAML output only
|
|
|
386
386
|
|
|
387
387
|
### `watch-pr`
|
|
388
388
|
|
|
389
|
-
|
|
389
|
+
Monitor PR checks with auto-polling, error extraction, and flaky test detection (use after creating PR, run after each push)
|
|
390
390
|
|
|
391
391
|
**What it does:**
|
|
392
392
|
|
|
@@ -407,11 +407,13 @@ Watch CI checks for a pull/merge request in real-time
|
|
|
407
407
|
|
|
408
408
|
**Options:**
|
|
409
409
|
|
|
410
|
-
- `--
|
|
411
|
-
- `--
|
|
412
|
-
- `--
|
|
410
|
+
- `--yaml` - Force YAML output (auto-enabled on failure)
|
|
411
|
+
- `--repo <owner/repo>` - Repository (default: auto-detect from git remote)
|
|
412
|
+
- `--history` - Show historical runs for the PR with pass/fail summary
|
|
413
|
+
- `--run-id <id>` - Watch specific run ID instead of latest (useful for testing failed runs)
|
|
414
|
+
- `--timeout <seconds>` - Maximum polling time in seconds (default: 1800 = 30 min)
|
|
413
415
|
- `--poll-interval <seconds>` - Polling frequency in seconds (default: 10)
|
|
414
|
-
- `--fail-fast` - Exit immediately on first check failure
|
|
416
|
+
- `--fail-fast` - Exit immediately on first check failure (no polling)
|
|
415
417
|
|
|
416
418
|
**Error recovery:**
|
|
417
419
|
|