@openparachute/notes-ui 0.1.0-rc.4 → 0.1.0-rc.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,37 @@
1
1
  # Changelog — @openparachute/notes-ui
2
2
 
3
+ ## [0.1.0-rc.5] - 2026-05-23
4
+
5
+ - **Fix: ship `meta.json` so parachute-app bootstrap can install.**
6
+ parachute-app's auto-bootstrap path validates `@openparachute/notes-
7
+ ui`'s tarball against its [meta-schema][meta-schema] and requires
8
+ `name` + `displayName` + `path`. Tarballs through rc.4 included only
9
+ `dist/`, `LICENSE`, `README.md`, `package.json`, and `CHANGELOG.md`
10
+ — no `meta.json`, so bootstrap failed with:
11
+
12
+ ```
13
+ [app] bootstrap: failed to install @openparachute/notes-ui: meta.json:
14
+ name: is required (string); displayName: is required (non-empty
15
+ string); path: is required (string)
16
+ ```
17
+
18
+ This release adds `packages/notes-ui/meta.json` and includes it in
19
+ the `files` list. The file declares `name: "notes"`, `displayName:
20
+ "Notes"`, `path: "/app/notes"`, `scopes_required: ["vault:*:read",
21
+ "vault:*:write"]` (vault-agnostic — Notes' in-app vault picker
22
+ narrows per OAuth flow), `pwa: true` + `pwa_service_worker: "sw.js"`
23
+ (Notes is the canonical PWA-mode example per [design §18][s18]),
24
+ `iconUrl: "icon.svg"`, and the `required_schema.tags` declaration
25
+ for `capture` / `capture/text` / `capture/voice` mirroring
26
+ `NOTES_REQUIRED_SCHEMA` in `src/lib/vault/schema.ts` (patterns#57 —
27
+ Phase 2.0 validates the shape; Phase 2.1+ auto-provisions).
28
+
29
+ Canonical reference for the shape: [design doc §5][s5].
30
+
31
+ [meta-schema]: https://github.com/ParachuteComputer/parachute-app/blob/main/packages/app-host/src/meta-schema.ts
32
+ [s5]: https://github.com/ParachuteComputer/parachute.computer/blob/main/design/2026-05-21-parachute-apps-design.md#5-per-ui-metadata-schema--metajson-draft-07
33
+ [s18]: https://github.com/ParachuteComputer/parachute.computer/blob/main/design/2026-05-21-parachute-apps-design.md#18-caching--reload-strategy
34
+
3
35
  ## [0.1.0-rc.4] - 2026-05-22
4
36
 
5
37
  - **Fix: resolve `link:` dep in published manifest** (`link:` →
@@ -2,7 +2,7 @@
2
2
  "name": "parachute-notes",
3
3
  "displayName": "Notes",
4
4
  "tagline": "Web client for your Parachute Vault",
5
- "version": "0.1.0-rc.4",
5
+ "version": "0.1.0-rc.5",
6
6
  "iconUrl": "/notes/icon.svg",
7
7
  "kind": "frontend"
8
8
  }
package/meta.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "$schema": "https://parachute.computer/schemas/app-ui-meta.json",
3
+ "name": "notes",
4
+ "displayName": "Notes",
5
+ "tagline": "Notes PWA backed by your vault.",
6
+ "path": "/app/notes",
7
+ "iconUrl": "icon.svg",
8
+ "scopes_required": ["vault:*:read", "vault:*:write"],
9
+ "pwa": true,
10
+ "pwa_service_worker": "sw.js",
11
+ "required_schema": {
12
+ "tags": [
13
+ {
14
+ "name": "capture",
15
+ "description": "Notes captured directly by the user (text or voice)."
16
+ },
17
+ {
18
+ "name": "capture/text",
19
+ "description": "Text capture."
20
+ },
21
+ {
22
+ "name": "capture/voice",
23
+ "description": "Voice capture."
24
+ }
25
+ ]
26
+ }
27
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openparachute/notes-ui",
3
- "version": "0.1.0-rc.4",
3
+ "version": "0.1.0-rc.5",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Parachute Notes UI bundle — the SPA installed under parachute-app as the canonical first app. No daemon, no module surface; just the built dist/.",
@@ -10,7 +10,7 @@
10
10
  "url": "https://github.com/ParachuteComputer/parachute-notes.git",
11
11
  "directory": "packages/notes-ui"
12
12
  },
13
- "files": ["dist", "README.md", "LICENSE", "CHANGELOG.md"],
13
+ "files": ["dist", "meta.json", "README.md", "LICENSE", "CHANGELOG.md"],
14
14
  "scripts": {
15
15
  "dev": "vite",
16
16
  "build": "tsc -b && vite build",