Skip to content

Commit 24e9d38

Browse files
committed
Revert "Release 0.4.6 install compatibility"
This reverts commit 2a37eb0.
1 parent 2a37eb0 commit 24e9d38

5 files changed

Lines changed: 4 additions & 34 deletions

File tree

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,7 @@ After install, open Paperclip and use the `Focus` entry in the sidebar.
4848

4949
## Troubleshooting
5050

51-
- If the sidebar shows a bordered placeholder instead of the `Focus` entry, upgrade to Paperclip `2026.525.0` or newer and reinstall this plugin. `0.4.6` preserves the original Focus sidebar icon and uses the current host invocation scope.
52-
- On Paperclip `2026.525.0`, install the package without a version suffix: `npx paperclipai plugin install @tomismeta/paperclip-aperture`. The host installer currently checks the wrong package directory for scoped packages with an explicit version suffix.
53-
- `0.4.6` intentionally does not declare `minimumHostVersion` in the manifest because Paperclip `2026.525.0` reports `0.0.0` to the plugin loader during install. The plugin still requires Paperclip `2026.525.0` or newer at runtime.
51+
- If the sidebar shows a bordered placeholder instead of the `Focus` entry, upgrade to Paperclip `2026.525.0` or newer and reinstall this plugin. `0.4.5` preserves the original Focus sidebar icon and uses the current host invocation scope.
5452
- `paperclipApiBase` is only needed for approval overlays. Use the Paperclip origin such as `https://HOST` or `http://127.0.0.1:3100`; leaving it empty disables approval overlay reads without disabling Focus.
5553
- On Windows, `spawn npm ENOENT` during `npx paperclipai plugin install @tomismeta/paperclip-aperture` comes from the Paperclip host installer failing to spawn npm. This package does not spawn npm during install. Make sure the Paperclip process can resolve `npm.cmd`, or upgrade Paperclip once the Windows installer fix is available.
5654

docs/RELEASE-0.4.6.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tomismeta/paperclip-aperture",
3-
"version": "0.4.6",
3+
"version": "0.4.5",
44
"type": "module",
55
"private": false,
66
"description": "The live attention layer for Paperclip, combining Aperture Core continuity with Paperclip-native operator policy.",

src/manifest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ import type { PaperclipPluginManifestV1 } from "@paperclipai/plugin-sdk";
33
const manifest: PaperclipPluginManifestV1 = {
44
id: "tomismeta.paperclip-aperture",
55
apiVersion: 1,
6-
version: "0.4.6",
6+
version: "0.4.5",
7+
minimumHostVersion: "2026.525.0",
78
displayName: "Paperclip Aperture",
89
description: "The live attention layer for Paperclip, combining Aperture Core continuity with Paperclip-native operator policy.",
910
author: "@tomismeta",

tests/plugin.spec.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -272,11 +272,6 @@ describe("paperclip aperture", () => {
272272
expect(manifest.ui?.launchers ?? []).toHaveLength(0);
273273
});
274274

275-
it("does not declare a host-version gate while Paperclip 2026.525 reports 0.0.0 at install time", () => {
276-
expect(manifest.minimumHostVersion).toBeUndefined();
277-
expect(manifest.minimumPaperclipVersion).toBeUndefined();
278-
});
279-
280275
it("maps approval events into attention state and clears them on acknowledgement", async () => {
281276
const harness = createTestHarness({ manifest });
282277
await plugin.definition.setup(harness.ctx);

0 commit comments

Comments
 (0)