vibe-validate 0.19.2 → 0.19.3
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/dist/.claude/plugins/marketplaces/vibe-validate/CHANGELOG.md +10 -0
- package/dist/.claude/plugins/marketplaces/vibe-validate/README.md +10 -4
- package/dist/.claude/plugins/marketplaces/vibe-validate/plugins/vibe-validate/.claude-plugin/plugin.json +1 -1
- package/dist/.claude/plugins/marketplaces/vibe-validate/plugins/vibe-validate/skills/vibe-validate/SKILL.md +1 -1
- package/dist/skills/vibe-validate/SKILL.md +1 -1
- package/package.json +3 -3
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.19.3] - 2026-04-11
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **Claude marketplace CI** — Stable releases now update both `claude-marketplace` and `claude-marketplace-next` branches, matching npm's `@latest`/`@next` tag behavior
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- **README** — Added Claude Code plugin install instructions (marketplace, `/plugin` slash command, project-scope)
|
|
19
|
+
|
|
10
20
|
## [0.19.2] - 2026-04-10
|
|
11
21
|
|
|
12
22
|
### Added
|
|
@@ -6,23 +6,29 @@ LLM-optimized validation orchestration for vibe coding. [vibe-validate](https://
|
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
|
-
###
|
|
9
|
+
### From the terminal
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
12
|
claude plugin marketplace add jdutton/vibe-validate#claude-marketplace
|
|
13
13
|
claude plugin install vibe-validate@vibe-validate
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
+
### From within Claude Code
|
|
17
|
+
|
|
18
|
+
```
|
|
19
|
+
/plugin marketplace add jdutton/vibe-validate#claude-marketplace
|
|
20
|
+
/plugin install vibe-validate@vibe-validate
|
|
21
|
+
```
|
|
22
|
+
|
|
16
23
|
### For your project (shared with team)
|
|
17
24
|
|
|
25
|
+
Add `--scope project` to write to `.claude/settings.json` (committed to git). Team members who clone the repo will be prompted to install the marketplace automatically.
|
|
26
|
+
|
|
18
27
|
```bash
|
|
19
28
|
claude plugin marketplace add jdutton/vibe-validate#claude-marketplace --scope project
|
|
20
29
|
claude plugin install vibe-validate@vibe-validate
|
|
21
30
|
```
|
|
22
31
|
|
|
23
|
-
Project-scope writes to `.claude/settings.json` (committed to git). Team members
|
|
24
|
-
who clone the repo will be prompted to install the marketplace automatically.
|
|
25
|
-
|
|
26
32
|
### Update
|
|
27
33
|
|
|
28
34
|
```bash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: vibe-validate
|
|
3
|
-
version: 0.19.
|
|
3
|
+
version: 0.19.3 # 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:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: vibe-validate
|
|
3
|
-
version: 0.19.
|
|
3
|
+
version: 0.19.3 # 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:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibe-validate",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.3",
|
|
4
4
|
"description": "Git-aware validation orchestration for vibe coding (LLM-assisted development) - umbrella package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"vibe-agent-toolkit": "^0.1.26",
|
|
65
|
-
"@vibe-validate/cli": "0.19.
|
|
66
|
-
"@vibe-validate/utils": "0.19.
|
|
65
|
+
"@vibe-validate/cli": "0.19.3",
|
|
66
|
+
"@vibe-validate/utils": "0.19.3"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@types/node": "^20.19.26",
|