@ai-support-agent/cli 0.0.35-beta.9 → 0.0.36-beta.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/dist/agent-runner.d.ts.map +1 -1
- package/dist/agent-runner.js +8 -0
- package/dist/agent-runner.js.map +1 -1
- package/dist/commands/stop-agent.d.ts +2 -0
- package/dist/commands/stop-agent.d.ts.map +1 -0
- package/dist/commands/stop-agent.js +54 -0
- package/dist/commands/stop-agent.js.map +1 -0
- package/dist/config-manager.d.ts.map +1 -1
- package/dist/config-manager.js +10 -3
- package/dist/config-manager.js.map +1 -1
- package/dist/docker/docker-runner.d.ts +14 -1
- package/dist/docker/docker-runner.d.ts.map +1 -1
- package/dist/docker/docker-runner.js +154 -28
- package/dist/docker/docker-runner.js.map +1 -1
- package/dist/index.js +7 -0
- package/dist/index.js.map +1 -1
- package/dist/locales/en.json +8 -0
- package/dist/locales/ja.json +8 -0
- package/dist/logger.d.ts +28 -0
- package/dist/logger.d.ts.map +1 -1
- package/dist/logger.js +113 -0
- package/dist/logger.js.map +1 -1
- package/dist/pid-manager.d.ts +26 -0
- package/dist/pid-manager.d.ts.map +1 -0
- package/dist/pid-manager.js +126 -0
- package/dist/pid-manager.js.map +1 -0
- package/dist/project-agent.d.ts.map +1 -1
- package/dist/project-agent.js +2 -1
- package/dist/project-agent.js.map +1 -1
- package/dist/terminal/terminal-session.d.ts.map +1 -1
- package/dist/terminal/terminal-session.js +0 -4
- package/dist/terminal/terminal-session.js.map +1 -1
- package/dist/types/project.d.ts +1 -0
- package/dist/types/project.d.ts.map +1 -1
- package/dist/utils/version.d.ts.map +1 -1
- package/dist/utils/version.js +19 -2
- package/dist/utils/version.js.map +1 -1
- package/package.json +1 -1
- package/dist/locales/locales/en.json +0 -198
- package/dist/locales/locales/ja.json +0 -198
|
@@ -1,198 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"cmd.description": "AI Support Agent CLI",
|
|
3
|
-
"cmd.start": "Start agent (all registered projects)",
|
|
4
|
-
"cmd.start.token": "Agent token (overrides config file)",
|
|
5
|
-
"cmd.start.apiUrl": "API URL (overrides config file)",
|
|
6
|
-
"cmd.start.pollInterval": "Polling interval (ms)",
|
|
7
|
-
"cmd.start.heartbeatInterval": "Heartbeat interval (ms)",
|
|
8
|
-
"cmd.start.verbose": "Enable verbose logging",
|
|
9
|
-
"cmd.start.noAutoUpdate": "Disable automatic updates",
|
|
10
|
-
"cmd.start.updateChannel": "Update channel (latest, beta, alpha)",
|
|
11
|
-
"cmd.login": "Register a project via browser authentication",
|
|
12
|
-
"cmd.login.url": "Web UI URL (e.g. http://localhost:4030)",
|
|
13
|
-
"cmd.login.apiUrl": "API URL",
|
|
14
|
-
"cmd.login.port": "Callback server port",
|
|
15
|
-
"cmd.addProject": "Add a project via browser authentication",
|
|
16
|
-
"cmd.removeProject": "Remove a project registration",
|
|
17
|
-
"cmd.removeProject.arg": "Project code",
|
|
18
|
-
"cmd.configure": "Manually set token and API URL (backward compatible)",
|
|
19
|
-
"cmd.configure.token": "Agent token",
|
|
20
|
-
"cmd.configure.apiUrl": "API URL",
|
|
21
|
-
"cmd.configure.projectCode": "Project code",
|
|
22
|
-
"cmd.status": "Show registered projects and connection status",
|
|
23
|
-
"cmd.setLanguage": "Set display language",
|
|
24
|
-
"cmd.setLanguage.arg": "Language code (e.g. en, ja)",
|
|
25
|
-
"cmd.lang": "Display language",
|
|
26
|
-
|
|
27
|
-
"auth.openingBrowser": "Opening browser...",
|
|
28
|
-
"auth.url": "URL: {{url}}",
|
|
29
|
-
"auth.selectProject": "Select a project in the browser and issue a token...",
|
|
30
|
-
"auth.noApiUrl": "Could not obtain API URL",
|
|
31
|
-
"auth.noTenantCode": "Could not obtain tenantCode from authentication response",
|
|
32
|
-
"auth.failed": "Authentication failed: {{message}}",
|
|
33
|
-
"auth.timeout": "Authentication timed out (5 minutes)",
|
|
34
|
-
"auth.invalidProtocol": "Invalid URL: only http and https protocols are allowed.",
|
|
35
|
-
"auth.invalidPort": "Invalid port number: '{{port}}'. Must be an integer between 1 and 65535.",
|
|
36
|
-
|
|
37
|
-
"project.registered": "Project \"{{projectCode}}\" registered. Run \"ai-support-agent start\" to connect.",
|
|
38
|
-
"project.added": "Project \"{{projectCode}}\" added. Run \"ai-support-agent start\" to connect.",
|
|
39
|
-
"project.removed": "Project \"{{projectCode}}\" removed.",
|
|
40
|
-
"project.notFound": "Project \"{{projectCode}}\" is not registered.",
|
|
41
|
-
|
|
42
|
-
"config.saved": "Configuration saved. Run \"ai-support-agent start\" to connect.",
|
|
43
|
-
"config.projectSaved": "Project \"{{projectCode}}\" configured. Run \"ai-support-agent start\" to connect.",
|
|
44
|
-
"config.resolvingProject": "Resolving project code from server...",
|
|
45
|
-
"config.resolvedProject": "Project code resolved: {{projectCode}}",
|
|
46
|
-
"config.resolveProjectFailed": "Could not resolve project code from server ({{message}}). Specify --project-code to set manually.",
|
|
47
|
-
"config.readError": "Failed to read config file: {{error}}",
|
|
48
|
-
"config.savedDebug": "Configuration saved: {{path}}",
|
|
49
|
-
"config.languageSet": "Language set to \"{{lang}}\".",
|
|
50
|
-
"config.invalidInterval": "Invalid value for --{{name}}: '{{value}}'. Must be an integer between {{min}} and {{max}}.",
|
|
51
|
-
"config.migrating": "Migrating config from legacy single-token format to multi-project format...",
|
|
52
|
-
"config.migrated": "Config migrated successfully.",
|
|
53
|
-
|
|
54
|
-
"runner.starting": "Starting agent...",
|
|
55
|
-
"runner.startedSingle": "Agent started (poll: {{pollInterval}}ms, heartbeat: {{heartbeatInterval}}ms)",
|
|
56
|
-
"runner.stopHint": "Press Ctrl+C to stop",
|
|
57
|
-
"runner.shuttingDown": "Shutting down...",
|
|
58
|
-
"runner.stopped": "Agent stopped",
|
|
59
|
-
"runner.noToken": "No token configured. Run \"ai-support-agent login --url <url>\" to set up.",
|
|
60
|
-
"runner.noProjects": "No projects registered. Run \"ai-support-agent login --url <url>\" to register.",
|
|
61
|
-
"runner.startingMulti": "Starting agents for {{count}} projects...",
|
|
62
|
-
"runner.startedMulti": "Agent started ({{count}} projects, poll: {{pollInterval}}ms, heartbeat: {{heartbeatInterval}}ms)",
|
|
63
|
-
"runner.registered": "{{prefix}} Registered: {{agentId}}",
|
|
64
|
-
"runner.registerFailed": "{{prefix}} Registration failed: {{message}}",
|
|
65
|
-
"runner.commandReceived": "{{prefix}} Command received: {{type}} ({{commandId}})",
|
|
66
|
-
"runner.commandDone": "{{prefix}} Command completed: {{commandId}} ({{result}})",
|
|
67
|
-
"runner.commandError": "{{prefix}} Command execution error: {{commandId}} - {{message}}",
|
|
68
|
-
"runner.heartbeatFailed": "{{prefix}} Heartbeat failed: {{message}}",
|
|
69
|
-
"runner.resultSendFailed": "{{prefix}} Failed to send result",
|
|
70
|
-
"runner.cliTokenWarning": "Warning: Passing tokens via --token exposes them in process listings (ps aux). Consider using the AI_SUPPORT_AGENT_TOKEN environment variable instead.",
|
|
71
|
-
"runner.envTokenWarning": "Using token from environment variable",
|
|
72
|
-
"runner.authError": "{{prefix}} Authentication failed. Token may be invalid or expired. Run \"ai-support-agent login\" to re-authenticate. Detail: {{detail}}",
|
|
73
|
-
"runner.tokenUpdated": "{{prefix}} Token updated from config file. Re-authenticating...",
|
|
74
|
-
"runner.unexpectedError": "Unexpected error in project agent: {{message}}",
|
|
75
|
-
|
|
76
|
-
"status.noConfig": "No configuration found. Run \"ai-support-agent login --url <url>\" to set up.",
|
|
77
|
-
"status.header": "Configuration:",
|
|
78
|
-
"status.agentId": "Agent ID: {{agentId}}",
|
|
79
|
-
"status.lastConnected": "Last connected: {{lastConnected}}",
|
|
80
|
-
"status.notSet": "(not set)",
|
|
81
|
-
"status.notConnected": "(not connected)",
|
|
82
|
-
"status.noProjects": "Projects: none",
|
|
83
|
-
"status.projectCount": "Registered projects ({{count}}):",
|
|
84
|
-
"status.apiUrl": "API URL: {{apiUrl}}",
|
|
85
|
-
"status.token": "Token: {{token}}",
|
|
86
|
-
"status.autoUpdate": "Auto-update: {{status}}",
|
|
87
|
-
"status.updateChannel": "Channel: {{channel}}",
|
|
88
|
-
|
|
89
|
-
"update.upToDate": "Up to date ({{version}})",
|
|
90
|
-
"update.available": "Update available: {{current}} -> {{latest}}",
|
|
91
|
-
"update.installing": "Installing version {{version}}...",
|
|
92
|
-
"update.installSuccess": "Successfully updated to {{version}}",
|
|
93
|
-
"update.installFailed": "Update failed: {{message}}",
|
|
94
|
-
"update.permissionHint": "Try: sudo npm install -g @ai-support-agent/cli@{{version}}",
|
|
95
|
-
"update.manualHint": "Run: npm install -g @ai-support-agent/cli@{{version}}",
|
|
96
|
-
"update.waitingForBusy": "Waiting for in-progress commands to finish before restarting...",
|
|
97
|
-
"update.stoppingAgents": "Stopping agents for restart...",
|
|
98
|
-
"update.restarting": "Restarting with new version...",
|
|
99
|
-
"update.forced": "Forced update required: current version is below minimum ({{minimumVersion}}). Updating to {{version}}...",
|
|
100
|
-
"update.disabled": "disabled",
|
|
101
|
-
"update.enabled": "enabled (auto-restart: {{autoRestart}})",
|
|
102
|
-
"update.checkFailed": "Version check failed: {{message}}",
|
|
103
|
-
"update.skipDev": "Development mode detected. Automatic update is not supported.",
|
|
104
|
-
"update.skipLocal": "Local installation detected. Run \"npm update @ai-support-agent/cli\" in your project to update.",
|
|
105
|
-
|
|
106
|
-
"cmd.setProjectDir": "Set project directory",
|
|
107
|
-
"cmd.setProjectDir.project": "Project code",
|
|
108
|
-
"cmd.setProjectDir.path": "Directory path",
|
|
109
|
-
"cmd.setProjectDir.default": "Default directory template (use {projectCode} placeholder)",
|
|
110
|
-
"projectDir.created": "Created project directory: {{projectDir}}",
|
|
111
|
-
"projectDir.set": "Project \"{{projectCode}}\" directory set to {{projectDir}}",
|
|
112
|
-
"projectDir.defaultSet": "Default project directory template set to \"{{template}}\"",
|
|
113
|
-
"projectDir.noProject": "Project \"{{projectCode}}\" is not registered.",
|
|
114
|
-
"projectDir.initialized": "Project directory initialized: {{projectDir}} ({{projectCode}})",
|
|
115
|
-
"projectDir.usageHint": "Usage: set-project-dir --project <code> --path <path> OR --default <template>",
|
|
116
|
-
"projectDir.cleaned": "Cleaned up metadata directory: {{metadataDir}}",
|
|
117
|
-
|
|
118
|
-
"cmd.setAutoUpdate": "Configure automatic updates",
|
|
119
|
-
"cmd.setAutoUpdate.enable": "Enable automatic updates",
|
|
120
|
-
"cmd.setAutoUpdate.disable": "Disable automatic updates",
|
|
121
|
-
"cmd.setAutoUpdate.channel": "Set update channel (latest, beta, alpha)",
|
|
122
|
-
"autoUpdate.usageHint": "Usage: set-auto-update --enable | --disable | --channel <channel>",
|
|
123
|
-
"autoUpdate.conflictFlags": "Cannot use --enable and --disable together.",
|
|
124
|
-
"autoUpdate.disabled": "Automatic updates disabled.",
|
|
125
|
-
"autoUpdate.enabled": "Automatic updates enabled (channel: {{channel}}).",
|
|
126
|
-
"autoUpdate.channelSet": "Update channel set to \"{{channel}}\".",
|
|
127
|
-
|
|
128
|
-
"cmd.start.noDocker": "Run directly on host instead of Docker container",
|
|
129
|
-
"cmd.start.dockerfile": "Path to a custom Dockerfile (overrides config and bundled default)",
|
|
130
|
-
"cmd.start.noDockerfileSync": "Skip writing the default Dockerfile to config dir",
|
|
131
|
-
"cmd.dockerLogin": "Log in to Claude Code inside a Docker container",
|
|
132
|
-
"cmd.dockerBuild": "Build the Docker image for this version",
|
|
133
|
-
"cmd.dockerBuild.dockerfile": "Path to a custom Dockerfile",
|
|
134
|
-
"cmd.dockerDiffDockerfile": "Show diff between a Dockerfile and the bundled default",
|
|
135
|
-
"cmd.dockerDiffDockerfile.arg": "Path to Dockerfile (default: config dir Dockerfile)",
|
|
136
|
-
"docker.notAvailable": "Docker is not available. Make sure Docker Desktop is running.",
|
|
137
|
-
"docker.building": "Building Docker image...",
|
|
138
|
-
"docker.buildComplete": "Docker image build complete",
|
|
139
|
-
"docker.imageFound": "Using existing Docker image ({{version}})",
|
|
140
|
-
"docker.starting": "Starting Docker container...",
|
|
141
|
-
"docker.runFailed": "Failed to run Docker container: {{message}}",
|
|
142
|
-
"docker.loginStep1": "Step 1: Run the following in your host terminal to get an OAuth token:",
|
|
143
|
-
"docker.loginStep2": "Step 2: Set the token as an environment variable and start in Docker mode:",
|
|
144
|
-
"docker.loginStep3": "The token is long-lived. Add the export to .bashrc or .zshrc to persist it.",
|
|
145
|
-
"docker.usingCustomDockerfile": "Using custom Dockerfile: {{path}}",
|
|
146
|
-
"docker.dockerfileSynced": "Default Dockerfile written to: {{path}}",
|
|
147
|
-
"docker.dockerfileSyncFailed": "Failed to write Dockerfile to config dir: {{message}}",
|
|
148
|
-
"docker.diffNoTarget": "No Dockerfile to diff. Specify a path or set dockerfilePath in config.",
|
|
149
|
-
"docker.diffTargetNotFound": "Dockerfile not found: {{path}}",
|
|
150
|
-
"docker.diffIdentical": "Dockerfile is identical to the bundled default.",
|
|
151
|
-
"docker.diffDone": "Diff complete.",
|
|
152
|
-
"docker.diffDefaultError": "Failed to read bundled Dockerfile: {{message}}",
|
|
153
|
-
|
|
154
|
-
"cmd.service": "Manage background service",
|
|
155
|
-
"cmd.service.install": "Install as a background service (Docker mode by default)",
|
|
156
|
-
"cmd.service.install.verbose": "Enable verbose logging for the service",
|
|
157
|
-
"cmd.service.install.noDocker": "Run in native mode without Docker",
|
|
158
|
-
"cmd.service.uninstall": "Uninstall background service",
|
|
159
|
-
"cmd.service.start": "Start the background service",
|
|
160
|
-
"cmd.service.stop": "Stop the background service",
|
|
161
|
-
"cmd.service.restart": "Restart the background service",
|
|
162
|
-
"cmd.service.status": "Show background service status",
|
|
163
|
-
"cmd.service.status.verbose": "Show detailed status with log file paths",
|
|
164
|
-
"service.unsupportedPlatform": "This command is not supported on {{platform}}.",
|
|
165
|
-
"service.entryPointNotFound": "CLI entry point not found: {{path}}",
|
|
166
|
-
"service.installed": "LaunchAgent plist created: {{path}}",
|
|
167
|
-
"service.projectInstalled": "LaunchAgent plist created for {{projectCode}}: {{path}}",
|
|
168
|
-
"service.loadHint": "To start the service now, run: launchctl load {{path}}",
|
|
169
|
-
"service.loadHintMulti": "To start all services, run: ai-support-agent service start",
|
|
170
|
-
"service.legacyPlistFound": "Found legacy plist at {{path}}. Run 'service uninstall' to remove it.",
|
|
171
|
-
"service.logDir": "Logs will be written to: {{path}}",
|
|
172
|
-
"service.notInstalled": "LaunchAgent plist not found. Service is not installed.",
|
|
173
|
-
"service.uninstalled": "LaunchAgent plist removed.",
|
|
174
|
-
"service.overwriting": "Existing service file found at {{path}}. Overwriting.",
|
|
175
|
-
"service.noLogRotation": "Note: Logs are not automatically rotated.",
|
|
176
|
-
"service.unloadHint": "If the service is running, stop it with: launchctl remove {{label}}",
|
|
177
|
-
"service.installed.linux": "systemd user service created: {{path}}",
|
|
178
|
-
"service.loadHint.linux": "To start the service now, run: systemctl --user daemon-reload && systemctl --user enable --now ai-support-agent",
|
|
179
|
-
"service.notInstalled.linux": "systemd user service not found. Service is not installed.",
|
|
180
|
-
"service.uninstalled.linux": "systemd user service removed.",
|
|
181
|
-
"service.unloadHint.linux": "If the service is running, stop it with: systemctl --user disable --now ai-support-agent",
|
|
182
|
-
"service.installed.win32": "Scheduled task created: {{taskName}}",
|
|
183
|
-
"service.loadHint.win32": "To start the task now, run: schtasks /Run /TN \"{{taskName}}\"",
|
|
184
|
-
"service.notInstalled.win32": "Scheduled task not found. Service is not installed.",
|
|
185
|
-
"service.uninstalled.win32": "Scheduled task removed.",
|
|
186
|
-
"service.unloadHint.win32": "If the task is running, it will be stopped and removed.",
|
|
187
|
-
"service.schtasksFailed": "schtasks command failed: {{message}}",
|
|
188
|
-
"service.started": "Service started successfully.",
|
|
189
|
-
"service.startFailed": "Failed to start service: {{message}}",
|
|
190
|
-
"service.stopped": "Service stopped successfully.",
|
|
191
|
-
"service.stopFailed": "Failed to stop service: {{message}}",
|
|
192
|
-
"service.restarted": "Service restarted successfully.",
|
|
193
|
-
"service.restartFailed": "Failed to restart service: {{message}}",
|
|
194
|
-
"service.status.notInstalled": "Service is not installed.",
|
|
195
|
-
"service.status.running": "Service is running (PID: {{pid}}).",
|
|
196
|
-
"service.status.stopped": "Service is installed but not running.",
|
|
197
|
-
"service.status.logHint": "Logs:\n stdout: {{outLog}}\n stderr: {{errLog}}"
|
|
198
|
-
}
|
|
@@ -1,198 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"cmd.description": "AI Support Agent CLI",
|
|
3
|
-
"cmd.start": "エージェントを起動(登録済み全プロジェクト)",
|
|
4
|
-
"cmd.start.token": "エージェントトークン(設定ファイルより優先)",
|
|
5
|
-
"cmd.start.apiUrl": "API URL(設定ファイルより優先)",
|
|
6
|
-
"cmd.start.pollInterval": "ポーリング間隔(ms)",
|
|
7
|
-
"cmd.start.heartbeatInterval": "ハートビート間隔(ms)",
|
|
8
|
-
"cmd.start.verbose": "詳細ログを出力",
|
|
9
|
-
"cmd.start.noAutoUpdate": "自動更新を無効化",
|
|
10
|
-
"cmd.start.updateChannel": "更新チャネル(latest, beta, alpha)",
|
|
11
|
-
"cmd.login": "ブラウザ認証でプロジェクトを登録",
|
|
12
|
-
"cmd.login.url": "Web UI URL(例: http://localhost:4030)",
|
|
13
|
-
"cmd.login.apiUrl": "API URL",
|
|
14
|
-
"cmd.login.port": "コールバックサーバーポート",
|
|
15
|
-
"cmd.addProject": "追加プロジェクトをブラウザ認証で登録",
|
|
16
|
-
"cmd.removeProject": "プロジェクト登録を解除",
|
|
17
|
-
"cmd.removeProject.arg": "プロジェクトコード",
|
|
18
|
-
"cmd.configure": "トークンとAPI URLを手動設定(後方互換)",
|
|
19
|
-
"cmd.configure.token": "エージェントトークン",
|
|
20
|
-
"cmd.configure.apiUrl": "API URL",
|
|
21
|
-
"cmd.configure.projectCode": "プロジェクトコード",
|
|
22
|
-
"cmd.status": "登録プロジェクト一覧と接続状態を表示",
|
|
23
|
-
"cmd.setLanguage": "表示言語を設定",
|
|
24
|
-
"cmd.setLanguage.arg": "言語コード(例: en, ja)",
|
|
25
|
-
"cmd.lang": "表示言語",
|
|
26
|
-
|
|
27
|
-
"auth.openingBrowser": "ブラウザを開いています...",
|
|
28
|
-
"auth.url": "URL: {{url}}",
|
|
29
|
-
"auth.selectProject": "ブラウザでプロジェクトを選択してトークンを発行してください...",
|
|
30
|
-
"auth.noApiUrl": "API URLが取得できませんでした",
|
|
31
|
-
"auth.noTenantCode": "認証レスポンスからtenantCodeが取得できませんでした",
|
|
32
|
-
"auth.failed": "認証に失敗しました: {{message}}",
|
|
33
|
-
"auth.timeout": "認証がタイムアウトしました(5分)",
|
|
34
|
-
"auth.invalidProtocol": "無効なURL: http および https プロトコルのみ使用できます。",
|
|
35
|
-
"auth.invalidPort": "無効なポート番号: '{{port}}'。1〜65535 の整数を指定してください。",
|
|
36
|
-
|
|
37
|
-
"project.registered": "プロジェクト \"{{projectCode}}\" を登録しました。\"ai-support-agent start\" で接続してください。",
|
|
38
|
-
"project.added": "プロジェクト \"{{projectCode}}\" を追加しました。\"ai-support-agent start\" で接続してください。",
|
|
39
|
-
"project.removed": "プロジェクト \"{{projectCode}}\" を削除しました。",
|
|
40
|
-
"project.notFound": "プロジェクト \"{{projectCode}}\" は登録されていません。",
|
|
41
|
-
|
|
42
|
-
"config.saved": "設定を保存しました。\"ai-support-agent start\" で接続してください。",
|
|
43
|
-
"config.projectSaved": "プロジェクト \"{{projectCode}}\" を設定しました。\"ai-support-agent start\" で接続してください。",
|
|
44
|
-
"config.resolvingProject": "サーバーからプロジェクトコードを取得中...",
|
|
45
|
-
"config.resolvedProject": "プロジェクトコード取得: {{projectCode}}",
|
|
46
|
-
"config.resolveProjectFailed": "サーバーからプロジェクトコードを取得できませんでした ({{message}})。--project-code で手動指定してください。",
|
|
47
|
-
"config.readError": "設定ファイルの読み込みに失敗しました: {{error}}",
|
|
48
|
-
"config.savedDebug": "設定を保存しました: {{path}}",
|
|
49
|
-
"config.languageSet": "言語を \"{{lang}}\" に設定しました。",
|
|
50
|
-
"config.invalidInterval": "--{{name}} の値が不正です: '{{value}}'。{{min}}〜{{max}} の整数を指定してください。",
|
|
51
|
-
"config.migrating": "設定を旧形式(単一トークン)からマルチプロジェクト形式に移行中...",
|
|
52
|
-
"config.migrated": "設定の移行が完了しました。",
|
|
53
|
-
|
|
54
|
-
"runner.starting": "エージェントを起動中...",
|
|
55
|
-
"runner.startedSingle": "エージェント起動完了 (poll: {{pollInterval}}ms, heartbeat: {{heartbeatInterval}}ms)",
|
|
56
|
-
"runner.stopHint": "Ctrl+C で停止します",
|
|
57
|
-
"runner.shuttingDown": "シャットダウン中...",
|
|
58
|
-
"runner.stopped": "エージェントを停止しました",
|
|
59
|
-
"runner.noToken": "トークンが設定されていません。\"ai-support-agent login --url <url>\" で設定してください。",
|
|
60
|
-
"runner.noProjects": "プロジェクトが登録されていません。\"ai-support-agent login --url <url>\" で登録してください。",
|
|
61
|
-
"runner.startingMulti": "{{count}} プロジェクトのエージェントを起動中...",
|
|
62
|
-
"runner.startedMulti": "エージェント起動完了 ({{count}} プロジェクト, poll: {{pollInterval}}ms, heartbeat: {{heartbeatInterval}}ms)",
|
|
63
|
-
"runner.registered": "{{prefix}} 登録完了: {{agentId}}",
|
|
64
|
-
"runner.registerFailed": "{{prefix}} 登録に失敗しました: {{message}}",
|
|
65
|
-
"runner.commandReceived": "{{prefix}} コマンド受信: {{type}} ({{commandId}})",
|
|
66
|
-
"runner.commandDone": "{{prefix}} コマンド完了: {{commandId}} ({{result}})",
|
|
67
|
-
"runner.commandError": "{{prefix}} コマンド実行エラー: {{commandId}} - {{message}}",
|
|
68
|
-
"runner.heartbeatFailed": "{{prefix}} ハートビート送信に失敗しました: {{message}}",
|
|
69
|
-
"runner.resultSendFailed": "{{prefix}} 結果送信にも失敗しました",
|
|
70
|
-
"runner.cliTokenWarning": "警告: --token でトークンを渡すとプロセス一覧(ps aux)にトークンが表示されます。代わりに環境変数 AI_SUPPORT_AGENT_TOKEN の使用を推奨します。",
|
|
71
|
-
"runner.envTokenWarning": "環境変数からトークンを使用しています",
|
|
72
|
-
"runner.authError": "{{prefix}} 認証に失敗しました。トークンが無効または期限切れの可能性があります。\"ai-support-agent login\" で再認証してください。詳細: {{detail}}",
|
|
73
|
-
"runner.tokenUpdated": "{{prefix}} 設定ファイルからトークンを更新しました。再認証中...",
|
|
74
|
-
"runner.unexpectedError": "プロジェクトエージェントで予期しないエラー: {{message}}",
|
|
75
|
-
|
|
76
|
-
"status.noConfig": "設定が見つかりません。\"ai-support-agent login --url <url>\" で設定してください。",
|
|
77
|
-
"status.header": "設定情報:",
|
|
78
|
-
"status.agentId": "Agent ID: {{agentId}}",
|
|
79
|
-
"status.lastConnected": "最終接続: {{lastConnected}}",
|
|
80
|
-
"status.notSet": "(未設定)",
|
|
81
|
-
"status.notConnected": "(未接続)",
|
|
82
|
-
"status.noProjects": "プロジェクト: なし",
|
|
83
|
-
"status.projectCount": "登録プロジェクト ({{count}}件):",
|
|
84
|
-
"status.apiUrl": "API URL: {{apiUrl}}",
|
|
85
|
-
"status.token": "トークン: {{token}}",
|
|
86
|
-
"status.autoUpdate": "自動更新: {{status}}",
|
|
87
|
-
"status.updateChannel": "チャネル: {{channel}}",
|
|
88
|
-
|
|
89
|
-
"update.upToDate": "最新バージョンです ({{version}})",
|
|
90
|
-
"update.available": "更新があります: {{current}} -> {{latest}}",
|
|
91
|
-
"update.installing": "バージョン {{version}} をインストール中...",
|
|
92
|
-
"update.installSuccess": "バージョン {{version}} に更新しました",
|
|
93
|
-
"update.installFailed": "更新に失敗しました: {{message}}",
|
|
94
|
-
"update.permissionHint": "次のコマンドを実行してください: sudo npm install -g @ai-support-agent/cli@{{version}}",
|
|
95
|
-
"update.manualHint": "次のコマンドを実行してください: npm install -g @ai-support-agent/cli@{{version}}",
|
|
96
|
-
"update.waitingForBusy": "実行中のコマンドの完了を待っています...",
|
|
97
|
-
"update.stoppingAgents": "再起動のためエージェントを停止中...",
|
|
98
|
-
"update.restarting": "新しいバージョンで再起動中...",
|
|
99
|
-
"update.forced": "強制更新が必要です: 現在のバージョンが最低バージョン ({{minimumVersion}}) を下回っています。{{version}} に更新します...",
|
|
100
|
-
"update.disabled": "無効",
|
|
101
|
-
"update.enabled": "有効 (自動再起動: {{autoRestart}})",
|
|
102
|
-
"update.checkFailed": "バージョンチェックに失敗しました: {{message}}",
|
|
103
|
-
"update.skipDev": "開発モードを検出しました。自動更新はサポートされていません。",
|
|
104
|
-
"update.skipLocal": "ローカルインストールを検出しました。更新するにはプロジェクト内で \"npm update @ai-support-agent/cli\" を実行してください。",
|
|
105
|
-
|
|
106
|
-
"cmd.setProjectDir": "プロジェクトディレクトリを設定",
|
|
107
|
-
"cmd.setProjectDir.project": "プロジェクトコード",
|
|
108
|
-
"cmd.setProjectDir.path": "ディレクトリパス",
|
|
109
|
-
"cmd.setProjectDir.default": "デフォルトディレクトリテンプレート({projectCode} プレースホルダーを使用)",
|
|
110
|
-
"projectDir.created": "プロジェクトディレクトリを作成しました: {{projectDir}}",
|
|
111
|
-
"projectDir.set": "プロジェクト \"{{projectCode}}\" のディレクトリを {{projectDir}} に設定しました",
|
|
112
|
-
"projectDir.defaultSet": "デフォルトプロジェクトディレクトリテンプレートを \"{{template}}\" に設定しました",
|
|
113
|
-
"projectDir.noProject": "プロジェクト \"{{projectCode}}\" は登録されていません。",
|
|
114
|
-
"projectDir.initialized": "プロジェクトディレクトリを初期化しました: {{projectDir}} ({{projectCode}})",
|
|
115
|
-
"projectDir.usageHint": "使い方: set-project-dir --project <code> --path <path> または --default <template>",
|
|
116
|
-
"projectDir.cleaned": "メタデータディレクトリを削除しました: {{metadataDir}}",
|
|
117
|
-
|
|
118
|
-
"cmd.setAutoUpdate": "自動更新を設定",
|
|
119
|
-
"cmd.setAutoUpdate.enable": "自動更新を有効化",
|
|
120
|
-
"cmd.setAutoUpdate.disable": "自動更新を無効化",
|
|
121
|
-
"cmd.setAutoUpdate.channel": "更新チャネルを設定(latest, beta, alpha)",
|
|
122
|
-
"autoUpdate.usageHint": "使い方: set-auto-update --enable | --disable | --channel <channel>",
|
|
123
|
-
"autoUpdate.conflictFlags": "--enable と --disable は同時に使用できません。",
|
|
124
|
-
"autoUpdate.disabled": "自動更新を無効にしました。",
|
|
125
|
-
"autoUpdate.enabled": "自動更新を有効にしました(チャネル: {{channel}})。",
|
|
126
|
-
"autoUpdate.channelSet": "更新チャネルを \"{{channel}}\" に設定しました。",
|
|
127
|
-
|
|
128
|
-
"cmd.start.noDocker": "Dockerコンテナを使わずホスト上で直接実行",
|
|
129
|
-
"cmd.start.dockerfile": "カスタムDockerfileのパス(設定ファイルおよびデフォルトより優先)",
|
|
130
|
-
"cmd.start.noDockerfileSync": "デフォルトDockerfileの設定ディレクトリへの書き出しをスキップ",
|
|
131
|
-
"cmd.dockerLogin": "Dockerコンテナ内でClaude Codeにログイン",
|
|
132
|
-
"cmd.dockerBuild": "このバージョンのDockerイメージをビルド",
|
|
133
|
-
"cmd.dockerBuild.dockerfile": "カスタムDockerfileのパス",
|
|
134
|
-
"cmd.dockerDiffDockerfile": "DockerfileとバンドルデフォルトのDockerfileの差分を表示",
|
|
135
|
-
"cmd.dockerDiffDockerfile.arg": "DockerfileのパスPath(省略時: 設定ディレクトリのDockerfile)",
|
|
136
|
-
"docker.notAvailable": "Dockerが利用できません。Docker Desktopが起動していることを確認してください。",
|
|
137
|
-
"docker.building": "Dockerイメージをビルド中...",
|
|
138
|
-
"docker.buildComplete": "Dockerイメージのビルドが完了しました",
|
|
139
|
-
"docker.imageFound": "既存のDockerイメージを使用します ({{version}})",
|
|
140
|
-
"docker.starting": "Dockerコンテナを起動中...",
|
|
141
|
-
"docker.runFailed": "Dockerコンテナの実行に失敗しました: {{message}}",
|
|
142
|
-
"docker.loginStep1": "Step 1: ホスト側のターミナルで以下を実行し、OAuthトークンを取得してください:",
|
|
143
|
-
"docker.loginStep2": "Step 2: 取得したトークンを環境変数に設定してDockerモードで起動:",
|
|
144
|
-
"docker.loginStep3": "トークンは長期間有効です。毎回設定が必要な場合は .bashrc や .zshrc に export を追加してください。",
|
|
145
|
-
"docker.usingCustomDockerfile": "カスタムDockerfileを使用: {{path}}",
|
|
146
|
-
"docker.dockerfileSynced": "デフォルトDockerfileを書き出しました: {{path}}",
|
|
147
|
-
"docker.dockerfileSyncFailed": "Dockerfileの書き出しに失敗しました: {{message}}",
|
|
148
|
-
"docker.diffNoTarget": "比較対象のDockerfileがありません。パスを指定するか設定にdockerfilePathを設定してください。",
|
|
149
|
-
"docker.diffTargetNotFound": "Dockerfileが見つかりません: {{path}}",
|
|
150
|
-
"docker.diffIdentical": "DockerfileはバンドルデフォルトのDockerfileと同一です。",
|
|
151
|
-
"docker.diffDone": "差分表示が完了しました。",
|
|
152
|
-
"docker.diffDefaultError": "バンドルDockerfileの読み込みに失敗しました: {{message}}",
|
|
153
|
-
|
|
154
|
-
"cmd.service": "バックグラウンドサービスの管理",
|
|
155
|
-
"cmd.service.install": "バックグラウンドサービスとしてインストール(デフォルトはDockerモード)",
|
|
156
|
-
"cmd.service.install.verbose": "サービスの詳細ログを有効化",
|
|
157
|
-
"cmd.service.install.noDocker": "Docker を使わずネイティブモードで起動",
|
|
158
|
-
"cmd.service.uninstall": "バックグラウンドサービスをアンインストール",
|
|
159
|
-
"cmd.service.start": "バックグラウンドサービスを起動",
|
|
160
|
-
"cmd.service.stop": "バックグラウンドサービスを停止",
|
|
161
|
-
"cmd.service.restart": "バックグラウンドサービスを再起動",
|
|
162
|
-
"cmd.service.status": "バックグラウンドサービスの状態を表示",
|
|
163
|
-
"cmd.service.status.verbose": "ログファイルのパスを含む詳細情報を表示",
|
|
164
|
-
"service.unsupportedPlatform": "このコマンドは {{platform}} ではサポートされていません。",
|
|
165
|
-
"service.entryPointNotFound": "CLIエントリポイントが見つかりません: {{path}}",
|
|
166
|
-
"service.installed": "LaunchAgent plist を作成しました: {{path}}",
|
|
167
|
-
"service.projectInstalled": "{{projectCode}} の LaunchAgent plist を作成しました: {{path}}",
|
|
168
|
-
"service.loadHint": "サービスを今すぐ起動するには: launchctl load {{path}}",
|
|
169
|
-
"service.loadHintMulti": "全サービスを起動するには: ai-support-agent service start",
|
|
170
|
-
"service.legacyPlistFound": "旧来の plist が見つかりました: {{path}}。'service uninstall' で削除してください。",
|
|
171
|
-
"service.logDir": "ログ出力先: {{path}}",
|
|
172
|
-
"service.notInstalled": "LaunchAgent plist が見つかりません。サービスはインストールされていません。",
|
|
173
|
-
"service.uninstalled": "LaunchAgent plist を削除しました。",
|
|
174
|
-
"service.overwriting": "既存のサービスファイルが見つかりました: {{path}}。上書きします。",
|
|
175
|
-
"service.noLogRotation": "注意: ログは自動ローテーションされません。",
|
|
176
|
-
"service.unloadHint": "サービスが実行中の場合は停止してください: launchctl remove {{label}}",
|
|
177
|
-
"service.installed.linux": "systemd ユーザーサービスを作成しました: {{path}}",
|
|
178
|
-
"service.loadHint.linux": "サービスを今すぐ起動するには: systemctl --user daemon-reload && systemctl --user enable --now ai-support-agent",
|
|
179
|
-
"service.notInstalled.linux": "systemd ユーザーサービスが見つかりません。サービスはインストールされていません。",
|
|
180
|
-
"service.uninstalled.linux": "systemd ユーザーサービスを削除しました。",
|
|
181
|
-
"service.unloadHint.linux": "サービスが実行中の場合は停止してください: systemctl --user disable --now ai-support-agent",
|
|
182
|
-
"service.installed.win32": "スケジュールタスクを作成しました: {{taskName}}",
|
|
183
|
-
"service.loadHint.win32": "タスクを今すぐ実行するには: schtasks /Run /TN \"{{taskName}}\"",
|
|
184
|
-
"service.notInstalled.win32": "スケジュールタスクが見つかりません。サービスはインストールされていません。",
|
|
185
|
-
"service.uninstalled.win32": "スケジュールタスクを削除しました。",
|
|
186
|
-
"service.unloadHint.win32": "タスクが実行中の場合は停止して削除されます。",
|
|
187
|
-
"service.schtasksFailed": "schtasks コマンドが失敗しました: {{message}}",
|
|
188
|
-
"service.started": "サービスを起動しました。",
|
|
189
|
-
"service.startFailed": "サービスの起動に失敗しました: {{message}}",
|
|
190
|
-
"service.stopped": "サービスを停止しました。",
|
|
191
|
-
"service.stopFailed": "サービスの停止に失敗しました: {{message}}",
|
|
192
|
-
"service.restarted": "サービスを再起動しました。",
|
|
193
|
-
"service.restartFailed": "サービスの再起動に失敗しました: {{message}}",
|
|
194
|
-
"service.status.notInstalled": "サービスはインストールされていません。",
|
|
195
|
-
"service.status.running": "サービスは実行中です(PID: {{pid}})。",
|
|
196
|
-
"service.status.stopped": "サービスはインストール済みですが停止中です。",
|
|
197
|
-
"service.status.logHint": "ログ:\n stdout: {{outLog}}\n stderr: {{errLog}}"
|
|
198
|
-
}
|