openshain 0.2.0 → 0.3.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openshain",
3
- "version": "0.2.0",
3
+ "version": "0.3.1",
4
4
  "description": "Reference CLI of the openshain agent harness",
5
5
  "keywords": [
6
6
  "openshain",
@@ -48,10 +48,10 @@
48
48
  },
49
49
  "dependencies": {
50
50
  "@modelcontextprotocol/sdk": "1.30.0",
51
- "@openshain/agent": "0.2.0",
52
- "@openshain/core": "0.2.0",
53
- "@openshain/mcp": "0.2.0",
54
- "@openshain/tools": "0.2.0",
51
+ "@openshain/agent": "0.3.1",
52
+ "@openshain/core": "0.3.1",
53
+ "@openshain/mcp": "0.3.1",
54
+ "@openshain/tools": "0.3.1",
55
55
  "ink": "7.1.1",
56
56
  "react": "19.2.8"
57
57
  },
package/src/bin.ts CHANGED
@@ -1,14 +1,12 @@
1
1
  #!/usr/bin/env node
2
- import { createInterface } from "node:readline/promises";
3
2
  import { parseArgs } from "node:util";
4
3
  import { anthropicProvider, openaiCompatibleProvider } from "@openshain/agent";
5
4
  import { isOpenshainError, type RuntimeProviders } from "@openshain/core";
6
5
  import { standardTools } from "@openshain/tools";
7
6
  import { init } from "./commands/init.ts";
8
7
  import { mcp } from "./commands/mcp.ts";
9
- import { run } from "./commands/run.ts";
10
8
  import { toolsList } from "./commands/tools.ts";
11
- import { workList, workResume, workShow } from "./commands/work.ts";
9
+ import { workList, workShow } from "./commands/work.ts";
12
10
  import { plain } from "./format.ts";
13
11
  import { errorLabel } from "./labels.ts";
14
12
  import { startTui } from "./tui/index.ts";
@@ -17,11 +15,9 @@ import { findWorkspace } from "./workspace.ts";
17
15
  const USAGE = `使い方:
18
16
  openshain 端末で対話を始める
19
17
  openshain init openshain.yaml のひな型を書く
20
- openshain run "<依頼>" 依頼を Work として進める
21
18
  openshain tools list 使える Tool の一覧
22
19
  openshain work list Work の一覧
23
20
  openshain work show <id> Work の詳細
24
- openshain work resume <id> 途中で止まった Work を続ける
25
21
  openshain mcp MCP Server を stdio で起動する
26
22
 
27
23
  --workspace <dir> 起点のディレクトリ。省略時はカレントディレクトリ
@@ -67,17 +63,6 @@ async function main(argv: string[]): Promise<number> {
67
63
  case "init":
68
64
  await init({ workspaceRoot: values.workspace ?? process.cwd(), write });
69
65
  return 0;
70
- case "run": {
71
- const objective = rest.join(" ").trim();
72
- if (!objective) {
73
- write('依頼の文を指定してください。openshain run "今月の経理を進めて" のように。');
74
- return 2;
75
- }
76
- const workspaceRoot = await findWorkspace(values.workspace ?? process.cwd());
77
- return withTerminal((ask) =>
78
- run({ workspaceRoot, providers, objective, write, ...(ask && { ask }) }),
79
- );
80
- }
81
66
  case "mcp": {
82
67
  const workspaceRoot = await findWorkspace(values.workspace ?? process.cwd());
83
68
  await mcp({ workspaceRoot, providers });
@@ -95,7 +80,7 @@ async function main(argv: string[]): Promise<number> {
95
80
  case "work": {
96
81
  const sub = rest[0];
97
82
  const id = rest[1] ?? "";
98
- if (!(sub === "list" || ((sub === "show" || sub === "resume") && id))) {
83
+ if (!(sub === "list" || (sub === "show" && id))) {
99
84
  write(USAGE);
100
85
  return 2;
101
86
  }
@@ -104,13 +89,8 @@ async function main(argv: string[]): Promise<number> {
104
89
  await workList({ workspaceRoot, write });
105
90
  return 0;
106
91
  }
107
- if (sub === "show") {
108
- await workShow({ workspaceRoot, id, write });
109
- return 0;
110
- }
111
- return withTerminal((ask) =>
112
- workResume({ workspaceRoot, providers, id, write, ...(ask && { ask }) }),
113
- );
92
+ await workShow({ workspaceRoot, id, write });
93
+ return 0;
114
94
  }
115
95
  default:
116
96
  write(`不明なコマンド ${command}`);
@@ -119,20 +99,6 @@ async function main(argv: string[]): Promise<number> {
119
99
  }
120
100
  }
121
101
 
122
- /** Runs `fn` with a way to ask the person when a terminal is there to answer; otherwise without one. */
123
- async function withTerminal(
124
- fn: (ask?: (question: string) => Promise<string>) => Promise<number>,
125
- ): Promise<number> {
126
- // Without a terminal there is no one to answer; the work waits instead.
127
- if (process.stdin.isTTY !== true || process.stdout.isTTY !== true) return fn();
128
- const rl = createInterface({ input: process.stdin, output: process.stdout });
129
- try {
130
- return await fn((question) => rl.question(`${plain(question)}\n> `));
131
- } finally {
132
- rl.close();
133
- }
134
- }
135
-
136
102
  main(process.argv.slice(2)).then(
137
103
  (code) => process.exit(code),
138
104
  (err: unknown) => {
@@ -52,7 +52,7 @@ export const MCP_TEMPLATE = `${JSON.stringify(
52
52
  /** What an outside agent reads before working in the folder. Codex reads AGENTS.md; Claude Code reads it through CLAUDE.md. */
53
53
  export const AGENTS_TEMPLATE = `# この会社フォルダで働くエージェントへ
54
54
 
55
- このフォルダは openshain の Company Workspace です。この指示は、Claude Code や Codex のような外部のエージェントが MCP 経由でこのフォルダを扱うときのものです。\`openshain run\` Runtime 自身が動くときは、Work の作成と完了を Runtime が行うので、下の work_* の手順は当てはまりません。
55
+ このフォルダは openshain の Company Workspace です。この指示は、Claude Code や Codex のような外部のエージェントが MCP 経由でこのフォルダを扱うときのものです。openshain の対話型 CLI も同じ手順で Runtime を使います。
56
56
 
57
57
  会社のファイルの読み書きと集計は openshain の MCP tool で行います。Claude Code や Codex 自身の Read、Write、Bash は会社のファイルには使いません。Runtime を通らなかった操作は記録に残らないためです。
58
58
 
@@ -110,7 +110,7 @@ export async function init({ workspaceRoot, write }: InitOptions): Promise<void>
110
110
  }
111
111
  }
112
112
  write(
113
- "company と principal を自分の会社に合わせ、api_key_env に書いた環境変数を設定してから openshain run を実行してください。",
113
+ "company と principal を自分の会社に合わせ、api_key_env に書いた環境変数を設定してから openshain を実行してください。",
114
114
  );
115
115
  }
116
116
 
@@ -123,10 +123,10 @@ async function addToMcpConfig(path: string): Promise<string> {
123
123
  try {
124
124
  parsed = JSON.parse(await readFile(path, "utf8"));
125
125
  } catch {
126
- return `${path} はすでにあり、JSON として読めないので変更しません。openshain を手で登録してください。`;
126
+ return `${path} はすでにあり、JSON として読めないので変更しません。openshain を手動で登録してください。`;
127
127
  }
128
128
  if (parsed === null || typeof parsed !== "object" || Array.isArray(parsed)) {
129
- return `${path} はすでにあり、形が違うので変更しません。openshain を手で登録してください。`;
129
+ return `${path} はすでにあり、形が違うので変更しません。openshain を手動で登録してください。`;
130
130
  }
131
131
  const config = parsed as { mcpServers?: unknown };
132
132
  const servers =
@@ -1,5 +1,10 @@
1
- import { ASK_USER, RUNTIME_PROVIDER_ID } from "@openshain/agent";
2
- import { createToolRegistry, loadConfig, type RuntimeProviders } from "@openshain/core";
1
+ import {
2
+ ASK_USER,
3
+ createToolRegistry,
4
+ loadConfig,
5
+ RUNTIME_PROVIDER_ID,
6
+ type RuntimeProviders,
7
+ } from "@openshain/core";
3
8
 
4
9
  export interface ToolsListOptions {
5
10
  workspaceRoot: string;
@@ -1,19 +1,15 @@
1
- import { pendingQuestions } from "@openshain/agent";
2
1
  import {
3
2
  type AnyEvent,
4
- createRuntime,
5
3
  type Event,
6
- isTerminal,
7
4
  parseWorkId,
8
- type RuntimeProviders,
9
- SESSION_WORK_TYPE,
5
+ pendingQuestions,
10
6
  type Work,
11
7
  WorkStore,
12
8
  } from "@openshain/core";
13
9
  import { describeInput, padDisplay } from "../format.ts";
14
10
  import { errorLabel, failureLabel, rejectionLabel, statusLabel } from "../labels.ts";
11
+ import { nextActor } from "../report.ts";
15
12
  import { formatUsage, summarizeUsage } from "../usage.ts";
16
- import { type DriveOptions, drive, nextActor } from "./run.ts";
17
13
 
18
14
  export interface WorkListOptions {
19
15
  workspaceRoot: string;
@@ -24,7 +20,7 @@ export interface WorkListOptions {
24
20
  export async function workList({ workspaceRoot, write }: WorkListOptions): Promise<void> {
25
21
  const { works, problems } = await new WorkStore(workspaceRoot).list();
26
22
  if (works.length === 0 && problems.length === 0) {
27
- write('Work はまだありません。openshain run "<依頼>" で始められます。');
23
+ write("Work はまだありません。openshain で社員エージェントに依頼すると始まります。");
28
24
  return;
29
25
  }
30
26
  for (const work of works) {
@@ -86,33 +82,6 @@ export function describeWork(work: Work, events: AnyEvent[]): string[] {
86
82
  return lines;
87
83
  }
88
84
 
89
- export interface WorkResumeOptions extends DriveOptions {
90
- workspaceRoot: string;
91
- providers: RuntimeProviders;
92
- id: string;
93
- }
94
-
95
- /** Continues a work that stopped before its end, answering its questions when the caller can. */
96
- export async function workResume(options: WorkResumeOptions): Promise<number> {
97
- const workId = parseWorkId(options.id);
98
- const work = await new WorkStore(options.workspaceRoot).get(workId);
99
- if (work.type === SESSION_WORK_TYPE) {
100
- options.write(
101
- `${work.id} は会話の記録のため、再開できません。会話は openshain で始め直してください。`,
102
- );
103
- return 1;
104
- }
105
- if (isTerminal(work.status)) {
106
- options.write(`${work.id} は${statusLabel(work.status)}のため、再開できません。`);
107
- return 1;
108
- }
109
- const runtime = await createRuntime({
110
- workspaceRoot: options.workspaceRoot,
111
- providers: options.providers,
112
- });
113
- return drive(runtime, workId, options);
114
- }
115
-
116
85
  /** One line per tool call, in log order, with its outcome when it was rejected or failed. */
117
86
  function toolLines(events: AnyEvent[]): string[] {
118
87
  const lines = new Map<string, string>();
package/src/index.ts CHANGED
@@ -8,22 +8,12 @@ export {
8
8
  MCP_TEMPLATE,
9
9
  } from "./commands/init.ts";
10
10
  export { type McpOptions, mcp } from "./commands/mcp.ts";
11
- export {
12
- type DriveOptions,
13
- drive,
14
- nextActor,
15
- type RunOptions,
16
- report,
17
- run,
18
- } from "./commands/run.ts";
19
11
  export { type ToolsListOptions, toolsList } from "./commands/tools.ts";
20
12
  export {
21
13
  describeWork,
22
14
  type WorkListOptions,
23
- type WorkResumeOptions,
24
15
  type WorkShowOptions,
25
16
  workList,
26
- workResume,
27
17
  workShow,
28
18
  } from "./commands/work.ts";
29
19
  export {
@@ -36,5 +26,6 @@ export {
36
26
  STATUS_LABELS,
37
27
  statusLabel,
38
28
  } from "./labels.ts";
29
+ export { nextActor, progressLine, report } from "./report.ts";
39
30
  export { formatUsage, summarizeUsage, type UsageSummary } from "./usage.ts";
40
31
  export { findWorkspace } from "./workspace.ts";
package/src/labels.ts CHANGED
@@ -1,5 +1,4 @@
1
- import type { FailureReason } from "@openshain/agent";
2
- import type { ErrorCode, ToolRejectionCode, WorkStatus } from "@openshain/core";
1
+ import type { ErrorCode, FailureReason, ToolRejectionCode, WorkStatus } from "@openshain/core";
3
2
 
4
3
  /** The words shown for a work's status. The log keeps the original value. */
5
4
  export const STATUS_LABELS: Record<WorkStatus, string> = {
@@ -28,6 +27,7 @@ export const REJECTION_LABELS: Record<ToolRejectionCode, string> = {
28
27
  reserved_path: "予約されたパス",
29
28
  outside_workspace: "workspace の外",
30
29
  invalid_path: "不正なパス",
30
+ limit_reached: "Tool 呼び出しの上限",
31
31
  };
32
32
 
33
33
  /** A heading for a runtime error, before the original message. */
@@ -1,66 +1,13 @@
1
- import { pendingQuestions, runWork } from "@openshain/agent";
2
1
  import {
3
2
  type AnyEvent,
4
- createRuntime,
5
3
  type Event,
6
- type Runtime,
7
- type RuntimeProviders,
4
+ pendingQuestions,
8
5
  type ToolContent,
9
6
  type Work,
10
- type WorkId,
11
7
  } from "@openshain/core";
12
- import { describeInput, truncate } from "../format.ts";
13
- import { failureLabel, rejectionLabel, statusLabel } from "../labels.ts";
14
- import { formatUsage, summarizeUsage } from "../usage.ts";
15
-
16
- export interface DriveOptions {
17
- write: (line: string) => void;
18
- /** Answers the model's questions. Without it, a question leaves the work waiting and the run ends. */
19
- ask?: (question: string) => Promise<string>;
20
- /** Stops the run. The work stays where it is and can be resumed. */
21
- signal?: AbortSignal;
22
- }
23
-
24
- export interface RunOptions extends DriveOptions {
25
- workspaceRoot: string;
26
- providers: RuntimeProviders;
27
- objective: string;
28
- }
29
-
30
- /** Creates a work for the request and drives it. Exit code 0 when the work completed. */
31
- export async function run(options: RunOptions): Promise<number> {
32
- const runtime = await createRuntime({
33
- workspaceRoot: options.workspaceRoot,
34
- providers: options.providers,
35
- });
36
- const work = await runtime.works.create({
37
- objective: options.objective,
38
- principal: runtime.config.principal.id,
39
- profession: runtime.config.profession.id,
40
- });
41
- options.write(`${work.id} を開始`);
42
- return drive(runtime, work.id, options);
43
- }
44
-
45
- /** Drives a work from its current state, printing one line per tool call, and closes with the report. */
46
- export async function drive(
47
- runtime: Runtime,
48
- workId: WorkId,
49
- options: DriveOptions,
50
- ): Promise<number> {
51
- const names = new Map<string, string>();
52
- const done = await runWork(runtime, workId, {
53
- ...(options.ask && { onInput: options.ask }),
54
- ...(options.signal && { signal: options.signal }),
55
- onEvent: (event) => {
56
- const line = progressLine(event, names);
57
- if (line) options.write(line);
58
- },
59
- });
60
- const events = await runtime.works.events(workId);
61
- for (const line of report(done, events)) options.write(line);
62
- return done.status === "completed" ? 0 : 1;
63
- }
8
+ import { describeInput, truncate } from "./format.ts";
9
+ import { failureLabel, rejectionLabel, statusLabel } from "./labels.ts";
10
+ import { formatUsage, summarizeUsage } from "./usage.ts";
64
11
 
65
12
  /** One line for a tool call, a rejection or a failure; nothing for the other events. `names` maps call ids to tool names. */
66
13
  export function progressLine(event: AnyEvent, names: Map<string, string>): string | undefined {
@@ -126,7 +73,7 @@ export function nextActor(work: Work): string {
126
73
  case "cancelled":
127
74
  return "次に動く人はいません。";
128
75
  case "waiting_input":
129
- return `次は利用者の番です。openshain work resume ${work.id} で質問に答えると続きます。`;
76
+ return `次は利用者の番です。openshain の会話で /work resume ${work.id} を実行し、続きを依頼すると質問に答えられます。`;
130
77
  case "waiting_approval":
131
78
  return "次は利用者の番です。承認が要ります。";
132
79
  case "failed":
@@ -1,17 +1,18 @@
1
- import { createSession, type Session, type TurnResult } from "@openshain/agent";
1
+ import { connectInMemory, createSession, type Session, type TurnResult } from "@openshain/agent";
2
2
  import {
3
- type AnyEvent,
4
- createRuntime,
5
3
  type Event,
6
- type Runtime,
4
+ loadConfig,
5
+ OpenshainError,
7
6
  type RuntimeProviders,
8
7
  type WorkId,
8
+ WorkStore,
9
9
  } from "@openshain/core";
10
- import { progressLine, report } from "../commands/run.ts";
10
+ import { createMcpServer } from "@openshain/mcp";
11
11
  import { toolsList } from "../commands/tools.ts";
12
- import { workList, workResume, workShow } from "../commands/work.ts";
12
+ import { workList, workShow } from "../commands/work.ts";
13
13
  import { plain } from "../format.ts";
14
14
  import { statusLabel } from "../labels.ts";
15
+ import { progressLine, report } from "../report.ts";
15
16
  import { LOGO_ROWS, VERSION } from "./banner.ts";
16
17
 
17
18
  /** logo and banner are the rows shown once when the screen opens: the wordmark, the version, the folder. */
@@ -66,13 +67,12 @@ export interface Controller {
66
67
  export interface ControllerOptions {
67
68
  workspaceRoot: string;
68
69
  providers: RuntimeProviders;
69
- runtime?: Runtime;
70
70
  }
71
71
 
72
72
  const HELP = [
73
73
  "/work list Work の一覧",
74
74
  "/work show <id> Work の詳細",
75
- "/work resume <id> 止まった Work を続ける",
75
+ "/work resume <id> 止まった Work を候補にする。次の依頼がそれに沿えば続ける",
76
76
  "/tools 使える Tool",
77
77
  "/quit 終わる",
78
78
  "↑ ↓ 前に送った行を入力欄に呼び戻す。いちばん下は新しい入力",
@@ -85,11 +85,36 @@ const HELP = [
85
85
  const QUESTION_WITHDRAWN =
86
86
  "the person stopped the work while it waited for their answer; the question is still pending and the work can be resumed";
87
87
 
88
- /** The state behind the screen: a session, the works it starts, and the lines to show. */
88
+ /**
89
+ * The state behind the screen: a session, the works it starts, and the lines to show. The
90
+ * conversation reaches the runtime only as an MCP client of the workspace's own server, the way
91
+ * any other agent does; the records are read directly for the closing lines.
92
+ */
89
93
  export async function createController(options: ControllerOptions): Promise<Controller> {
90
- const runtime =
91
- options.runtime ??
92
- (await createRuntime({ workspaceRoot: options.workspaceRoot, providers: options.providers }));
94
+ const { workspaceRoot, providers } = options;
95
+ const config = await loadConfig(workspaceRoot, { modelProviders: Object.keys(providers.models) });
96
+ if (!config.model) {
97
+ throw new OpenshainError(
98
+ "config",
99
+ "対話にはモデルが要ります。openshain.yaml に model を書いてください。Claude Code や Codex から使うだけなら要りません。",
100
+ );
101
+ }
102
+ const modelFactory = Object.hasOwn(providers.models, config.model.provider)
103
+ ? providers.models[config.model.provider]
104
+ : undefined;
105
+ if (!modelFactory) {
106
+ throw new OpenshainError("config", `unknown model provider "${config.model.provider}"`);
107
+ }
108
+ const model = modelFactory(config.model);
109
+ if (!model.describe().capabilities.tools) {
110
+ throw new OpenshainError(
111
+ "config",
112
+ `model ${config.model.provider}/${config.model.model} cannot call tools; openshain needs a model with tool support`,
113
+ );
114
+ }
115
+ const server = await createMcpServer({ workspaceRoot, tools: providers.tools });
116
+ const client = await connectInMemory(server);
117
+ const store = new WorkStore(workspaceRoot);
93
118
  const listeners = new Set<() => void>();
94
119
  let nextId = 1;
95
120
  const state: ControllerState = {
@@ -97,8 +122,8 @@ export async function createController(options: ControllerOptions): Promise<Cont
97
122
  busy: false,
98
123
  closed: false,
99
124
  status: {
100
- company: runtime.config.company.name,
101
- model: `${runtime.config.model.provider}/${runtime.config.model.model}`,
125
+ company: config.company.name,
126
+ model: `${config.model.provider}/${config.model.model}`,
102
127
  usage: { modelCalls: 0, inputTokens: 0, outputTokens: 0 },
103
128
  },
104
129
  };
@@ -129,8 +154,6 @@ export async function createController(options: ControllerOptions): Promise<Cont
129
154
  let aborter: AbortController | undefined;
130
155
  let running: Promise<void> | undefined;
131
156
  let closing: Promise<void> | undefined;
132
- /** The child work of the current turn while it is unfinished. */
133
- let lastWorkId: WorkId | undefined;
134
157
  const names = new Map<string, string>();
135
158
 
136
159
  const ask = (workId: WorkId, question: string): Promise<string> => {
@@ -155,60 +178,75 @@ export async function createController(options: ControllerOptions): Promise<Cont
155
178
 
156
179
  /** The lines the CLI prints when a work ends, shown among the progress lines. */
157
180
  const closingLines = async (workId: WorkId) => {
158
- for (const line of await workReport(runtime, workId)) push("progress", line.trimStart());
159
- };
160
-
161
- const onWorkEvent = (workId: WorkId, event: AnyEvent): void | Promise<void> => {
162
- lastWorkId = workId;
163
- if (event.type === "work.status_changed") {
164
- state.status.work = {
165
- id: workId,
166
- status: (event as Event<"work.status_changed">).payload.to,
167
- };
168
- } else if (event.type === "work.completed" || event.type === "work.failed") {
169
- lastWorkId = undefined;
170
- state.status.work = {
171
- id: workId,
172
- status: event.type === "work.completed" ? "completed" : "failed",
173
- };
174
- return closingLines(workId);
175
- }
176
- const line = progressLine(event, names);
177
- if (line) push("progress", line);
178
- else notify();
181
+ for (const line of await workReport(store, workId)) push("progress", line.trimStart());
179
182
  };
180
183
 
181
- const session: Session = await createSession(runtime, {
182
- onEvent: (event) => {
183
- if (event.type === "usage.recorded") {
184
- const { payload } = event as Event<"usage.recorded">;
185
- if (payload.kind === "model_inference") {
186
- state.status.usage.modelCalls += 1;
187
- state.status.usage.inputTokens += payload.usage.inputTokens;
188
- state.status.usage.outputTokens += payload.usage.outputTokens;
189
- notify();
184
+ let sessionId: WorkId | undefined;
185
+ const session: Session = await createSession(client, {
186
+ model,
187
+ config,
188
+ onEvent: (workId, event) => {
189
+ if (workId === sessionId) {
190
+ if (event.type === "usage.recorded") {
191
+ const { payload } = event as Event<"usage.recorded">;
192
+ if (payload.kind === "model_inference") {
193
+ state.status.usage.modelCalls += 1;
194
+ state.status.usage.inputTokens += payload.usage.inputTokens;
195
+ state.status.usage.outputTokens += payload.usage.outputTokens;
196
+ notify();
197
+ }
190
198
  }
199
+ return;
200
+ }
201
+ if (event.type === "work.status_changed") {
202
+ state.status.work = {
203
+ id: workId,
204
+ status: (event as Event<"work.status_changed">).payload.to,
205
+ };
206
+ notify();
207
+ return;
208
+ }
209
+ if (event.type === "work.completed" || event.type === "work.failed") {
210
+ state.status.work = {
211
+ id: workId,
212
+ status: event.type === "work.completed" ? "completed" : "failed",
213
+ };
214
+ return closingLines(workId);
191
215
  }
216
+ // The work_* calls are the loop's own bookkeeping; the closing lines already say the work ended.
217
+ if (
218
+ event.type === "tool.called" &&
219
+ (event as Event<"tool.called">).payload.name.startsWith("work_")
220
+ ) {
221
+ names.set(
222
+ (event as Event<"tool.called">).payload.callId,
223
+ (event as Event<"tool.called">).payload.name,
224
+ );
225
+ return;
226
+ }
227
+ const line = progressLine(event, names);
228
+ if (line) push("progress", line);
229
+ else notify();
192
230
  },
193
- onWorkEvent,
194
231
  onInput: ask,
195
232
  });
233
+ sessionId = session.id;
196
234
  state.status.agentName = session.agentName;
197
235
  for (const row of LOGO_ROWS) push("logo", row);
198
236
  push("banner", `openshain ${VERSION}`);
199
- push("banner", runtime.workspaceRoot);
237
+ push("banner", workspaceRoot);
200
238
 
201
- const stopped = (workId: string | undefined) =>
239
+ const stopped = (workId: WorkId | undefined) =>
202
240
  workId
203
- ? `止めました。${workId} は途中のまま残っています。/work resume ${workId} で続けられます。`
241
+ ? `止めました。${workId} は途中のまま残っています。/work resume ${workId} で続けられるようにします。`
204
242
  : "止めました。";
205
243
 
206
244
  const explain = (result: TurnResult) => {
207
245
  switch (result.stopped) {
208
246
  case "turn_limit":
209
- return "社員エージェントが 1 回の返答でできる回数を超えたので、ここで止めました。続きを依頼できます。";
247
+ return "社員エージェントが 1 回の返答でできる回数を超えたので、ここで止めました。続きは改めて依頼してください。";
210
248
  case "aborted":
211
- return stopped(lastWorkId);
249
+ return stopped(result.work);
212
250
  case "max_tokens":
213
251
  return "返答が長さの上限で切れました。";
214
252
  case "refusal":
@@ -261,21 +299,15 @@ export async function createController(options: ControllerOptions): Promise<Cont
261
299
  else if (name === "work" && sub === "show" && id)
262
300
  await capture((write) => workShow({ workspaceRoot: options.workspaceRoot, id, write }));
263
301
  else if (name === "work" && sub === "resume" && id) {
264
- await stoppable(async (signal) => {
265
- try {
266
- await workResume({
267
- workspaceRoot: options.workspaceRoot,
268
- providers: options.providers,
269
- id,
270
- signal,
271
- write: (text) => push("line", text),
272
- ask: (q) => ask(id as WorkId, q),
273
- });
274
- } catch (err) {
275
- if (!signal.aborted) push("notice", message(err));
276
- }
277
- if (signal.aborted) push("notice", stopped(id));
278
- });
302
+ try {
303
+ const work = await session.select(id as WorkId);
304
+ push(
305
+ "notice",
306
+ `${work.id}(${statusLabel(work.status)}、${work.objective})を候補にしました。次の依頼がこの Work に沿えば続けます。`,
307
+ );
308
+ } catch (err) {
309
+ push("notice", message(err));
310
+ }
279
311
  } else if (name === "resume") {
280
312
  push(
281
313
  "notice",
@@ -291,9 +323,15 @@ export async function createController(options: ControllerOptions): Promise<Cont
291
323
  aborter?.abort();
292
324
  settleQuestion();
293
325
  await running;
294
- await session.close();
295
- state.closed = true;
296
- notify();
326
+ try {
327
+ await session.close();
328
+ } catch (err) {
329
+ push("notice", `会話の記録を閉じられませんでした。${message(err)}`);
330
+ } finally {
331
+ await client.close().catch(() => undefined);
332
+ state.closed = true;
333
+ notify();
334
+ }
297
335
  })();
298
336
  return closing;
299
337
  }
@@ -346,10 +384,10 @@ export async function createController(options: ControllerOptions): Promise<Cont
346
384
  };
347
385
  }
348
386
 
349
- /** Lines that close a work in the screen: the CLI's closing lines without the summary, which the clerk relays. */
350
- export async function workReport(runtime: Runtime, workId: WorkId): Promise<string[]> {
351
- const work = await runtime.works.get(workId);
352
- const events = await runtime.works.events(workId);
387
+ /** Lines that close a work in the screen: the CLI's closing lines without the summary, which the agent relays. */
388
+ export async function workReport(store: WorkStore, workId: WorkId): Promise<string[]> {
389
+ const work = await store.get(workId);
390
+ const events = await store.events(workId);
353
391
  const lines = report(work, events);
354
392
  return work.status === "completed" ? ["完了。", ...lines.slice(1)] : lines;
355
393
  }
package/src/tui/index.ts CHANGED
@@ -46,6 +46,8 @@ export async function startTui(options: TuiOptions): Promise<number> {
46
46
  } finally {
47
47
  leave();
48
48
  }
49
- console.log(`会話を終えました。記録は openshain work show ${controller.sessionId} で読めます。`);
49
+ console.log(
50
+ `会話を終えました。記録は openshain work show ${controller.sessionId} で参照します。`,
51
+ );
50
52
  return 0;
51
53
  }
package/src/usage.ts CHANGED
@@ -1,5 +1,4 @@
1
- import { countToolCalls } from "@openshain/agent";
2
- import type { AnyEvent, Event } from "@openshain/core";
1
+ import { type AnyEvent, countToolCalls, type Event } from "@openshain/core";
3
2
 
4
3
  export interface UsageSummary {
5
4
  modelCalls: number;
package/src/workspace.ts CHANGED
@@ -14,7 +14,7 @@ export async function findWorkspace(start: string): Promise<string> {
14
14
  if (parent === dir) {
15
15
  throw new OpenshainError(
16
16
  "config",
17
- `${CONFIG_FILE_NAME} が見つかりません。${resolve(start)} から上に向かって探しました。openshain init で作れます。`,
17
+ `${CONFIG_FILE_NAME} が見つかりません。${resolve(start)} から上に向かって探しました。openshain init で作成します。`,
18
18
  );
19
19
  }
20
20
  dir = parent;