vibe-validate 0.18.3 → 0.18.4-rc.2

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",
3
+ "version": "0.18.4-rc.2",
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.3"
53
+ "@vibe-validate/cli": "0.18.4-rc.2"
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.3"
59
+ "@vibe-validate/utils": "0.18.4-rc.2"
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 # Tracks vibe-validate package version
3
+ version: 0.18.4-rc.2 # 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:
@@ -34,6 +34,8 @@ You are an expert in **vibe-validate**, a git-aware validation orchestration too
34
34
  5. **Fail-Fast**: Fix errors incrementally, leverage caching for speed
35
35
  6. **Work Protection**: Every validation creates recoverable snapshots (automatic safety net)
36
36
 
37
+ **CRITICAL FOR AI AGENTS**: After fixing errors, ALWAYS run `pnpm validate` again before asking to commit (cache makes it instant if correct, catches side effects if wrong).
38
+
37
39
  ## Primary Workflows
38
40
 
39
41
  ### 1. Pre-Commit Validation (MOST IMPORTANT)
@@ -165,7 +165,7 @@ When you run `vibe-validate generate-workflow`, the `parallel` flag controls how
165
165
  - name: ESLint
166
166
  command: pnpm lint
167
167
  - name: Code Duplication Check
168
- command: node tools/jscpd-check.js
168
+ command: pnpm duplication-check
169
169
  - name: Build Packages
170
170
  command: pnpm -r build
171
171