@vibedgc/sdk 0.6.4 → 0.6.8

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/README.md CHANGED
@@ -1,13 +1,13 @@
1
1
  # @vibedgc/sdk
2
2
 
3
3
  Node client for the DGC coding harness. It starts a managed `dgc serve` child with an isolated
4
- HOME and speaks editor protocol v14. Version 0.6.4 pairs with DGC CLI 0.43.4. Node 22 or newer.
4
+ HOME and speaks editor protocol v14. Version 0.6.8 pairs with DGC CLI 0.43.4. Node 22 or newer.
5
5
 
6
- The package is attached to the GitHub release `sdk-v0.6.4` as `vibedgc-sdk-0.6.4.tgz`. It is not
7
- on the npm registry yet.
6
+ The package is on the npm registry. The identical tarball is also attached to the GitHub release
7
+ `sdk-v0.6.8` as `vibedgc-sdk-0.6.8.tgz`, for installs that pin a checksum.
8
8
 
9
9
  ```bash
10
- npm install https://github.com/OpenPeach-ai/dgc/releases/download/sdk-v0.6.4/vibedgc-sdk-0.6.4.tgz
10
+ npm install @vibedgc/sdk
11
11
  ```
12
12
 
13
13
  ```js
@@ -49,5 +49,5 @@ The runtime child sees only basic variables (`PATH`, locale, terminal, temp and
49
49
  locations), the isolated HOME, `apiKey` and `extraEnv`. Pass `inheritEnv: ["NAME"]` (or `true`)
50
50
  to hand it more of your environment.
51
51
 
52
- Full reference: [docs/SDK.md](https://github.com/OpenPeach-ai/dgc/blob/sdk-v0.6.4/docs/SDK.md).
52
+ Full reference: [docs/SDK.md](https://github.com/OpenPeach-ai/dgc/blob/sdk-v0.6.8/docs/SDK.md).
53
53
  Licensed under Apache-2.0.
package/dist/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export declare const VERSION = "0.6.4";
1
+ export declare const VERSION = "0.6.8";
2
2
  export declare const PROTOCOL = 14;
3
3
  export declare const REQUIRES_CLI = "0.43.4";
4
4
  export type PermissionMode = "default" | "acceptEdits" | "plan" | "auto";
package/dist/types.js CHANGED
@@ -1,3 +1,3 @@
1
- export const VERSION = "0.6.4";
1
+ export const VERSION = "0.6.8";
2
2
  export const PROTOCOL = 14;
3
3
  export const REQUIRES_CLI = "0.43.4";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibedgc/sdk",
3
- "version": "0.6.4",
3
+ "version": "0.6.8",
4
4
  "description": "Embed the DGC coding harness in applications and CI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",