@quolu/aishell 0.4.8 → 0.4.10
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 +8 -4
- package/README.md +7 -4
- 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 +1 -1
- package/dist/AIShell.app/Contents/MacOS/AIShell +0 -0
- package/dist/AIShell.app/Contents/_CodeSignature/CodeResources +4 -4
- package/package.json +1 -1
package/README.ja.md
CHANGED
|
@@ -29,7 +29,7 @@ Apple Silicon Mac、macOS 15以降が必要。
|
|
|
29
29
|
```sh
|
|
30
30
|
npm install -g @quolu/aishell
|
|
31
31
|
aishell-open
|
|
32
|
-
codex mcp add aishell --
|
|
32
|
+
codex mcp add aishell --env AISHELL_CAPABILITY_SET=expanded-v1 -- aishell-mcp
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
管理アプリでAIに許可するfolderを追加し、新しいCodex taskで次のように頼む。
|
|
@@ -59,12 +59,15 @@ semantic search、project profile、Git branch/worktree modeが加わる。
|
|
|
59
59
|
Codexでは次のように登録する。
|
|
60
60
|
|
|
61
61
|
```sh
|
|
62
|
-
codex mcp add aishell --env AISHELL_CAPABILITY_SET=expanded-v1 --
|
|
62
|
+
codex mcp add aishell --env AISHELL_CAPABILITY_SET=expanded-v1 -- aishell-mcp
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
未知値または空の`AISHELL_CAPABILITY_SET`と`AISHELL_TOOL_PROFILE`はtyped errorでstartup停止し、
|
|
66
66
|
別profileへ黙ってfallbackしない。
|
|
67
67
|
|
|
68
|
+
lexical `search_context`は`ranking`を省略できる。workspace cursorなしではtest path、
|
|
69
|
+
`changed_since_cursor`ありでは変更pathとtest pathを優先する。`changed`を明示する場合だけcursorを必須とする。
|
|
70
|
+
|
|
68
71
|
## なぜAIShellか
|
|
69
72
|
|
|
70
73
|
statelessな連携では、モデルがworkspaceを何度もscanし、command出力から状態を再構成しやすい。AIShellは状態を持つOS側の仕事をモデルより下へ置き、後続turnが全再scanではなくdeltaと一次証拠を要求できるようにする。
|
|
@@ -127,10 +130,11 @@ MCP実行ファイルは`build/AIShell.app/Contents/Helpers/aishell-mcp`へ同
|
|
|
127
130
|
|
|
128
131
|
## 別のAI hostへ接続
|
|
129
132
|
|
|
130
|
-
|
|
133
|
+
global npm install後は`PATH`上のcommand名とexpanded development surfaceを登録する。
|
|
131
134
|
|
|
132
135
|
```sh
|
|
133
|
-
codex mcp add aishell --
|
|
136
|
+
codex mcp add aishell --env AISHELL_CAPABILITY_SET=expanded-v1 -- aishell-mcp
|
|
137
|
+
claude mcp add --scope user aishell --env AISHELL_CAPABILITY_SET=expanded-v1 -- aishell-mcp
|
|
134
138
|
codex mcp get aishell
|
|
135
139
|
```
|
|
136
140
|
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ Requires an Apple Silicon Mac running macOS 15 or later.
|
|
|
29
29
|
```sh
|
|
30
30
|
npm install -g @quolu/aishell
|
|
31
31
|
aishell-open
|
|
32
|
-
codex mcp add aishell --
|
|
32
|
+
codex mcp add aishell --env AISHELL_CAPABILITY_SET=expanded-v1 -- aishell-mcp
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
In the manager app, add the folders the AI may access. Start a new Codex task and try:
|
|
@@ -56,11 +56,13 @@ Set `AISHELL_CAPABILITY_SET=expanded-v1` on the MCP server process to opt in to
|
|
|
56
56
|
For Codex, register the expanded surface explicitly:
|
|
57
57
|
|
|
58
58
|
```sh
|
|
59
|
-
codex mcp add aishell --env AISHELL_CAPABILITY_SET=expanded-v1 --
|
|
59
|
+
codex mcp add aishell --env AISHELL_CAPABILITY_SET=expanded-v1 -- aishell-mcp
|
|
60
60
|
```
|
|
61
61
|
|
|
62
62
|
Unknown or empty `AISHELL_CAPABILITY_SET` and `AISHELL_TOOL_PROFILE` values fail startup with typed errors; they never fall back to another profile.
|
|
63
63
|
|
|
64
|
+
For lexical `search_context`, omitting `ranking` is valid: requests without a workspace cursor prioritize tests, while requests with `changed_since_cursor` prioritize changed paths and tests. Explicit `changed` ranking still requires that cursor.
|
|
65
|
+
|
|
64
66
|
`AISHELL_TOOL_PROFILE=factory` is a separate, one-tool surface for factory reporters rather than development work. It exposes only `factory_diagnostics`, a path- and activity-free native readiness report.
|
|
65
67
|
|
|
66
68
|
## Why AIShell
|
|
@@ -126,10 +128,11 @@ After opening the app, use **Add Allowed Root** to select the folders AIShell ma
|
|
|
126
128
|
|
|
127
129
|
## Connect another AI host
|
|
128
130
|
|
|
129
|
-
For a
|
|
131
|
+
For a global npm installation, register the executable name from `PATH` and the expanded development surface:
|
|
130
132
|
|
|
131
133
|
```sh
|
|
132
|
-
codex mcp add aishell --
|
|
134
|
+
codex mcp add aishell --env AISHELL_CAPABILITY_SET=expanded-v1 -- aishell-mcp
|
|
135
|
+
claude mcp add --scope user aishell --env AISHELL_CAPABILITY_SET=expanded-v1 -- aishell-mcp
|
|
133
136
|
codex mcp get aishell
|
|
134
137
|
```
|
|
135
138
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -10,19 +10,19 @@
|
|
|
10
10
|
<dict>
|
|
11
11
|
<key>cdhash</key>
|
|
12
12
|
<data>
|
|
13
|
-
|
|
13
|
+
FNwK6EK/vUk8zWyWBn7IN9IzYQ4=
|
|
14
14
|
</data>
|
|
15
15
|
<key>requirement</key>
|
|
16
|
-
<string>cdhash H"
|
|
16
|
+
<string>cdhash H"14dc0ae842bfbd493ccd6c96067ec837d233610e"</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
|
+
snu2dSdhWFLeVr4U/DV5eTlS2eI=
|
|
23
23
|
</data>
|
|
24
24
|
<key>requirement</key>
|
|
25
|
-
<string>cdhash H"
|
|
25
|
+
<string>cdhash H"b27bb67527615852de56be14fc3579793952d9e2"</string>
|
|
26
26
|
</dict>
|
|
27
27
|
</dict>
|
|
28
28
|
<key>rules</key>
|