pi-commandcode-provider 0.1.1-next.0 → 0.1.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 +12 -0
- package/package.json +2 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.1.1 - 2026-05-26
|
|
4
|
+
|
|
5
|
+
- Align Command Code generate requests with CLI `0.27.2` headers and payload shape.
|
|
6
|
+
- Support official Command Code CLI auth files using the `command-code` credential key.
|
|
7
|
+
- Handle `reasoning-start` and ignore streamed `tool-result` events.
|
|
8
|
+
- Cap generated `max_tokens` by the selected model and the Command Code output limit.
|
|
9
|
+
|
|
10
|
+
## 0.1.0 - 2026-05-05
|
|
11
|
+
|
|
12
|
+
- Initial public release.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-commandcode-provider",
|
|
3
|
-
"version": "0.1.1
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "pi custom provider for Command Code API (commandcode.ai)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"index.ts",
|
|
23
23
|
"src/",
|
|
24
24
|
"README.md",
|
|
25
|
+
"CHANGELOG.md",
|
|
25
26
|
"LICENSE"
|
|
26
27
|
],
|
|
27
28
|
"scripts": {
|