@kujolang/paperclip 0.1.1 → 0.1.2
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 -10
- package/README.md +1 -1
- package/VERSION +1 -1
- package/dist/manifest.js +1 -1
- package/dist/worker.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.2 - 2026-09-02
|
|
4
|
+
|
|
5
|
+
- Publish through npm trusted publishing with short-lived GitHub Actions identity tokens instead of a stored npm token.
|
|
6
|
+
- Verify the published package through a clean public-registry installation before creating the GitHub release.
|
|
7
|
+
|
|
3
8
|
## 0.1.1 - 2026-09-02
|
|
4
9
|
|
|
5
10
|
- Work around Paperclip `2026.831.1` reporting host version `0.0.0` to the plugin loader while retaining the documented `2026.824.1` support floor.
|
|
@@ -11,13 +16,3 @@
|
|
|
11
16
|
- Bundle and verify ChangeBucket, PatchBrief, CaseFile, and Scent component snapshots.
|
|
12
17
|
- Enforce company-scoped state, feature policy, stale-context rejection, workspace bounds, hostile Git configuration suppression, and process-tree cleanup.
|
|
13
18
|
- Add cross-platform compatibility, dependency review, CodeQL, SBOM, provenance, signed-tag, and exact-tarball release controls.
|
|
14
|
-
|
|
15
|
-
## 0.1.0
|
|
16
|
-
|
|
17
|
-
- Initial Paperclip-native Review Pack, Failure Evidence, and Context Pack.
|
|
18
|
-
- Lifecycle-script-free Kujo runtime resolution and deterministic component bundle.
|
|
19
|
-
- Strict workspace, process, output, redaction, schema, provenance, and stale-state boundaries.
|
|
20
|
-
- Monochrome project badges and install-first ecosystem documentation.
|
|
21
|
-
- Root agent, contribution, security, and version contracts.
|
|
22
|
-
- Reproducible lockfile-based CI and npm release gates.
|
|
23
|
-
- Exact Kujo `1.2.2` runtime dependency with the restored Windows package build.
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Kujo for Paperclip
|
|
2
2
|
|
|
3
|
-
[](https://github.com/kujolang/paperclip/releases/tag/v0.1.2)
|
|
4
4
|
[](LICENSE)
|
|
5
5
|
[](https://github.com/kujolang/kujo)
|
|
6
6
|
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|
package/dist/manifest.js
CHANGED
|
@@ -14527,7 +14527,7 @@ var DEFAULT_LIMITS = {
|
|
|
14527
14527
|
maxInputLogBytes: 2e5,
|
|
14528
14528
|
maxContextFileBytes: 2e3
|
|
14529
14529
|
};
|
|
14530
|
-
var PLUGIN_VERSION = "0.1.
|
|
14530
|
+
var PLUGIN_VERSION = "0.1.2";
|
|
14531
14531
|
var MINIMUM_HOST_VERSION = "0.0.0";
|
|
14532
14532
|
|
|
14533
14533
|
// src/config/schema.ts
|
package/dist/worker.js
CHANGED
|
@@ -28926,7 +28926,7 @@ var CONTEXT_BUDGETS = {
|
|
|
28926
28926
|
focused: 16e3,
|
|
28927
28927
|
broad: 4e4
|
|
28928
28928
|
};
|
|
28929
|
-
var PLUGIN_VERSION = "0.1.
|
|
28929
|
+
var PLUGIN_VERSION = "0.1.2";
|
|
28930
28930
|
var PAPERCLIP_API_VERSION = 1;
|
|
28931
28931
|
|
|
28932
28932
|
// src/config/schema.ts
|
package/package.json
CHANGED