pi-set-model 0.1.4 → 0.1.5

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.5 - 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.4 - 2026-08-23
4
11
 
5
12
  ### Changed
package/LICENSE CHANGED
@@ -1,3 +1,6 @@
1
+ Copyright © 2026 kapper.net - KAPPER NETWORK-COMMUNICATIONS GmbH
2
+ Licensed under the EUPL
3
+
1
4
  EUROPEAN UNION PUBLIC LICENCE v. 1.2
2
5
  EUPL © the European Union 2007, 2016
3
6
 
package/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "pi-set-model",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Pi extension that remembers model and thinking level per project folder",
5
5
  "type": "module",
6
6
  "private": false,
7
7
  "keywords": ["pi-package", "pi", "extension", "model", "thinking", "project"],
8
8
  "license": "EUPL-1.2",
9
- "author": "hknet",
9
+ "author": {
10
+ "name": "KAPPER NETWORK-COMMUNICATIONS GmbH",
11
+ "url": "https://kapper.net"
12
+ },
10
13
  "repository": {
11
14
  "type": "git",
12
15
  "url": "git+https://github.com/hknet/pi-extensions.git",
package/set-model.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 { mkdir, readFile, rename, unlink, writeFile } from "node:fs/promises";
2
5
  import { dirname, join } from "node:path";
3
6
  import { clampThinkingLevel } from "@earendil-works/pi-ai";