@wix/pathgrade 1.0.12 → 1.0.13

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
@@ -13,7 +13,7 @@
13
13
 
14
14
  ## Quick Start
15
15
 
16
- **Prerequisites**: Node.js 20.11+, Vitest 4+ or Jest 30+, and at least one configured agent runtime. Claude uses the bundled `@anthropic-ai/claude-agent-sdk` binary by default; Codex requires the `codex` CLI; Cursor requires the `cursor-agent` CLI. OpenCode requires the exact Wix-registry v1.18.14 macOS ARM64 or Linux ARM64 executable.
16
+ **Prerequisites**: Node.js 20.11+, Vitest 4+ or Jest 30+, and at least one configured agent runtime. Claude uses the bundled `@anthropic-ai/claude-agent-sdk` binary by default; Codex requires the `codex` CLI; Cursor requires the `cursor-agent` CLI. OpenCode requires the exact Wix-registry v1.18.14 macOS ARM64, Linux ARM64, or Linux x64 executable.
17
17
 
18
18
  ```bash
19
19
  yarn add -D @wix/pathgrade
@@ -50,6 +50,10 @@ export declare const OPENCODE_RUNTIME_LOCK: {
50
50
  readonly version: "1.18.14";
51
51
  readonly executableSha256: "79d42436517e485e9444cfc6e92582bf9224a9e36fa77fb3957b343486fec81d";
52
52
  };
53
+ readonly 'linux-x64': {
54
+ readonly version: "1.18.14";
55
+ readonly executableSha256: "cfdfa432a0fe192aea84b8257d01295971e533ee37520ede920b3d9cdd3cc07f";
56
+ };
53
57
  };
54
58
  export type OpenCodePlatformKey = keyof typeof OPENCODE_RUNTIME_LOCK;
55
59
  export declare function getOpenCodePlatformKey(platform: NodeJS.Platform, arch: string): OpenCodePlatformKey | undefined;
@@ -50,6 +50,10 @@ export const OPENCODE_RUNTIME_LOCK = {
50
50
  version: OPENCODE_VERSION,
51
51
  executableSha256: '79d42436517e485e9444cfc6e92582bf9224a9e36fa77fb3957b343486fec81d',
52
52
  },
53
+ 'linux-x64': {
54
+ version: OPENCODE_VERSION,
55
+ executableSha256: 'cfdfa432a0fe192aea84b8257d01295971e533ee37520ede920b3d9cdd3cc07f',
56
+ },
53
57
  };
54
58
  export function getOpenCodePlatformKey(platform, arch) {
55
59
  const key = `${platform}-${arch}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/pathgrade",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "packageManager": "yarn@4.12.0",
5
5
  "description": "Evaluate whether AI agents discover and use your skills correctly",
6
6
  "exports": {
@@ -132,5 +132,5 @@
132
132
  "typescript": "^5.9.3",
133
133
  "zod": "4.3.6"
134
134
  },
135
- "falconPackageHash": "48e95ba80576ede589f0a5e47d60b9c94fd53c1ef435d8ca9af35392"
135
+ "falconPackageHash": "b327de99650979dcf1db770211744d11c34f2555b5f0b82869b80d30"
136
136
  }