pi-commandcode-provider 0.3.0 → 0.3.1
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 +5 -0
- package/package.json +1 -1
- package/src/core.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.1 - 2026-05-29
|
|
4
|
+
|
|
5
|
+
- Bump CLI version header to `0.29.0` for Command Code API parity.
|
|
6
|
+
- Harden PR security pipeline CI configuration.
|
|
7
|
+
|
|
3
8
|
## 0.3.0 - 2026-05-28
|
|
4
9
|
|
|
5
10
|
- Add OMP (Oh My Pi) provider compatibility: support `~/.omp/agent/auth.json` auth path, handle OMP's env-var-name-as-apiKey quirk, convert OMP system prompt arrays to text.
|
package/package.json
CHANGED
package/src/core.ts
CHANGED
|
@@ -39,7 +39,7 @@ export * from "./converters.ts"
|
|
|
39
39
|
export * from "./types.ts"
|
|
40
40
|
|
|
41
41
|
export const DEFAULT_API_BASE = "https://api.commandcode.ai"
|
|
42
|
-
export const COMMAND_CODE_CLI_VERSION = "0.
|
|
42
|
+
export const COMMAND_CODE_CLI_VERSION = "0.29.0"
|
|
43
43
|
|
|
44
44
|
const DEFAULT_GENERATE_MAX_TOKENS = 64_000
|
|
45
45
|
|