@quolu/aishell 0.4.11 → 0.4.12
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 +39 -8
- package/README.md +43 -9
- package/dist/AIShell.app/Contents/Helpers/aishell-mcp +0 -0
- package/dist/AIShell.app/Contents/Helpers/aishell-run-supervisor +0 -0
- package/dist/AIShell.app/Contents/Info.plist +2 -2
- package/dist/AIShell.app/Contents/MacOS/AIShell +0 -0
- package/dist/AIShell.app/Contents/_CodeSignature/CodeResources +4 -4
- package/package.json +13 -5
package/README.ja.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src=".github/og.png" alt="AIShell — AI開発へDirect OS contextを提供" width="100%">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/kitepon/aishell/main/.github/og.png" alt="AIShell — AI開発へDirect OS contextを提供" width="100%">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
# AIShell
|
|
6
6
|
|
|
7
|
-
[](https://github.com/kitepon/aishell/actions/workflows/ci.yml)
|
|
8
8
|
[](https://www.npmjs.com/package/@quolu/aishell)
|
|
9
9
|

|
|
10
10
|

|
|
@@ -16,9 +16,10 @@
|
|
|
16
16
|
[kitepon.dev](https://kitepon.dev/)を運営する[クオ(@QLyun35332)](https://x.com/QLyun35332)が
|
|
17
17
|
開発・メンテナンスしています。
|
|
18
18
|
|
|
19
|
-
**所有境界:** 本repositoryはApple Silicon Mac向け
|
|
20
|
-
|
|
21
|
-
[dotagents](https://github.com/kitepon
|
|
19
|
+
**所有境界:** 本repositoryはApple Silicon Mac向けruntimeのinstall、設定、
|
|
20
|
+
state/schema migration、診断、復旧、更新、releaseを単独で所有します。
|
|
21
|
+
[dotagents](https://github.com/kitepon/dotagents)は公開contractを使って製品横断wireと
|
|
22
|
+
互換性を統合しますが、AIShellの内部運用を制御しません。
|
|
22
23
|
|
|
23
24
|
AIShellは許可root、file identity、filesystem照合state、直接起動したprocess、完全log、artifactを所有する。reasoning、thread、compaction、sub-agent、汎用terminalはAI hostの責務として残す。
|
|
24
25
|
|
|
@@ -117,7 +118,7 @@ aishell-open
|
|
|
117
118
|
## Sourceからbuild
|
|
118
119
|
|
|
119
120
|
```sh
|
|
120
|
-
git clone https://github.com/kitepon
|
|
121
|
+
git clone https://github.com/kitepon/aishell.git
|
|
121
122
|
cd aishell
|
|
122
123
|
swift test
|
|
123
124
|
scripts/package-app.sh release
|
|
@@ -171,6 +172,35 @@ full profileにはfile一覧・read、SHA-256競合検出付きatomic update、c
|
|
|
171
172
|
- 初回workspace entryはbounded previewで、後続deltaはcursor pageになる。
|
|
172
173
|
- Developer ID署名とnotarizationは未設定。
|
|
173
174
|
|
|
175
|
+
## 運用・更新・release
|
|
176
|
+
|
|
177
|
+
単独installの更新は初回と同じ公式npm経路を使い、新版の管理アプリを開く。
|
|
178
|
+
|
|
179
|
+
```sh
|
|
180
|
+
npm install -g @quolu/aishell@latest
|
|
181
|
+
aishell-open
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
未設定・停止中の復旧入口は`runtime_status`と`runtime_open_manager`である。
|
|
185
|
+
工場consumerは専用`AISHELL_TOOL_PROFILE=factory` MCP surfaceから
|
|
186
|
+
`factory_diagnostics`を呼ぶ。schemaとprivacy境界は
|
|
187
|
+
[製品側diagnostics contract](https://github.com/kitepon/aishell/blob/main/docs/factory-diagnostics.md)が正である。
|
|
188
|
+
|
|
189
|
+
releaseでは`AIShellProduct.version`と`package.json`を一致させ、release記録を
|
|
190
|
+
[`docs/archive/releases/`](https://github.com/kitepon/aishell/tree/main/docs/archive/releases)へ追加して、次を実行する。
|
|
191
|
+
|
|
192
|
+
```sh
|
|
193
|
+
npm test
|
|
194
|
+
npm run test:package
|
|
195
|
+
git fetch origin
|
|
196
|
+
npm run verify:release-commit
|
|
197
|
+
npm publish --access public
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
release gateはdirty treeと既定branchへ未着地のcommitを拒否する。publish後は対応する
|
|
201
|
+
GitHub Releaseを作り、`@quolu/aishell@latest`を再installしてMCP initializeと
|
|
202
|
+
`factory_diagnostics`をsmokeする。公開済みversionの正本はGitHub Releasesである。
|
|
203
|
+
|
|
174
204
|
## 開発検証
|
|
175
205
|
|
|
176
206
|
```sh
|
|
@@ -189,9 +219,10 @@ scripts/package-app.sh release
|
|
|
189
219
|
|
|
190
220
|
## ContributionとSecurity
|
|
191
221
|
|
|
192
|
-
変更提案前に[CONTRIBUTING.md](CONTRIBUTING.md)を確認してほしい。脆弱性はpublic issueへ書かず、[SECURITY.md](SECURITY.md)のprivate経路で報告する。
|
|
222
|
+
変更提案前に[CONTRIBUTING.md](https://github.com/kitepon/aishell/blob/main/CONTRIBUTING.md)を確認してほしい。脆弱性はpublic issueへ書かず、[SECURITY.md](https://github.com/kitepon/aishell/blob/main/SECURITY.md)のprivate経路で報告する。
|
|
193
223
|
|
|
194
|
-
|
|
224
|
+
現役文書の索引は[`docs/README.md`](https://github.com/kitepon/aishell/blob/main/docs/README.md)、過去のrelease notesは
|
|
225
|
+
[`docs/archive/releases/`](https://github.com/kitepon/aishell/tree/main/docs/archive/releases)に置く。
|
|
195
226
|
|
|
196
227
|
## License
|
|
197
228
|
|
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src=".github/og.png" alt="AIShell — Direct OS context for AI development" width="100%">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/kitepon/aishell/main/.github/og.png" alt="AIShell — Direct OS context for AI development" width="100%">
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
# AIShell
|
|
6
6
|
|
|
7
|
-
[](https://github.com/kitepon/aishell/actions/workflows/ci.yml)
|
|
8
8
|
[](https://www.npmjs.com/package/@quolu/aishell)
|
|
9
9
|

|
|
10
10
|

|
|
@@ -15,10 +15,12 @@
|
|
|
15
15
|
|
|
16
16
|
Built and maintained by [Quo](https://x.com/QLyun35332) at [kitepon.dev](https://kitepon.dev/en).
|
|
17
17
|
|
|
18
|
-
**Ownership boundary:** this repository owns the macOS Apple Silicon
|
|
19
|
-
runtime
|
|
20
|
-
|
|
21
|
-
|
|
18
|
+
**Ownership boundary:** this repository owns the standalone macOS Apple Silicon
|
|
19
|
+
runtime, including installation, configuration, state/schema migration,
|
|
20
|
+
diagnostics, recovery, updates, and releases.
|
|
21
|
+
[dotagents](https://github.com/kitepon/dotagents) consumes the public contract
|
|
22
|
+
for cross-product wiring and compatibility; it does not control AIShell's
|
|
23
|
+
internal operation.
|
|
22
24
|
|
|
23
25
|
AIShell owns the OS-facing state below the model: allowed roots, file identity, filesystem reconciliation, directly launched processes, complete logs, and retained artifacts. The AI host remains responsible for reasoning, threads, compaction, sub-agents, and general-purpose terminal work.
|
|
24
26
|
|
|
@@ -115,7 +117,7 @@ The current experimental build is not yet Developer ID signed or notarized.
|
|
|
115
117
|
## Build from source
|
|
116
118
|
|
|
117
119
|
```sh
|
|
118
|
-
git clone https://github.com/kitepon
|
|
120
|
+
git clone https://github.com/kitepon/aishell.git
|
|
119
121
|
cd aishell
|
|
120
122
|
swift test
|
|
121
123
|
scripts/package-app.sh release
|
|
@@ -171,6 +173,37 @@ The full profile includes file listing and reads, atomic SHA-256-guarded updates
|
|
|
171
173
|
- Initial workspace entries are a bounded preview; later deltas are cursor-paged.
|
|
172
174
|
- Developer ID signing and notarization are not yet configured.
|
|
173
175
|
|
|
176
|
+
## Operations, updates, and releases
|
|
177
|
+
|
|
178
|
+
Upgrade a standalone installation through the same official npm path used for
|
|
179
|
+
initial installation, then open the newly installed manager:
|
|
180
|
+
|
|
181
|
+
```sh
|
|
182
|
+
npm install -g @quolu/aishell@latest
|
|
183
|
+
aishell-open
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
`runtime_status` and `runtime_open_manager` are the recovery entrypoints for an
|
|
187
|
+
unconfigured or paused runtime. Factory consumers call `factory_diagnostics`
|
|
188
|
+
through the dedicated `AISHELL_TOOL_PROFILE=factory` MCP surface; its schema and
|
|
189
|
+
privacy boundary are owned by [the product contract](https://github.com/kitepon/aishell/blob/main/docs/factory-diagnostics.md).
|
|
190
|
+
|
|
191
|
+
For a release, keep `AIShellProduct.version` and `package.json` aligned, add the
|
|
192
|
+
release record under [`docs/archive/releases/`](https://github.com/kitepon/aishell/tree/main/docs/archive/releases), and run:
|
|
193
|
+
|
|
194
|
+
```sh
|
|
195
|
+
npm test
|
|
196
|
+
npm run test:package
|
|
197
|
+
git fetch origin
|
|
198
|
+
npm run verify:release-commit
|
|
199
|
+
npm publish --access public
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
The release gate rejects a dirty tree or a commit that has not landed on the
|
|
203
|
+
default branch. After publishing, create the matching GitHub Release, reinstall
|
|
204
|
+
`@quolu/aishell@latest`, and smoke MCP initialize plus `factory_diagnostics`.
|
|
205
|
+
GitHub Releases are the public record of shipped versions.
|
|
206
|
+
|
|
174
207
|
## Development
|
|
175
208
|
|
|
176
209
|
```sh
|
|
@@ -189,9 +222,10 @@ On the original verification machine, Xcode 26.6 and the installed CoreSimulator
|
|
|
189
222
|
|
|
190
223
|
## Contributing and security
|
|
191
224
|
|
|
192
|
-
See [CONTRIBUTING.md](CONTRIBUTING.md) before proposing a change. Please report vulnerabilities through the private process in [SECURITY.md](SECURITY.md), not through a public issue.
|
|
225
|
+
See [CONTRIBUTING.md](https://github.com/kitepon/aishell/blob/main/CONTRIBUTING.md) before proposing a change. Please report vulnerabilities through the private process in [SECURITY.md](https://github.com/kitepon/aishell/blob/main/SECURITY.md), not through a public issue.
|
|
193
226
|
|
|
194
|
-
|
|
227
|
+
The current documentation map is [`docs/README.md`](https://github.com/kitepon/aishell/blob/main/docs/README.md). Historical
|
|
228
|
+
release notes live in [`docs/archive/releases/`](https://github.com/kitepon/aishell/tree/main/docs/archive/releases).
|
|
195
229
|
|
|
196
230
|
## License
|
|
197
231
|
|
|
Binary file
|
|
Binary file
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
<key>CFBundlePackageType</key>
|
|
18
18
|
<string>APPL</string>
|
|
19
19
|
<key>CFBundleShortVersionString</key>
|
|
20
|
-
<string>0.4.
|
|
20
|
+
<string>0.4.12</string>
|
|
21
21
|
<key>CFBundleVersion</key>
|
|
22
|
-
<string>
|
|
22
|
+
<string>19</string>
|
|
23
23
|
<key>LSApplicationCategoryType</key>
|
|
24
24
|
<string>public.app-category.utilities</string>
|
|
25
25
|
<key>LSMinimumSystemVersion</key>
|
|
Binary file
|
|
@@ -10,19 +10,19 @@
|
|
|
10
10
|
<dict>
|
|
11
11
|
<key>cdhash</key>
|
|
12
12
|
<data>
|
|
13
|
-
|
|
13
|
+
uzkv8b/DrKQPJzoVL8NtTyIqqek=
|
|
14
14
|
</data>
|
|
15
15
|
<key>requirement</key>
|
|
16
|
-
<string>cdhash H"
|
|
16
|
+
<string>cdhash H"bb392ff1bfc3aca40f273a152fc36d4f222aa9e9"</string>
|
|
17
17
|
</dict>
|
|
18
18
|
<key>Helpers/aishell-run-supervisor</key>
|
|
19
19
|
<dict>
|
|
20
20
|
<key>cdhash</key>
|
|
21
21
|
<data>
|
|
22
|
-
|
|
22
|
+
0V5WoY6tV3Zqijm+8J8Zv0B6/Pw=
|
|
23
23
|
</data>
|
|
24
24
|
<key>requirement</key>
|
|
25
|
-
<string>cdhash H"
|
|
25
|
+
<string>cdhash H"d15e56a18ead57766a8a39bef09f19bf407afcfc"</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.
|
|
3
|
+
"version": "0.4.12",
|
|
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": {
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
},
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
|
-
"url": "git+https://github.com/kitepon
|
|
12
|
+
"url": "git+https://github.com/kitepon/aishell.git"
|
|
13
13
|
},
|
|
14
14
|
"bugs": {
|
|
15
|
-
"url": "https://github.com/kitepon
|
|
15
|
+
"url": "https://github.com/kitepon/aishell/issues"
|
|
16
16
|
},
|
|
17
|
-
"homepage": "https://github.com/kitepon
|
|
17
|
+
"homepage": "https://github.com/kitepon/aishell#readme",
|
|
18
18
|
"keywords": [
|
|
19
19
|
"mcp",
|
|
20
20
|
"macos",
|
|
@@ -40,8 +40,9 @@
|
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build:npm": "node scripts/prepare-npm-release.mjs",
|
|
42
42
|
"prepack": "npm run build:npm",
|
|
43
|
-
"test": "swift test && npm run test:release-gate",
|
|
43
|
+
"test": "swift test && npm run test:release-gate && npm run test:repository-contract",
|
|
44
44
|
"test:release-gate": "node --test scripts/verify-release-commit.test.mjs",
|
|
45
|
+
"test:repository-contract": "node --test scripts/repository-contract.test.mjs",
|
|
45
46
|
"test:package": "npm run build:npm && node scripts/verify-npm-package.mjs",
|
|
46
47
|
"verify:release-commit": "node scripts/verify-release-commit.mjs",
|
|
47
48
|
"prepublishOnly": "npm run verify:release-commit && npm run test:package"
|
|
@@ -49,6 +50,13 @@
|
|
|
49
50
|
"engines": {
|
|
50
51
|
"node": ">=18"
|
|
51
52
|
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"parse-srcset": "1.0.2",
|
|
55
|
+
"parse5": "^8.0.1",
|
|
56
|
+
"remark-gfm": "^4.0.1",
|
|
57
|
+
"remark-parse": "^11.0.0",
|
|
58
|
+
"unified": "^11.0.5"
|
|
59
|
+
},
|
|
52
60
|
"publishConfig": {
|
|
53
61
|
"access": "public"
|
|
54
62
|
}
|