| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- import type { Argv } from "yargs"
- import { Bus } from "../../bus"
- import { Provider } from "../../provider/provider"
- import { Session } from "../../session"
- import { UI } from "../ui"
- import { cmd } from "./cmd"
- import { Flag } from "../../flag/flag"
- import { Config } from "../../config/config"
- import { bootstrap } from "../bootstrap"
- import { MessageV2 } from "../../session/message-v2"
- const TOOL: Record<string, [string, string]> = {
- todowrite: ["Todo", UI.Style.TEXT_WARNING_BOLD],
- todoread: ["Todo", UI.Style.TEXT_WARNING_BOLD],
- bash: ["Bash", UI.Style.TEXT_DANGER_BOLD],
- edit: ["Edit", UI.Style.TEXT_SUCCESS_BOLD],
- glob: ["Glob", UI.Style.TEXT_INFO_BOLD],
- grep: ["Grep", UI.Style.TEXT_INFO_BOLD],
- list: ["List", UI.Style.TEXT_INFO_BOLD],
- read: ["Read", UI.Style.TEXT_HIGHLIGHT_BOLD],
- write: ["Write", UI.Style.TEXT_SUCCESS_BOLD],
- websearch: ["Search", UI.Style.TEXT_DIM_BOLD],
- }
- export const RunCommand = cmd({
- command: "run [message..]",
- describe: "run opencode with a message",
- builder: (yargs: Argv) => {
- return yargs
- .positional("message", {
- describe: "message to send",
- type: "string",
- array: true,
- default: [],
- })
- .option("continue", {
- alias: ["c"],
- describe: "continue the last session",
- type: "boolean",
- })
- .option("session", {
- alias: ["s"],
- describe: "session id to continue",
- type: "string",
- })
- .option("share", {
- type: "boolean",
- describe: "share the session",
- })
- .option("model", {
- type: "string",
- alias: ["m"],
- describe: "model to use in the format of provider/model",
- })
- },
- handler: async (args) => {
- let message = args.message.join(" ")
- if (!process.stdin.isTTY) message += "\n" + (await Bun.stdin.text())
- await bootstrap({ cwd: process.cwd() }, async () => {
- const session = await (async () => {
- if (args.continue) {
- const first = await Session.list().next()
- if (first.done) return
- return first.value
- }
- if (args.session) return Session.get(args.session)
- return Session.create()
- })()
- if (!session) {
- UI.error("Session not found")
- return
- }
- const isPiped = !process.stdout.isTTY
- UI.empty()
- UI.println(UI.logo())
- UI.empty()
- const displayMessage = message.length > 300 ? message.slice(0, 300) + "..." : message
- UI.println(UI.Style.TEXT_NORMAL_BOLD + "> ", displayMessage)
- UI.empty()
- const cfg = await Config.get()
- if (cfg.autoshare || Flag.OPENCODE_AUTO_SHARE || args.share) {
- await Session.share(session.id)
- UI.println(UI.Style.TEXT_INFO_BOLD + "~ https://opencode.ai/s/" + session.id.slice(-8))
- }
- UI.empty()
- const { providerID, modelID } = args.model ? Provider.parseModel(args.model) : await Provider.defaultModel()
- UI.println(UI.Style.TEXT_NORMAL_BOLD + "@ ", UI.Style.TEXT_NORMAL + `${providerID}/${modelID}`)
- UI.empty()
- function printEvent(color: string, type: string, title: string) {
- UI.println(
- color + `|`,
- UI.Style.TEXT_NORMAL + UI.Style.TEXT_DIM + ` ${type.padEnd(7, " ")}`,
- "",
- UI.Style.TEXT_NORMAL + title,
- )
- }
- Bus.subscribe(MessageV2.Event.PartUpdated, async (evt) => {
- if (evt.properties.sessionID !== session.id) return
- const part = evt.properties.part
- if (part.type === "tool" && part.state.status === "completed") {
- const [tool, color] = TOOL[part.tool] ?? [part.tool, UI.Style.TEXT_INFO_BOLD]
- printEvent(color, tool, part.state.title || "Unknown")
- }
- if (part.type === "text") {
- if (part.text.includes("\n")) {
- UI.empty()
- UI.println(part.text)
- UI.empty()
- return
- }
- printEvent(UI.Style.TEXT_NORMAL_BOLD, "Text", part.text)
- }
- })
- const result = await Session.chat({
- sessionID: session.id,
- providerID,
- modelID,
- parts: [
- {
- type: "text",
- text: message,
- },
- ],
- })
- if (isPiped) {
- const match = result.parts.findLast((x) => x.type === "text")
- if (match) process.stdout.write(match.text)
- }
- UI.empty()
- })
- },
- })
|