dsh-prompt-vcs 0.1.4 → 0.2.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.0
4
+
5
+ Ecosystem sync: every plugin in this suite shares one version, so a version number
6
+ identifies a set that was tested together rather than one plugin's own history.
7
+
8
+ - Fix the Model Arena panel rendering "Cannot read properties of undefined": the host
9
+ route returned the bare run list while the view reads `payload.recentRuns`.
10
+ - The client `inject` field now names services (`slots`, `connection`) instead of the
11
+ packages that provide them.
12
+ - README badges cover version, downloads, CI, license, Node requirement, stars, and the
13
+ dsh plugin topic.
14
+
3
15
  ## 0.1.4
4
16
 
5
17
  - **Fix the client half never activating.** The browser half declared package names
package/README.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # dsh-prompt-vcs
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/dsh-prompt-vcs)](https://www.npmjs.com/package/dsh-prompt-vcs) [![CI](https://github.com/hj01857655/dsh-prompt-vcs/actions/workflows/ci.yml/badge.svg)](https://github.com/hj01857655/dsh-prompt-vcs/actions/workflows/ci.yml)
3
+ [![npm version](https://img.shields.io/npm/v/dsh-prompt-vcs?color=cb3837&logo=npm&logoColor=white)](https://www.npmjs.com/package/dsh-prompt-vcs)
4
+ [![npm downloads](https://img.shields.io/npm/dm/dsh-prompt-vcs?color=cb3837)](https://www.npmjs.com/package/dsh-prompt-vcs)
5
+ [![CI](https://github.com/hj01857655/dsh-prompt-vcs/actions/workflows/ci.yml/badge.svg)](https://github.com/hj01857655/dsh-prompt-vcs/actions/workflows/ci.yml)
6
+ [![license](https://img.shields.io/npm/l/dsh-prompt-vcs?color=blue)](LICENSE)
7
+ [![node](https://img.shields.io/node/v/dsh-prompt-vcs?color=339933&logo=node.js&logoColor=white)](package.json)
8
+ [![GitHub stars](https://img.shields.io/github/stars/hj01857655/dsh-prompt-vcs?color=yellow)](https://github.com/hj01857655/dsh-prompt-vcs/stargazers)
9
+ [![dsh plugin](https://img.shields.io/badge/dsh-plugin-4B8BBE)](https://github.com/topics/dsh-plugin)
4
10
 
5
11
  Every change to your agent's instructions is recorded with a diff, and any change can be undone.
6
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-prompt-vcs",
3
- "version": "0.1.4",
3
+ "version": "0.2.0",
4
4
  "description": "Every change to your agent's instructions is recorded with a diff, and any change can be undone.",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",