@hk_net/pi-thinking-command 0.1.8 → 0.1.9
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 +7 -0
- package/LICENSE +3 -0
- package/package.json +5 -2
- package/thinking-shortcut.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.9 - 2026-08-23
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Add the copyright holder and EUPL licensing notice to the package license and canonical TypeScript source.
|
|
8
|
+
- Identify KAPPER NETWORK-COMMUNICATIONS GmbH and kapper.net in the npm author metadata.
|
|
9
|
+
|
|
3
10
|
## 0.1.8 - 2026-08-23
|
|
4
11
|
|
|
5
12
|
### Changed
|
package/LICENSE
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hk_net/pi-thinking-command",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "Pi extension that adds a /thinking slash command for changing reasoning level",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -11,7 +11,10 @@
|
|
|
11
11
|
"thinking"
|
|
12
12
|
],
|
|
13
13
|
"license": "EUPL-1.2",
|
|
14
|
-
"author":
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "KAPPER NETWORK-COMMUNICATIONS GmbH",
|
|
16
|
+
"url": "https://kapper.net"
|
|
17
|
+
},
|
|
15
18
|
"repository": {
|
|
16
19
|
"type": "git",
|
|
17
20
|
"url": "git+https://github.com/hknet/pi-extensions.git",
|
package/thinking-shortcut.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
// Copyright © 2026 kapper.net - KAPPER NETWORK-COMMUNICATIONS GmbH
|
|
2
|
+
// SPDX-License-Identifier: EUPL-1.2
|
|
3
|
+
|
|
1
4
|
import { getSupportedThinkingLevels } from "@earendil-works/pi-ai";
|
|
2
5
|
import type { Api, Model, ModelThinkingLevel } from "@earendil-works/pi-ai";
|
|
3
6
|
import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
|