@opencode-compat/ocp 0.1.2 → 0.1.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/README.md CHANGED
@@ -13,6 +13,8 @@ bun packages/ocp/bin/ocp.ts setup --dir /path/to/host/plugin/cache
13
13
 
14
14
  `setup` default `--mode auto` uses local `file:` facade paths from this checkout when present; outside the monorepo use **`--mode npm`** (see [INSTALL.md](../../INSTALL.md)).
15
15
 
16
+ The default provider-shim action applies the active host's LanguageModel compatibility policy and adopts tool argument keys from each call's advertised schema. Exact schema keys win; only unique case/separator-insensitive matches are renamed. Runtime identity wins for host-specific policy; a setup-time install-tree host hint covers isolated provider workers that hide host process markers.
17
+
16
18
  ## Commands
17
19
 
18
20
  | Command | Role |
@@ -29,4 +31,4 @@ Bridge packages (`profile`, `facade-*`, `adapter`, `host-promise-v2`, `cli`, …
29
31
 
30
32
  **License:** MPL-2.0
31
33
 
32
- See [INSTALL.md](../../INSTALL.md), the monorepo [README](../../README.md), [OCP 0.1](../../docs/ocp/0.1.md), and host notes under [`docs/hosts/`](../../docs/hosts/).
34
+ See [INSTALL.md](../../INSTALL.md), the monorepo [README](../../README.md), [OCP 0.1](../../docs/ocp/0.1.md), and host notes under [`docs/hosts/`](../../docs/hosts/).
package/dist/index.d.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  * config. Bridge packages remain implementation detail / transitive deps.
6
6
  */
7
7
  export declare const PKG: "@opencode-compat/ocp";
8
- export declare const VERSION: "0.1.2";
8
+ export declare const VERSION: "0.1.3";
9
9
  export { doctor, main, mainAsync, matrix, setup, parseSetupArgs, type DoctorResult, type MatrixCell, type MatrixCliOptions, type SetupOptions, type SetupResult, } from "@opencode-compat/cli";
10
10
  export { detect, facadeOverrides, facadeOverrideSnippet, type DetectOptions, type DetectResult, type HostId, type HostProfile, } from "@opencode-compat/profile";
11
11
  export { createPromiseV2Host, definePromisePlugin, runPromisePlugin, wirePromiseV2, type LanguageModelInput, type LanguageModelV3Like, type PluginContext, type PromiseV2Host, type PromiseV2Plugin, } from "@opencode-compat/adapter";
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * config. Bridge packages remain implementation detail / transitive deps.
6
6
  */
7
7
  export const PKG = "@opencode-compat/ocp";
8
- export const VERSION = "0.1.2";
8
+ export const VERSION = "0.1.3";
9
9
  export { doctor, main, mainAsync, matrix, setup, parseSetupArgs, } from "@opencode-compat/cli";
10
10
  export { detect, facadeOverrides, facadeOverrideSnippet, } from "@opencode-compat/profile";
11
11
  export { createPromiseV2Host, definePromisePlugin, runPromisePlugin, wirePromiseV2, } from "@opencode-compat/adapter";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencode-compat/ocp",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "OCP umbrella UX — one install + ocp setup for Layer A facade overrides",
5
5
  "type": "module",
6
6
  "license": "MPL-2.0",
@@ -37,13 +37,13 @@
37
37
  "prepack": "bunx tsc -p tsconfig.json"
38
38
  },
39
39
  "dependencies": {
40
- "@opencode-compat/adapter": "0.1.2",
41
- "@opencode-compat/cli": "0.1.2",
42
- "@opencode-compat/facade-plugin": "0.1.2",
43
- "@opencode-compat/facade-sdk": "0.1.2",
44
- "@opencode-compat/host-promise-v2": "0.1.2",
45
- "@opencode-compat/migrate-zcode": "0.1.2",
46
- "@opencode-compat/profile": "0.1.2"
40
+ "@opencode-compat/adapter": "0.1.3",
41
+ "@opencode-compat/cli": "0.1.3",
42
+ "@opencode-compat/facade-plugin": "0.1.3",
43
+ "@opencode-compat/facade-sdk": "0.1.3",
44
+ "@opencode-compat/host-promise-v2": "0.1.3",
45
+ "@opencode-compat/migrate-zcode": "0.1.3",
46
+ "@opencode-compat/profile": "0.1.3"
47
47
  },
48
48
  "devDependencies": {
49
49
  "typescript": "^5.8.3"