cerebras-cli 1.0.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/AGENTS.md +27 -0
- package/Dockerfile +10 -0
- package/README.md +15 -0
- package/bin/opencode +84 -0
- package/bunfig.toml +4 -0
- package/package.json +128 -0
- package/parsers-config.ts +239 -0
- package/script/build.ts +151 -0
- package/script/postinstall.mjs +122 -0
- package/script/publish.ts +256 -0
- package/script/schema.ts +47 -0
- package/src/acp/README.md +164 -0
- package/src/acp/agent.ts +812 -0
- package/src/acp/session.ts +70 -0
- package/src/acp/types.ts +22 -0
- package/src/agent/agent.ts +310 -0
- package/src/agent/generate.txt +75 -0
- package/src/auth/index.ts +70 -0
- package/src/bun/index.ts +152 -0
- package/src/bus/global.ts +10 -0
- package/src/bus/index.ts +142 -0
- package/src/cli/bootstrap.ts +17 -0
- package/src/cli/cmd/acp.ts +88 -0
- package/src/cli/cmd/agent.ts +165 -0
- package/src/cli/cmd/auth.ts +369 -0
- package/src/cli/cmd/cmd.ts +7 -0
- package/src/cli/cmd/debug/config.ts +15 -0
- package/src/cli/cmd/debug/file.ts +91 -0
- package/src/cli/cmd/debug/index.ts +41 -0
- package/src/cli/cmd/debug/lsp.ts +47 -0
- package/src/cli/cmd/debug/ripgrep.ts +83 -0
- package/src/cli/cmd/debug/scrap.ts +15 -0
- package/src/cli/cmd/debug/snapshot.ts +48 -0
- package/src/cli/cmd/export.ts +88 -0
- package/src/cli/cmd/generate.ts +38 -0
- package/src/cli/cmd/github.ts +1200 -0
- package/src/cli/cmd/import.ts +98 -0
- package/src/cli/cmd/mcp.ts +400 -0
- package/src/cli/cmd/models.ts +77 -0
- package/src/cli/cmd/pr.ts +112 -0
- package/src/cli/cmd/run.ts +342 -0
- package/src/cli/cmd/serve.ts +31 -0
- package/src/cli/cmd/session.ts +106 -0
- package/src/cli/cmd/stats.ts +298 -0
- package/src/cli/cmd/tui/app.tsx +732 -0
- package/src/cli/cmd/tui/attach.ts +25 -0
- package/src/cli/cmd/tui/component/border.tsx +21 -0
- package/src/cli/cmd/tui/component/dialog-agent.tsx +31 -0
- package/src/cli/cmd/tui/component/dialog-command.tsx +124 -0
- package/src/cli/cmd/tui/component/dialog-feedback.tsx +160 -0
- package/src/cli/cmd/tui/component/dialog-mcp.tsx +86 -0
- package/src/cli/cmd/tui/component/dialog-model.tsx +223 -0
- package/src/cli/cmd/tui/component/dialog-notification.tsx +78 -0
- package/src/cli/cmd/tui/component/dialog-provider.tsx +222 -0
- package/src/cli/cmd/tui/component/dialog-session-list.tsx +97 -0
- package/src/cli/cmd/tui/component/dialog-session-rename.tsx +31 -0
- package/src/cli/cmd/tui/component/dialog-status.tsx +114 -0
- package/src/cli/cmd/tui/component/dialog-tag.tsx +44 -0
- package/src/cli/cmd/tui/component/dialog-theme-list.tsx +50 -0
- package/src/cli/cmd/tui/component/logo.tsx +37 -0
- package/src/cli/cmd/tui/component/notification-banner.tsx +58 -0
- package/src/cli/cmd/tui/component/prompt/autocomplete.tsx +530 -0
- package/src/cli/cmd/tui/component/prompt/history.tsx +107 -0
- package/src/cli/cmd/tui/component/prompt/index.tsx +931 -0
- package/src/cli/cmd/tui/context/args.tsx +14 -0
- package/src/cli/cmd/tui/context/directory.ts +12 -0
- package/src/cli/cmd/tui/context/exit.tsx +23 -0
- package/src/cli/cmd/tui/context/helper.tsx +25 -0
- package/src/cli/cmd/tui/context/keybind.tsx +111 -0
- package/src/cli/cmd/tui/context/kv.tsx +49 -0
- package/src/cli/cmd/tui/context/local.tsx +339 -0
- package/src/cli/cmd/tui/context/prompt.tsx +18 -0
- package/src/cli/cmd/tui/context/route.tsx +45 -0
- package/src/cli/cmd/tui/context/sdk.tsx +75 -0
- package/src/cli/cmd/tui/context/sync.tsx +374 -0
- package/src/cli/cmd/tui/context/theme/aura.json +69 -0
- package/src/cli/cmd/tui/context/theme/ayu.json +80 -0
- package/src/cli/cmd/tui/context/theme/catppuccin-macchiato.json +233 -0
- package/src/cli/cmd/tui/context/theme/catppuccin.json +112 -0
- package/src/cli/cmd/tui/context/theme/cobalt2.json +228 -0
- package/src/cli/cmd/tui/context/theme/dracula.json +219 -0
- package/src/cli/cmd/tui/context/theme/everforest.json +241 -0
- package/src/cli/cmd/tui/context/theme/flexoki.json +237 -0
- package/src/cli/cmd/tui/context/theme/github.json +233 -0
- package/src/cli/cmd/tui/context/theme/gruvbox.json +95 -0
- package/src/cli/cmd/tui/context/theme/kanagawa.json +77 -0
- package/src/cli/cmd/tui/context/theme/material.json +235 -0
- package/src/cli/cmd/tui/context/theme/matrix.json +77 -0
- package/src/cli/cmd/tui/context/theme/mercury.json +252 -0
- package/src/cli/cmd/tui/context/theme/monokai.json +221 -0
- package/src/cli/cmd/tui/context/theme/nightowl.json +221 -0
- package/src/cli/cmd/tui/context/theme/nord.json +223 -0
- package/src/cli/cmd/tui/context/theme/one-dark.json +84 -0
- package/src/cli/cmd/tui/context/theme/orng.json +245 -0
- package/src/cli/cmd/tui/context/theme/palenight.json +222 -0
- package/src/cli/cmd/tui/context/theme/rosepine.json +234 -0
- package/src/cli/cmd/tui/context/theme/solarized.json +223 -0
- package/src/cli/cmd/tui/context/theme/synthwave84.json +226 -0
- package/src/cli/cmd/tui/context/theme/tokyonight.json +243 -0
- package/src/cli/cmd/tui/context/theme/vercel.json +245 -0
- package/src/cli/cmd/tui/context/theme/vesper.json +218 -0
- package/src/cli/cmd/tui/context/theme/zenburn.json +223 -0
- package/src/cli/cmd/tui/context/theme.tsx +1077 -0
- package/src/cli/cmd/tui/event.ts +39 -0
- package/src/cli/cmd/tui/routes/home.tsx +104 -0
- package/src/cli/cmd/tui/routes/session/dialog-message.tsx +93 -0
- package/src/cli/cmd/tui/routes/session/dialog-timeline.tsx +37 -0
- package/src/cli/cmd/tui/routes/session/footer.tsx +76 -0
- package/src/cli/cmd/tui/routes/session/header.tsx +183 -0
- package/src/cli/cmd/tui/routes/session/index.tsx +1703 -0
- package/src/cli/cmd/tui/routes/session/sidebar.tsx +586 -0
- package/src/cli/cmd/tui/spawn.ts +60 -0
- package/src/cli/cmd/tui/thread.ts +120 -0
- package/src/cli/cmd/tui/ui/dialog-alert.tsx +55 -0
- package/src/cli/cmd/tui/ui/dialog-confirm.tsx +81 -0
- package/src/cli/cmd/tui/ui/dialog-help.tsx +36 -0
- package/src/cli/cmd/tui/ui/dialog-prompt.tsx +75 -0
- package/src/cli/cmd/tui/ui/dialog-select.tsx +317 -0
- package/src/cli/cmd/tui/ui/dialog.tsx +170 -0
- package/src/cli/cmd/tui/ui/spinner.ts +368 -0
- package/src/cli/cmd/tui/ui/toast.tsx +100 -0
- package/src/cli/cmd/tui/util/clipboard.ts +127 -0
- package/src/cli/cmd/tui/util/editor.ts +32 -0
- package/src/cli/cmd/tui/util/terminal.ts +114 -0
- package/src/cli/cmd/tui/worker.ts +63 -0
- package/src/cli/cmd/uninstall.ts +344 -0
- package/src/cli/cmd/upgrade.ts +67 -0
- package/src/cli/cmd/web.ts +84 -0
- package/src/cli/error.ts +55 -0
- package/src/cli/ui.ts +84 -0
- package/src/cli/upgrade.ts +25 -0
- package/src/command/index.ts +79 -0
- package/src/command/template/initialize.txt +10 -0
- package/src/command/template/review.txt +73 -0
- package/src/config/config.ts +886 -0
- package/src/config/markdown.ts +41 -0
- package/src/env/index.ts +26 -0
- package/src/file/fzf.ts +124 -0
- package/src/file/ignore.ts +83 -0
- package/src/file/index.ts +326 -0
- package/src/file/ripgrep.ts +391 -0
- package/src/file/time.ts +38 -0
- package/src/file/watcher.ts +89 -0
- package/src/flag/flag.ts +28 -0
- package/src/format/formatter.ts +277 -0
- package/src/format/index.ts +137 -0
- package/src/global/index.ts +52 -0
- package/src/id/id.ts +73 -0
- package/src/ide/index.ts +75 -0
- package/src/index.ts +158 -0
- package/src/installation/index.ts +194 -0
- package/src/lsp/client.ts +215 -0
- package/src/lsp/index.ts +370 -0
- package/src/lsp/language.ts +111 -0
- package/src/lsp/server.ts +1327 -0
- package/src/mcp/auth.ts +82 -0
- package/src/mcp/index.ts +576 -0
- package/src/mcp/oauth-callback.ts +203 -0
- package/src/mcp/oauth-provider.ts +132 -0
- package/src/notification/index.ts +101 -0
- package/src/patch/index.ts +622 -0
- package/src/permission/index.ts +198 -0
- package/src/plugin/index.ts +95 -0
- package/src/project/bootstrap.ts +31 -0
- package/src/project/instance.ts +68 -0
- package/src/project/project.ts +133 -0
- package/src/project/state.ts +65 -0
- package/src/project/vcs.ts +77 -0
- package/src/provider/auth.ts +143 -0
- package/src/provider/models-macro.ts +11 -0
- package/src/provider/models.ts +93 -0
- package/src/provider/provider.ts +996 -0
- package/src/provider/sdk/openai-compatible/src/README.md +5 -0
- package/src/provider/sdk/openai-compatible/src/index.ts +2 -0
- package/src/provider/sdk/openai-compatible/src/openai-compatible-provider.ts +100 -0
- package/src/provider/sdk/openai-compatible/src/responses/convert-to-openai-responses-input.ts +303 -0
- package/src/provider/sdk/openai-compatible/src/responses/map-openai-responses-finish-reason.ts +27 -0
- package/src/provider/sdk/openai-compatible/src/responses/openai-config.ts +18 -0
- package/src/provider/sdk/openai-compatible/src/responses/openai-error.ts +22 -0
- package/src/provider/sdk/openai-compatible/src/responses/openai-responses-api-types.ts +207 -0
- package/src/provider/sdk/openai-compatible/src/responses/openai-responses-language-model.ts +1713 -0
- package/src/provider/sdk/openai-compatible/src/responses/openai-responses-prepare-tools.ts +177 -0
- package/src/provider/sdk/openai-compatible/src/responses/openai-responses-settings.ts +1 -0
- package/src/provider/sdk/openai-compatible/src/responses/tool/code-interpreter.ts +88 -0
- package/src/provider/sdk/openai-compatible/src/responses/tool/file-search.ts +128 -0
- package/src/provider/sdk/openai-compatible/src/responses/tool/image-generation.ts +115 -0
- package/src/provider/sdk/openai-compatible/src/responses/tool/local-shell.ts +65 -0
- package/src/provider/sdk/openai-compatible/src/responses/tool/web-search-preview.ts +104 -0
- package/src/provider/sdk/openai-compatible/src/responses/tool/web-search.ts +103 -0
- package/src/provider/transform.ts +406 -0
- package/src/pty/index.ts +226 -0
- package/src/ratelimit/index.ts +185 -0
- package/src/server/error.ts +36 -0
- package/src/server/project.ts +50 -0
- package/src/server/server.ts +2463 -0
- package/src/server/tui.ts +71 -0
- package/src/session/compaction.ts +257 -0
- package/src/session/index.ts +470 -0
- package/src/session/message-v2.ts +641 -0
- package/src/session/message.ts +189 -0
- package/src/session/processor.ts +443 -0
- package/src/session/prompt/anthropic-20250930.txt +166 -0
- package/src/session/prompt/anthropic.txt +105 -0
- package/src/session/prompt/anthropic_spoof.txt +1 -0
- package/src/session/prompt/beast.txt +147 -0
- package/src/session/prompt/build-switch.txt +5 -0
- package/src/session/prompt/codex.txt +318 -0
- package/src/session/prompt/compaction.txt +12 -0
- package/src/session/prompt/copilot-gpt-5.txt +143 -0
- package/src/session/prompt/gemini.txt +155 -0
- package/src/session/prompt/max-steps.txt +16 -0
- package/src/session/prompt/plan-reminder-anthropic.txt +67 -0
- package/src/session/prompt/plan.txt +26 -0
- package/src/session/prompt/polaris.txt +107 -0
- package/src/session/prompt/qwen.txt +109 -0
- package/src/session/prompt/summarize.txt +4 -0
- package/src/session/prompt/title.txt +36 -0
- package/src/session/prompt.ts +1541 -0
- package/src/session/retry.ts +82 -0
- package/src/session/revert.ts +108 -0
- package/src/session/status.ts +75 -0
- package/src/session/summary.ts +203 -0
- package/src/session/system.ts +148 -0
- package/src/session/todo.ts +36 -0
- package/src/share/share-next.ts +195 -0
- package/src/share/share.ts +87 -0
- package/src/snapshot/index.ts +197 -0
- package/src/storage/storage.ts +226 -0
- package/src/telemetry/index.ts +232 -0
- package/src/tool/bash.ts +365 -0
- package/src/tool/bash.txt +128 -0
- package/src/tool/batch.ts +173 -0
- package/src/tool/batch.txt +28 -0
- package/src/tool/codesearch.ts +138 -0
- package/src/tool/codesearch.txt +12 -0
- package/src/tool/edit.ts +674 -0
- package/src/tool/edit.txt +10 -0
- package/src/tool/glob.ts +65 -0
- package/src/tool/glob.txt +6 -0
- package/src/tool/grep.ts +120 -0
- package/src/tool/grep.txt +8 -0
- package/src/tool/invalid.ts +17 -0
- package/src/tool/ls.ts +110 -0
- package/src/tool/ls.txt +1 -0
- package/src/tool/lsp-diagnostics.ts +26 -0
- package/src/tool/lsp-diagnostics.txt +1 -0
- package/src/tool/lsp-hover.ts +31 -0
- package/src/tool/lsp-hover.txt +1 -0
- package/src/tool/multiedit.ts +46 -0
- package/src/tool/multiedit.txt +41 -0
- package/src/tool/patch.ts +233 -0
- package/src/tool/patch.txt +1 -0
- package/src/tool/read.ts +217 -0
- package/src/tool/read.txt +12 -0
- package/src/tool/registry.ts +148 -0
- package/src/tool/task.ts +135 -0
- package/src/tool/task.txt +60 -0
- package/src/tool/todo.ts +39 -0
- package/src/tool/todoread.txt +14 -0
- package/src/tool/todowrite.txt +167 -0
- package/src/tool/tool.ts +66 -0
- package/src/tool/webfetch.ts +187 -0
- package/src/tool/webfetch.txt +14 -0
- package/src/tool/websearch.ts +150 -0
- package/src/tool/websearch.txt +11 -0
- package/src/tool/write.ts +99 -0
- package/src/tool/write.txt +8 -0
- package/src/types/shims.d.ts +3 -0
- package/src/util/color.ts +19 -0
- package/src/util/context.ts +25 -0
- package/src/util/defer.ts +12 -0
- package/src/util/eventloop.ts +20 -0
- package/src/util/filesystem.ts +69 -0
- package/src/util/fn.ts +11 -0
- package/src/util/iife.ts +3 -0
- package/src/util/keybind.ts +79 -0
- package/src/util/lazy.ts +11 -0
- package/src/util/locale.ts +81 -0
- package/src/util/lock.ts +98 -0
- package/src/util/log.ts +177 -0
- package/src/util/queue.ts +32 -0
- package/src/util/rpc.ts +42 -0
- package/src/util/scrap.ts +10 -0
- package/src/util/signal.ts +12 -0
- package/src/util/timeout.ts +14 -0
- package/src/util/token.ts +7 -0
- package/src/util/wildcard.ts +54 -0
- package/sst-env.d.ts +9 -0
- package/test/bun.test.ts +53 -0
- package/test/config/agent-color.test.ts +66 -0
- package/test/config/config.test.ts +503 -0
- package/test/config/markdown.test.ts +89 -0
- package/test/file/ignore.test.ts +10 -0
- package/test/fixture/fixture.ts +28 -0
- package/test/fixture/lsp/fake-lsp-server.js +77 -0
- package/test/ide/ide.test.ts +82 -0
- package/test/keybind.test.ts +317 -0
- package/test/lsp/client.test.ts +95 -0
- package/test/patch/patch.test.ts +348 -0
- package/test/preload.ts +38 -0
- package/test/project/project.test.ts +42 -0
- package/test/provider/provider.test.ts +1809 -0
- package/test/provider/transform.test.ts +305 -0
- package/test/session/retry.test.ts +61 -0
- package/test/session/session.test.ts +71 -0
- package/test/snapshot/snapshot.test.ts +939 -0
- package/test/tool/__snapshots__/tool.test.ts.snap +9 -0
- package/test/tool/bash.test.ts +55 -0
- package/test/tool/patch.test.ts +259 -0
- package/test/util/iife.test.ts +36 -0
- package/test/util/lazy.test.ts +50 -0
- package/test/util/timeout.test.ts +21 -0
- package/test/util/wildcard.test.ts +55 -0
- package/tsconfig.json +17 -0
|
@@ -0,0 +1,342 @@
|
|
|
1
|
+
import type { Argv } from "yargs"
|
|
2
|
+
import path from "path"
|
|
3
|
+
import { UI } from "../ui"
|
|
4
|
+
import { cmd } from "./cmd"
|
|
5
|
+
import { Flag } from "../../flag/flag"
|
|
6
|
+
import { bootstrap } from "../bootstrap"
|
|
7
|
+
import { Command } from "../../command"
|
|
8
|
+
import { EOL } from "os"
|
|
9
|
+
import { select } from "@clack/prompts"
|
|
10
|
+
import { createOpencodeClient, type OpencodeClient } from "@opencode-ai/sdk/v2"
|
|
11
|
+
import { Server } from "../../server/server"
|
|
12
|
+
import { Provider } from "../../provider/provider"
|
|
13
|
+
|
|
14
|
+
const TOOL: Record<string, [string, string]> = {
|
|
15
|
+
todowrite: ["Todo", UI.Style.TEXT_WARNING_BOLD],
|
|
16
|
+
todoread: ["Todo", UI.Style.TEXT_WARNING_BOLD],
|
|
17
|
+
bash: ["Bash", UI.Style.TEXT_DANGER_BOLD],
|
|
18
|
+
edit: ["Edit", UI.Style.TEXT_SUCCESS_BOLD],
|
|
19
|
+
glob: ["Glob", UI.Style.TEXT_INFO_BOLD],
|
|
20
|
+
grep: ["Grep", UI.Style.TEXT_INFO_BOLD],
|
|
21
|
+
list: ["List", UI.Style.TEXT_INFO_BOLD],
|
|
22
|
+
read: ["Read", UI.Style.TEXT_HIGHLIGHT_BOLD],
|
|
23
|
+
write: ["Write", UI.Style.TEXT_SUCCESS_BOLD],
|
|
24
|
+
websearch: ["Search", UI.Style.TEXT_DIM_BOLD],
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export const RunCommand = cmd({
|
|
28
|
+
command: "run [message..]",
|
|
29
|
+
describe: "run opencode with a message",
|
|
30
|
+
builder: (yargs: Argv) => {
|
|
31
|
+
return yargs
|
|
32
|
+
.positional("message", {
|
|
33
|
+
describe: "message to send",
|
|
34
|
+
type: "string",
|
|
35
|
+
array: true,
|
|
36
|
+
default: [],
|
|
37
|
+
})
|
|
38
|
+
.option("command", {
|
|
39
|
+
describe: "the command to run, use message for args",
|
|
40
|
+
type: "string",
|
|
41
|
+
})
|
|
42
|
+
.option("continue", {
|
|
43
|
+
alias: ["c"],
|
|
44
|
+
describe: "continue the last session",
|
|
45
|
+
type: "boolean",
|
|
46
|
+
})
|
|
47
|
+
.option("session", {
|
|
48
|
+
alias: ["s"],
|
|
49
|
+
describe: "session id to continue",
|
|
50
|
+
type: "string",
|
|
51
|
+
})
|
|
52
|
+
.option("share", {
|
|
53
|
+
type: "boolean",
|
|
54
|
+
describe: "share the session",
|
|
55
|
+
})
|
|
56
|
+
.option("model", {
|
|
57
|
+
type: "string",
|
|
58
|
+
alias: ["m"],
|
|
59
|
+
describe: "model to use in the format of provider/model",
|
|
60
|
+
})
|
|
61
|
+
.option("agent", {
|
|
62
|
+
type: "string",
|
|
63
|
+
describe: "agent to use",
|
|
64
|
+
})
|
|
65
|
+
.option("format", {
|
|
66
|
+
type: "string",
|
|
67
|
+
choices: ["default", "json"],
|
|
68
|
+
default: "default",
|
|
69
|
+
describe: "format: default (formatted) or json (raw JSON events)",
|
|
70
|
+
})
|
|
71
|
+
.option("file", {
|
|
72
|
+
alias: ["f"],
|
|
73
|
+
type: "string",
|
|
74
|
+
array: true,
|
|
75
|
+
describe: "file(s) to attach to message",
|
|
76
|
+
})
|
|
77
|
+
.option("title", {
|
|
78
|
+
type: "string",
|
|
79
|
+
describe: "title for the session (uses truncated prompt if no value provided)",
|
|
80
|
+
})
|
|
81
|
+
.option("attach", {
|
|
82
|
+
type: "string",
|
|
83
|
+
describe: "attach to a running opencode server (e.g., http://localhost:4096)",
|
|
84
|
+
})
|
|
85
|
+
.option("port", {
|
|
86
|
+
type: "number",
|
|
87
|
+
describe: "port for the local server (defaults to random port if no value provided)",
|
|
88
|
+
})
|
|
89
|
+
},
|
|
90
|
+
handler: async (args) => {
|
|
91
|
+
let message = [...args.message, ...(args["--"] || [])].join(" ")
|
|
92
|
+
|
|
93
|
+
const fileParts: any[] = []
|
|
94
|
+
if (args.file) {
|
|
95
|
+
const files = Array.isArray(args.file) ? args.file : [args.file]
|
|
96
|
+
|
|
97
|
+
for (const filePath of files) {
|
|
98
|
+
const resolvedPath = path.resolve(process.cwd(), filePath)
|
|
99
|
+
const file = Bun.file(resolvedPath)
|
|
100
|
+
const stats = await file.stat().catch(() => {})
|
|
101
|
+
if (!stats) {
|
|
102
|
+
UI.error(`File not found: ${filePath}`)
|
|
103
|
+
process.exit(1)
|
|
104
|
+
}
|
|
105
|
+
if (!(await file.exists())) {
|
|
106
|
+
UI.error(`File not found: ${filePath}`)
|
|
107
|
+
process.exit(1)
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
const stat = await file.stat()
|
|
111
|
+
const mime = stat.isDirectory() ? "application/x-directory" : "text/plain"
|
|
112
|
+
|
|
113
|
+
fileParts.push({
|
|
114
|
+
type: "file",
|
|
115
|
+
url: `file://${resolvedPath}`,
|
|
116
|
+
filename: path.basename(resolvedPath),
|
|
117
|
+
mime,
|
|
118
|
+
})
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
if (!process.stdin.isTTY) message += "\n" + (await Bun.stdin.text())
|
|
123
|
+
|
|
124
|
+
if (message.trim().length === 0 && !args.command) {
|
|
125
|
+
UI.error("You must provide a message or a command")
|
|
126
|
+
process.exit(1)
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
const execute = async (sdk: OpencodeClient, sessionID: string) => {
|
|
130
|
+
const printEvent = (color: string, type: string, title: string) => {
|
|
131
|
+
UI.println(
|
|
132
|
+
color + `|`,
|
|
133
|
+
UI.Style.TEXT_NORMAL + UI.Style.TEXT_DIM + ` ${type.padEnd(7, " ")}`,
|
|
134
|
+
"",
|
|
135
|
+
UI.Style.TEXT_NORMAL + title,
|
|
136
|
+
)
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
const outputJsonEvent = (type: string, data: any) => {
|
|
140
|
+
if (args.format === "json") {
|
|
141
|
+
process.stdout.write(JSON.stringify({ type, timestamp: Date.now(), sessionID, ...data }) + EOL)
|
|
142
|
+
return true
|
|
143
|
+
}
|
|
144
|
+
return false
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
const events = await sdk.event.subscribe()
|
|
148
|
+
let errorMsg: string | undefined
|
|
149
|
+
|
|
150
|
+
const eventProcessor = (async () => {
|
|
151
|
+
for await (const event of events.stream) {
|
|
152
|
+
if (event.type === "message.part.updated") {
|
|
153
|
+
const part = event.properties.part
|
|
154
|
+
if (part.sessionID !== sessionID) continue
|
|
155
|
+
|
|
156
|
+
if (part.type === "tool" && part.state.status === "completed") {
|
|
157
|
+
if (outputJsonEvent("tool_use", { part })) continue
|
|
158
|
+
const [tool, color] = TOOL[part.tool] ?? [part.tool, UI.Style.TEXT_INFO_BOLD]
|
|
159
|
+
const title =
|
|
160
|
+
part.state.title ||
|
|
161
|
+
(Object.keys(part.state.input).length > 0 ? JSON.stringify(part.state.input) : "Unknown")
|
|
162
|
+
printEvent(color, tool, title)
|
|
163
|
+
if (part.tool === "bash" && part.state.output?.trim()) {
|
|
164
|
+
UI.println()
|
|
165
|
+
UI.println(part.state.output)
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
if (part.type === "step-start") {
|
|
170
|
+
if (outputJsonEvent("step_start", { part })) continue
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
if (part.type === "step-finish") {
|
|
174
|
+
if (outputJsonEvent("step_finish", { part })) continue
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
if (part.type === "text" && part.time?.end) {
|
|
178
|
+
if (outputJsonEvent("text", { part })) continue
|
|
179
|
+
const isPiped = !process.stdout.isTTY
|
|
180
|
+
if (!isPiped) UI.println()
|
|
181
|
+
process.stdout.write((isPiped ? part.text : UI.markdown(part.text)) + EOL)
|
|
182
|
+
if (!isPiped) UI.println()
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
if (event.type === "session.error") {
|
|
187
|
+
const props = event.properties
|
|
188
|
+
if (props.sessionID !== sessionID || !props.error) continue
|
|
189
|
+
let err = String(props.error.name)
|
|
190
|
+
if ("data" in props.error && props.error.data && "message" in props.error.data) {
|
|
191
|
+
err = String(props.error.data.message)
|
|
192
|
+
}
|
|
193
|
+
errorMsg = errorMsg ? errorMsg + EOL + err : err
|
|
194
|
+
if (outputJsonEvent("error", { error: props.error })) continue
|
|
195
|
+
UI.error(err)
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
if (event.type === "session.idle" && event.properties.sessionID === sessionID) {
|
|
199
|
+
break
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
if (event.type === "permission.updated") {
|
|
203
|
+
const permission = event.properties
|
|
204
|
+
if (permission.sessionID !== sessionID) continue
|
|
205
|
+
const result = await select({
|
|
206
|
+
message: `Permission required to run: ${permission.title}`,
|
|
207
|
+
options: [
|
|
208
|
+
{ value: "once", label: "Allow once" },
|
|
209
|
+
{ value: "always", label: "Always allow" },
|
|
210
|
+
{ value: "reject", label: "Reject" },
|
|
211
|
+
],
|
|
212
|
+
initialValue: "once",
|
|
213
|
+
}).catch(() => "reject")
|
|
214
|
+
const response = (result.toString().includes("cancel") ? "reject" : result) as "once" | "always" | "reject"
|
|
215
|
+
await sdk.permission.respond({
|
|
216
|
+
sessionID,
|
|
217
|
+
permissionID: permission.id,
|
|
218
|
+
response,
|
|
219
|
+
})
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
})()
|
|
223
|
+
|
|
224
|
+
if (args.command) {
|
|
225
|
+
await sdk.session.command({
|
|
226
|
+
sessionID,
|
|
227
|
+
agent: args.agent || "build",
|
|
228
|
+
model: args.model,
|
|
229
|
+
command: args.command,
|
|
230
|
+
arguments: message,
|
|
231
|
+
})
|
|
232
|
+
} else {
|
|
233
|
+
const modelParam = args.model ? Provider.parseModel(args.model) : undefined
|
|
234
|
+
await sdk.session.prompt({
|
|
235
|
+
sessionID,
|
|
236
|
+
agent: args.agent || "build",
|
|
237
|
+
model: modelParam,
|
|
238
|
+
parts: [...fileParts, { type: "text", text: message }],
|
|
239
|
+
})
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
await eventProcessor
|
|
243
|
+
if (errorMsg) process.exit(1)
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
if (args.attach) {
|
|
247
|
+
const sdk = createOpencodeClient({ baseUrl: args.attach })
|
|
248
|
+
|
|
249
|
+
const sessionID = await (async () => {
|
|
250
|
+
if (args.continue) {
|
|
251
|
+
const result = await sdk.session.list()
|
|
252
|
+
return result.data?.find((s) => !s.parentID)?.id
|
|
253
|
+
}
|
|
254
|
+
if (args.session) return args.session
|
|
255
|
+
|
|
256
|
+
const title =
|
|
257
|
+
args.title !== undefined
|
|
258
|
+
? args.title === ""
|
|
259
|
+
? message.slice(0, 50) + (message.length > 50 ? "..." : "")
|
|
260
|
+
: args.title
|
|
261
|
+
: undefined
|
|
262
|
+
|
|
263
|
+
const result = await sdk.session.create(title ? { title } : {})
|
|
264
|
+
return result.data?.id
|
|
265
|
+
})()
|
|
266
|
+
|
|
267
|
+
if (!sessionID) {
|
|
268
|
+
UI.error("Session not found")
|
|
269
|
+
process.exit(1)
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
const cfgResult = await sdk.config.get()
|
|
273
|
+
if (cfgResult.data && (cfgResult.data.share === "auto" || Flag.OPENCODE_AUTO_SHARE || args.share)) {
|
|
274
|
+
const shareResult = await sdk.session.share({ sessionID }).catch((error) => {
|
|
275
|
+
if (error instanceof Error && error.message.includes("disabled")) {
|
|
276
|
+
UI.println(UI.Style.TEXT_DANGER_BOLD + "! " + error.message)
|
|
277
|
+
}
|
|
278
|
+
return { error }
|
|
279
|
+
})
|
|
280
|
+
if (!shareResult.error) {
|
|
281
|
+
UI.println(UI.Style.TEXT_INFO_BOLD + "~ https://opencode.ai/s/" + sessionID.slice(-8))
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
return await execute(sdk, sessionID)
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
await bootstrap(process.cwd(), async () => {
|
|
289
|
+
const server = Server.listen({ port: args.port ?? 0, hostname: "127.0.0.1" })
|
|
290
|
+
const sdk = createOpencodeClient({ baseUrl: `http://${server.hostname}:${server.port}` })
|
|
291
|
+
|
|
292
|
+
if (args.command) {
|
|
293
|
+
const exists = await Command.get(args.command)
|
|
294
|
+
if (!exists) {
|
|
295
|
+
server.stop()
|
|
296
|
+
UI.error(`Command "${args.command}" not found`)
|
|
297
|
+
process.exit(1)
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
const sessionID = await (async () => {
|
|
302
|
+
if (args.continue) {
|
|
303
|
+
const result = await sdk.session.list()
|
|
304
|
+
return result.data?.find((s) => !s.parentID)?.id
|
|
305
|
+
}
|
|
306
|
+
if (args.session) return args.session
|
|
307
|
+
|
|
308
|
+
const title =
|
|
309
|
+
args.title !== undefined
|
|
310
|
+
? args.title === ""
|
|
311
|
+
? message.slice(0, 50) + (message.length > 50 ? "..." : "")
|
|
312
|
+
: args.title
|
|
313
|
+
: undefined
|
|
314
|
+
|
|
315
|
+
const result = await sdk.session.create(title ? { title } : {})
|
|
316
|
+
return result.data?.id
|
|
317
|
+
})()
|
|
318
|
+
|
|
319
|
+
if (!sessionID) {
|
|
320
|
+
server.stop()
|
|
321
|
+
UI.error("Session not found")
|
|
322
|
+
process.exit(1)
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
const cfgResult = await sdk.config.get()
|
|
326
|
+
if (cfgResult.data && (cfgResult.data.share === "auto" || Flag.OPENCODE_AUTO_SHARE || args.share)) {
|
|
327
|
+
const shareResult = await sdk.session.share({ sessionID }).catch((error) => {
|
|
328
|
+
if (error instanceof Error && error.message.includes("disabled")) {
|
|
329
|
+
UI.println(UI.Style.TEXT_DANGER_BOLD + "! " + error.message)
|
|
330
|
+
}
|
|
331
|
+
return { error }
|
|
332
|
+
})
|
|
333
|
+
if (!shareResult.error) {
|
|
334
|
+
UI.println(UI.Style.TEXT_INFO_BOLD + "~ https://opencode.ai/s/" + sessionID.slice(-8))
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
await execute(sdk, sessionID)
|
|
339
|
+
server.stop()
|
|
340
|
+
})
|
|
341
|
+
},
|
|
342
|
+
})
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Server } from "../../server/server"
|
|
2
|
+
import { cmd } from "./cmd"
|
|
3
|
+
|
|
4
|
+
export const ServeCommand = cmd({
|
|
5
|
+
command: "serve",
|
|
6
|
+
builder: (yargs) =>
|
|
7
|
+
yargs
|
|
8
|
+
.option("port", {
|
|
9
|
+
alias: ["p"],
|
|
10
|
+
type: "number",
|
|
11
|
+
describe: "port to listen on",
|
|
12
|
+
default: 0,
|
|
13
|
+
})
|
|
14
|
+
.option("hostname", {
|
|
15
|
+
type: "string",
|
|
16
|
+
describe: "hostname to listen on",
|
|
17
|
+
default: "127.0.0.1",
|
|
18
|
+
}),
|
|
19
|
+
describe: "starts a headless opencode server",
|
|
20
|
+
handler: async (args) => {
|
|
21
|
+
const hostname = args.hostname
|
|
22
|
+
const port = args.port
|
|
23
|
+
const server = Server.listen({
|
|
24
|
+
port,
|
|
25
|
+
hostname,
|
|
26
|
+
})
|
|
27
|
+
console.log(`opencode server listening on http://${server.hostname}:${server.port}`)
|
|
28
|
+
await new Promise(() => {})
|
|
29
|
+
await server.stop()
|
|
30
|
+
},
|
|
31
|
+
})
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import type { Argv } from "yargs"
|
|
2
|
+
import { cmd } from "./cmd"
|
|
3
|
+
import { Session } from "../../session"
|
|
4
|
+
import { bootstrap } from "../bootstrap"
|
|
5
|
+
import { UI } from "../ui"
|
|
6
|
+
import { Locale } from "../../util/locale"
|
|
7
|
+
import { EOL } from "os"
|
|
8
|
+
|
|
9
|
+
export const SessionCommand = cmd({
|
|
10
|
+
command: "session",
|
|
11
|
+
describe: "manage sessions",
|
|
12
|
+
builder: (yargs: Argv) => yargs.command(SessionListCommand).demandCommand(),
|
|
13
|
+
async handler() {},
|
|
14
|
+
})
|
|
15
|
+
|
|
16
|
+
export const SessionListCommand = cmd({
|
|
17
|
+
command: "list",
|
|
18
|
+
describe: "list sessions",
|
|
19
|
+
builder: (yargs: Argv) => {
|
|
20
|
+
return yargs
|
|
21
|
+
.option("max-count", {
|
|
22
|
+
alias: "n",
|
|
23
|
+
describe: "limit to N most recent sessions",
|
|
24
|
+
type: "number",
|
|
25
|
+
})
|
|
26
|
+
.option("format", {
|
|
27
|
+
describe: "output format",
|
|
28
|
+
type: "string",
|
|
29
|
+
choices: ["table", "json"],
|
|
30
|
+
default: "table",
|
|
31
|
+
})
|
|
32
|
+
},
|
|
33
|
+
handler: async (args) => {
|
|
34
|
+
await bootstrap(process.cwd(), async () => {
|
|
35
|
+
const sessions = []
|
|
36
|
+
for await (const session of Session.list()) {
|
|
37
|
+
if (!session.parentID) {
|
|
38
|
+
sessions.push(session)
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
sessions.sort((a, b) => b.time.updated - a.time.updated)
|
|
43
|
+
|
|
44
|
+
const limitedSessions = args.maxCount ? sessions.slice(0, args.maxCount) : sessions
|
|
45
|
+
|
|
46
|
+
if (limitedSessions.length === 0) {
|
|
47
|
+
return
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
let output: string
|
|
51
|
+
if (args.format === "json") {
|
|
52
|
+
output = formatSessionJSON(limitedSessions)
|
|
53
|
+
} else {
|
|
54
|
+
output = formatSessionTable(limitedSessions)
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
const shouldPaginate = process.stdout.isTTY && !args.maxCount && args.format === "table"
|
|
58
|
+
|
|
59
|
+
if (shouldPaginate) {
|
|
60
|
+
const proc = Bun.spawn({
|
|
61
|
+
cmd: ["less", "-R", "-S"],
|
|
62
|
+
stdin: "pipe",
|
|
63
|
+
stdout: "inherit",
|
|
64
|
+
stderr: "inherit",
|
|
65
|
+
})
|
|
66
|
+
|
|
67
|
+
proc.stdin.write(output)
|
|
68
|
+
proc.stdin.end()
|
|
69
|
+
await proc.exited
|
|
70
|
+
} else {
|
|
71
|
+
console.log(output)
|
|
72
|
+
}
|
|
73
|
+
})
|
|
74
|
+
},
|
|
75
|
+
})
|
|
76
|
+
|
|
77
|
+
function formatSessionTable(sessions: Session.Info[]): string {
|
|
78
|
+
const lines: string[] = []
|
|
79
|
+
|
|
80
|
+
const maxIdWidth = Math.max(20, ...sessions.map((s) => s.id.length))
|
|
81
|
+
const maxTitleWidth = Math.max(25, ...sessions.map((s) => s.title.length))
|
|
82
|
+
|
|
83
|
+
const header = `Session ID${" ".repeat(maxIdWidth - 10)} Title${" ".repeat(maxTitleWidth - 5)} Updated`
|
|
84
|
+
lines.push(header)
|
|
85
|
+
lines.push("─".repeat(header.length))
|
|
86
|
+
for (const session of sessions) {
|
|
87
|
+
const truncatedTitle = Locale.truncate(session.title, maxTitleWidth)
|
|
88
|
+
const timeStr = Locale.todayTimeOrDateTime(session.time.updated)
|
|
89
|
+
const line = `${session.id.padEnd(maxIdWidth)} ${truncatedTitle.padEnd(maxTitleWidth)} ${timeStr}`
|
|
90
|
+
lines.push(line)
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
return lines.join(EOL)
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
function formatSessionJSON(sessions: Session.Info[]): string {
|
|
97
|
+
const jsonData = sessions.map((session) => ({
|
|
98
|
+
id: session.id,
|
|
99
|
+
title: session.title,
|
|
100
|
+
updated: session.time.updated,
|
|
101
|
+
created: session.time.created,
|
|
102
|
+
projectId: session.projectID,
|
|
103
|
+
directory: session.directory,
|
|
104
|
+
}))
|
|
105
|
+
return JSON.stringify(jsonData, null, 2)
|
|
106
|
+
}
|