@quolu/aishell 0.4.5 → 0.4.7

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.ja.md CHANGED
@@ -93,8 +93,9 @@ flowchart LR
93
93
  global packageは`aishell-mcp`と`aishell-open`を`PATH`へ追加する。`aishell-open`は同梱された管理アプリをLaunchServicesで開く。install scriptは実行しない。
94
94
 
95
95
  upgradeは開いたままの管理アプリの足元でapp bundleを置き換えるため、その窓は壊れる。削除済みbundleを
96
- 掴み続け、ファイル選択を伴う操作を無言で失う。窓自身がこれを検知してbannerで示すので、開き直せば
97
- 新版へ移る。
96
+ 掴み続け、ファイル選択を伴う操作を無言で失う。窓自身がこれを検知してbannerで示す。新版が同じpathに
97
+ 在る場合はbannerの再起動1回で新版の窓へ移り、pathごと消えている場合は終了と`aishell-open`での開き直しを
98
+ 促す。実際の`npm install -g` upgradeで検証済みである。
98
99
 
99
100
  ```sh
100
101
  npm install -g @quolu/aishell
package/README.md CHANGED
@@ -92,7 +92,9 @@ The global package adds `aishell-mcp` and `aishell-open` to `PATH`. `aishell-ope
92
92
 
93
93
  Upgrading replaces the app bundle underneath any manager window left open, which breaks that window —
94
94
  it keeps holding a deleted bundle and silently loses every operation that opens a file panel. The
95
- window detects this itself and says so with a banner; reopen it to pick up the new version.
95
+ window detects this itself and says so with a banner. When the new version sits at the same path, the
96
+ banner restarts the window into it in one click; otherwise it asks for a quit and a fresh
97
+ `aishell-open`. Verified against real `npm install -g` upgrades, not only simulated ones.
96
98
 
97
99
  ```sh
98
100
  npm install -g @quolu/aishell
@@ -17,9 +17,9 @@
17
17
  <key>CFBundlePackageType</key>
18
18
  <string>APPL</string>
19
19
  <key>CFBundleShortVersionString</key>
20
- <string>0.4.5</string>
20
+ <string>0.4.7</string>
21
21
  <key>CFBundleVersion</key>
22
- <string>16</string>
22
+ <string>17</string>
23
23
  <key>LSApplicationCategoryType</key>
24
24
  <string>public.app-category.utilities</string>
25
25
  <key>LSMinimumSystemVersion</key>
@@ -10,19 +10,19 @@
10
10
  <dict>
11
11
  <key>cdhash</key>
12
12
  <data>
13
- GEGLZHkdBbt8yddasYejQf7FSL8=
13
+ sBvBMWV4PeVTUwSH29ZrcD5egCE=
14
14
  </data>
15
15
  <key>requirement</key>
16
- <string>cdhash H"18418b64791d05bb7cc9d75ab187a341fec548bf"</string>
16
+ <string>cdhash H"b01bc13165783de553530487dbd66b703e5e8021"</string>
17
17
  </dict>
18
18
  <key>Helpers/aishell-run-supervisor</key>
19
19
  <dict>
20
20
  <key>cdhash</key>
21
21
  <data>
22
- UsUJmoJ+k5ckLoHZA3RWjN52eNc=
22
+ Ti7koED34tDM60MEjSGhA+c8P74=
23
23
  </data>
24
24
  <key>requirement</key>
25
- <string>cdhash H"52c5099a827e9397242e81d90374568cde7678d7"</string>
25
+ <string>cdhash H"4e2ee4a040f7e2d0cceb43048d21a103e73c3fbe"</string>
26
26
  </dict>
27
27
  </dict>
28
28
  <key>rules</key>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quolu/aishell",
3
- "version": "0.4.5",
3
+ "version": "0.4.7",
4
4
  "description": "A native macOS state runtime with high-density MCP tools for AI development",
5
5
  "license": "Apache-2.0",
6
6
  "author": "quolu",
@@ -37,7 +37,8 @@
37
37
  "scripts": {
38
38
  "build:npm": "node scripts/prepare-npm-release.mjs",
39
39
  "prepack": "npm run build:npm",
40
- "test": "swift test",
40
+ "test": "swift test && npm run test:release-gate",
41
+ "test:release-gate": "node --test scripts/verify-release-commit.test.mjs",
41
42
  "test:package": "npm run build:npm && node scripts/verify-npm-package.mjs",
42
43
  "verify:release-commit": "node scripts/verify-release-commit.mjs",
43
44
  "prepublishOnly": "npm run verify:release-commit && npm run test:package"