@tomismeta/paperclip-aperture 0.2.0 → 0.2.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/README.md +2 -2
- package/dist/manifest.js +1 -1
- package/dist/worker.js +1359 -563
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ This plugin treats Paperclip as the host runtime and UI shell, while embedding [
|
|
|
79
79
|
|
|
80
80
|
It is a pure SDK integration: Aperture Core is used as-is inside a self-contained Paperclip plugin, with no changes to Aperture Core or Paperclip core.
|
|
81
81
|
|
|
82
|
-
For `0.2.
|
|
82
|
+
For `0.2.x`, the boundary works like this:
|
|
83
83
|
|
|
84
84
|
- the plugin worker owns Aperture ingestion, replay, review state, and display composition
|
|
85
85
|
- Paperclip remains the system of record for issue and approval writes
|
|
@@ -87,7 +87,7 @@ For `0.2.0`, the boundary works like this:
|
|
|
87
87
|
- the plugin intentionally publishes `ApertureEvent`s today, using a Paperclip-specific semantic mapping layer and ontology, rather than switching fully to `SourceEvent`
|
|
88
88
|
- that semantic layer includes reusable intent detectors, actor resolution against real company agents, downstream blocker extraction, and shared operator-language generation inside the plugin
|
|
89
89
|
|
|
90
|
-
The plugin has been validated against [`@tomismeta/aperture-core@0.
|
|
90
|
+
The plugin has been validated against [`@tomismeta/aperture-core@0.4.0`](https://www.npmjs.com/package/@tomismeta/aperture-core).
|
|
91
91
|
|
|
92
92
|
## Development
|
|
93
93
|
|
package/dist/manifest.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const manifest = {
|
|
2
2
|
id: "tomismeta.paperclip-aperture",
|
|
3
3
|
apiVersion: 1,
|
|
4
|
-
version: "0.2.
|
|
4
|
+
version: "0.2.1",
|
|
5
5
|
displayName: "Paperclip Aperture",
|
|
6
6
|
description: "The live attention layer for Paperclip, powered by Aperture's deterministic attention engine.",
|
|
7
7
|
author: "@tomismeta",
|