@quolu/aishell 0.4.12 → 0.5.0

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
@@ -21,7 +21,7 @@ state/schema migration、診断、復旧、更新、releaseを単独で所有し
21
21
  [dotagents](https://github.com/kitepon/dotagents)は公開contractを使って製品横断wireと
22
22
  互換性を統合しますが、AIShellの内部運用を制御しません。
23
23
 
24
- AIShellは許可root、file identity、filesystem照合state、直接起動したprocess、完全log、artifactを所有する。reasoning、thread、compaction、sub-agent、汎用terminalはAI hostの責務として残す。
24
+ AIShellfile identity、filesystem照合state、直接起動したprocess、完全log、artifactを所有する。reasoning、thread、compaction、sub-agent、汎用terminalはAI hostの責務として残す。
25
25
 
26
26
  ## 30秒で試す
27
27
 
@@ -33,7 +33,7 @@ aishell-open
33
33
  codex mcp add aishell --env AISHELL_CAPABILITY_SET=expanded-v1 -- aishell-mcp
34
34
  ```
35
35
 
36
- 管理アプリでAIに許可するfolderを追加し、新しいCodex taskで次のように頼む。
36
+ フォルダの事前登録は不要。新しいCodex taskで対象フォルダを指定して実行する。
37
37
 
38
38
  ```text
39
39
  初回workspace contextはworkspace_snapshotで取得して。focused testはrun_checkで実行し、
@@ -49,8 +49,8 @@ summaryから省略された証拠だけartifact_readで読んで。
49
49
  | `search_context` | 直接起動した`rg` workerによるbudget付き検索context |
50
50
  | `run_check` | 直接process実行、主要diagnostic、完全stdout/stderr artifact |
51
51
  | `artifact_read` | 保持artifactのrange、tail、pattern周辺read |
52
- | `runtime_status` | 未設定・停止中も含む許可root、停止、worktree、次操作の状態取得 |
53
- | `runtime_open_manager` | root追加またはAI操作再開のため管理アプリを開く |
52
+ | `runtime_status` | 停止状態、相対パスの基準、次操作の状態取得 |
53
+ | `runtime_open_manager` | AI操作の停止・再開のため管理アプリを開く |
54
54
 
55
55
  MCP serverへ`AISHELL_CAPABILITY_SET=expanded-v1`を設定すると、candidate surfaceへ明示opt-inできる。
56
56
  高密度development 9本と復旧control 2本を公開し、`run_observe`、`workspace_wait`、
@@ -79,7 +79,7 @@ statelessな連携では、モデルがworkspaceを何度もscanし、command出
79
79
  | Context | budget・cursor付きstructured result | stdoutを手動または暗黙に切り詰める |
80
80
  | Execution | executable URL、引数、cwd、lifecycleを分離 | shellが1本のcommand文字列を評価 |
81
81
  | Evidence | 完全stdout/stderrを期限付きhandleで保持 | response truncation時に証拠が失われやすい |
82
- | Scope | 人が管理する許可rootと明示的stop状態 | 周囲のshellとhost policyに依存 |
82
+ | Scope | macOSのアクセス権と明示的stop状態 | 周囲のshellとhost policyに依存 |
83
83
 
84
84
  AIShellはsandboxではなく、任意code実行を安全化しない。process railの目的はtyped executionと観測可能なlifecycleを維持することであり、改名binaryや許可workerが起動する子processを阻止することではない。
85
85
 
@@ -89,7 +89,7 @@ AIShellはsandboxではなく、任意code実行を安全化しない。process
89
89
  flowchart LR
90
90
  Host[AI host<br/>reasoning · threads · compaction] --> MCP[AIShellMCP<br/>MCP 2025-11-25]
91
91
  MCP --> Core[AIShellCore]
92
- Core --> State[Allowed roots · file identity<br/>FSEvents + reconciliation]
92
+ Core --> State[File identity<br/>FSEvents + reconciliation]
93
93
  Core --> Process[Direct process lifecycle<br/>stdout · stderr · timeout]
94
94
  Core --> Evidence[Retained evidence<br/>artifacts · freshness]
95
95
  Process --> Workers[git · rg · compiler · tests]
@@ -127,7 +127,7 @@ open build/AIShell.app
127
127
 
128
128
  MCP実行ファイルは`build/AIShell.app/Contents/Helpers/aishell-mcp`へ同梱される。
129
129
 
130
- 管理アプリの「許可rootを追加」でAIに操作させるfolderを選ぶ。許可済みGit repositoryの`.git/worktrees`へ正式登録され、双方の管理情報が一致するworktreeは自動的に実効rootへ加わる。
130
+ フォルダ登録は不要。絶対パスは指定した場所を、相対パスと省略時はMCP起動ディレクトリを基準にする。Git worktreeも直接指定でき、旧設定の許可フォルダ一覧は無視される。
131
131
 
132
132
  ## 別のAI hostへ接続
133
133
 
@@ -181,7 +181,7 @@ npm install -g @quolu/aishell@latest
181
181
  aishell-open
182
182
  ```
183
183
 
184
- 未設定・停止中の復旧入口は`runtime_status`と`runtime_open_manager`である。
184
+ 停止中の復旧入口は`runtime_status`と`runtime_open_manager`である。
185
185
  工場consumerは専用`AISHELL_TOOL_PROFILE=factory` MCP surfaceから
186
186
  `factory_diagnostics`を呼ぶ。schemaとprivacy境界は
187
187
  [製品側diagnostics contract](https://github.com/kitepon/aishell/blob/main/docs/factory-diagnostics.md)が正である。
package/README.md CHANGED
@@ -22,7 +22,7 @@ diagnostics, recovery, updates, and releases.
22
22
  for cross-product wiring and compatibility; it does not control AIShell's
23
23
  internal operation.
24
24
 
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.
25
+ AIShell owns the OS-facing state below the model: 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.
26
26
 
27
27
  ## Try it in 30 seconds
28
28
 
@@ -34,7 +34,7 @@ aishell-open
34
34
  codex mcp add aishell --env AISHELL_CAPABILITY_SET=expanded-v1 -- aishell-mcp
35
35
  ```
36
36
 
37
- In the manager app, add the folders the AI may access. Start a new Codex task and try:
37
+ フォルダの事前登録は不要です。新しいCodex taskで対象フォルダを指定して実行します。
38
38
 
39
39
  ```text
40
40
  Use workspace_snapshot for the initial workspace context. Run the focused tests with
@@ -50,8 +50,8 @@ The default profile exposes five high-density development tools plus two always-
50
50
  | `search_context` | Budgeted lexical context from a directly launched `rg` worker, scoped to a directory or one regular file; the expanded capability also provides cursor-bound semantic definition/reference/symbol queries without lexical fallback |
51
51
  | `run_check` | Direct process execution, primary diagnostics, and complete stdout/stderr artifacts |
52
52
  | `artifact_read` | Range, tail, and pattern-centered reads from retained artifacts; the expanded capability also searches and compares finalized managed-run artifacts |
53
- | `runtime_status` | Allowed-root, pause, worktree, and next-action state, including while paused or unconfigured |
54
- | `runtime_open_manager` | Open the manager app to add roots or resume AI operations |
53
+ | `runtime_status` | Pause, relative-path base, and next-action state |
54
+ | `runtime_open_manager` | Open the manager app to pause or resume AI operations |
55
55
 
56
56
  Set `AISHELL_CAPABILITY_SET=expanded-v1` on the MCP server process to opt in to the candidate surface. It exposes nine high-density development tools plus the two recovery controls. The added tools are `run_observe`, `workspace_wait`, `change_impact`, and `apply_change_set`; existing tools gain closed managed-run, artifact query, semantic search, project-profile, and Git branch/worktree modes. Cross-run artifact operations require an explicit project path and reject live, expired, legacy-unbound, or different-project evidence instead of silently falling back to partial logs.
57
57
 
@@ -77,7 +77,7 @@ Typical stateless integrations repeatedly ask the model to rediscover workspace
77
77
  | Context | Bounded, cursor-based structured results | Unbounded or manually truncated stdout |
78
78
  | Execution | Executable URL, arguments, working directory, and lifecycle remain separate | A shell evaluates one command string |
79
79
  | Evidence | Complete stdout/stderr retained behind expiring handles | Evidence often disappears when the response is truncated |
80
- | Scope | Human-managed allowed roots and explicit stop state | Depends on the surrounding shell and host policy |
80
+ | Scope | macOS access permissions and explicit stop state | Depends on the surrounding shell and host policy |
81
81
 
82
82
  AIShell is not a sandbox and does not make arbitrary code execution safe. Its process rails exist to preserve typed execution and observable lifecycle—not to stop renamed binaries or child processes launched by an allowed worker.
83
83
 
@@ -87,7 +87,7 @@ AIShell is not a sandbox and does not make arbitrary code execution safe. Its pr
87
87
  flowchart LR
88
88
  Host[AI host<br/>reasoning · threads · compaction] --> MCP[AIShellMCP<br/>MCP 2025-11-25]
89
89
  MCP --> Core[AIShellCore]
90
- Core --> State[Allowed roots · file identity<br/>FSEvents + reconciliation]
90
+ Core --> State[File identity<br/>FSEvents + reconciliation]
91
91
  Core --> Process[Direct process lifecycle<br/>stdout · stderr · timeout]
92
92
  Core --> Evidence[Retained evidence<br/>artifacts · freshness]
93
93
  Process --> Workers[git · rg · compiler · tests]
@@ -126,7 +126,7 @@ open build/AIShell.app
126
126
 
127
127
  The MCP executable is bundled at `build/AIShell.app/Contents/Helpers/aishell-mcp`.
128
128
 
129
- After opening the app, use **Add Allowed Root** to select the folders AIShell may access. A Git worktree registered under an allowed repository is recognized automatically when both sides of the worktree metadata agree.
129
+ フォルダ登録は不要です。絶対パスは指定した場所を、相対パスと省略時はMCP起動ディレクトリを基準にします。Git worktreeも直接指定できます。旧設定の許可フォルダ一覧は無視されます。
130
130
 
131
131
  ## Connect another AI host
132
132
 
@@ -184,7 +184,7 @@ aishell-open
184
184
  ```
185
185
 
186
186
  `runtime_status` and `runtime_open_manager` are the recovery entrypoints for an
187
- unconfigured or paused runtime. Factory consumers call `factory_diagnostics`
187
+ paused runtime. Factory consumers call `factory_diagnostics`
188
188
  through the dedicated `AISHELL_TOOL_PROFILE=factory` MCP surface; its schema and
189
189
  privacy boundary are owned by [the product contract](https://github.com/kitepon/aishell/blob/main/docs/factory-diagnostics.md).
190
190
 
@@ -17,9 +17,9 @@
17
17
  <key>CFBundlePackageType</key>
18
18
  <string>APPL</string>
19
19
  <key>CFBundleShortVersionString</key>
20
- <string>0.4.12</string>
20
+ <string>0.5.0</string>
21
21
  <key>CFBundleVersion</key>
22
- <string>19</string>
22
+ <string>20</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
- uzkv8b/DrKQPJzoVL8NtTyIqqek=
13
+ YtRYGFYE+Yh3gPk+NxMYVUyUi6M=
14
14
  </data>
15
15
  <key>requirement</key>
16
- <string>cdhash H"bb392ff1bfc3aca40f273a152fc36d4f222aa9e9"</string>
16
+ <string>cdhash H"62d458185604f9887780f93e371318554c948ba3"</string>
17
17
  </dict>
18
18
  <key>Helpers/aishell-run-supervisor</key>
19
19
  <dict>
20
20
  <key>cdhash</key>
21
21
  <data>
22
- 0V5WoY6tV3Zqijm+8J8Zv0B6/Pw=
22
+ TcWgD4ePO0zxS53P4eI9iGT41LE=
23
23
  </data>
24
24
  <key>requirement</key>
25
- <string>cdhash H"d15e56a18ead57766a8a39bef09f19bf407afcfc"</string>
25
+ <string>cdhash H"4dc5a00f878f3b4cf14b9dcfe1e23d8864f8d4b1"</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.12",
3
+ "version": "0.5.0",
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": {