mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 22:03:58 +00:00
This release has a bunch of minor breaking changes if you are using opencode plugins or sdk 1. storage events have been removed (we might bring this back but had some issues) 2. concept of `app` is gone - there is a new concept called `project` and endpoints to list projects and get the current project 3. plugin receives `directory` which is cwd and `worktree` which is where the root of the project is if it's a git repo 4. the session.chat function has been renamed to session.prompt in sdk. it no longer requires model to be passed in (model is now an object) 5. every endpoint takes an optional `directory` parameter to operate as though opencode is running in that directory
206 lines
4.6 KiB
TypeScript
206 lines
4.6 KiB
TypeScript
import { BunProc } from "../bun"
|
|
import { Instance } from "../project/instance"
|
|
import { Filesystem } from "../util/filesystem"
|
|
|
|
export interface Info {
|
|
name: string
|
|
command: string[]
|
|
environment?: Record<string, string>
|
|
extensions: string[]
|
|
enabled(): Promise<boolean>
|
|
}
|
|
|
|
export const gofmt: Info = {
|
|
name: "gofmt",
|
|
command: ["gofmt", "-w", "$FILE"],
|
|
extensions: [".go"],
|
|
async enabled() {
|
|
return Bun.which("gofmt") !== null
|
|
},
|
|
}
|
|
|
|
export const mix: Info = {
|
|
name: "mix",
|
|
command: ["mix", "format", "$FILE"],
|
|
extensions: [".ex", ".exs", ".eex", ".heex", ".leex", ".neex", ".sface"],
|
|
async enabled() {
|
|
return Bun.which("mix") !== null
|
|
},
|
|
}
|
|
|
|
export const prettier: Info = {
|
|
name: "prettier",
|
|
command: [BunProc.which(), "x", "prettier", "--write", "$FILE"],
|
|
environment: {
|
|
BUN_BE_BUN: "1",
|
|
},
|
|
extensions: [
|
|
".js",
|
|
".jsx",
|
|
".mjs",
|
|
".cjs",
|
|
".ts",
|
|
".tsx",
|
|
".mts",
|
|
".cts",
|
|
".html",
|
|
".htm",
|
|
".css",
|
|
".scss",
|
|
".sass",
|
|
".less",
|
|
".vue",
|
|
".svelte",
|
|
".json",
|
|
".jsonc",
|
|
".yaml",
|
|
".yml",
|
|
".toml",
|
|
".xml",
|
|
".md",
|
|
".mdx",
|
|
".graphql",
|
|
".gql",
|
|
],
|
|
async enabled() {
|
|
const items = await Filesystem.findUp("package.json", Instance.directory, Instance.worktree)
|
|
for (const item of items) {
|
|
const json = await Bun.file(item).json()
|
|
if (json.dependencies?.prettier) return true
|
|
if (json.devDependencies?.prettier) return true
|
|
}
|
|
return false
|
|
},
|
|
}
|
|
|
|
export const biome: Info = {
|
|
name: "biome",
|
|
command: [BunProc.which(), "x", "@biomejs/biome", "format", "--write", "$FILE"],
|
|
environment: {
|
|
BUN_BE_BUN: "1",
|
|
},
|
|
extensions: [
|
|
".js",
|
|
".jsx",
|
|
".mjs",
|
|
".cjs",
|
|
".ts",
|
|
".tsx",
|
|
".mts",
|
|
".cts",
|
|
".html",
|
|
".htm",
|
|
".css",
|
|
".scss",
|
|
".sass",
|
|
".less",
|
|
".vue",
|
|
".svelte",
|
|
".json",
|
|
".jsonc",
|
|
".yaml",
|
|
".yml",
|
|
".toml",
|
|
".xml",
|
|
".md",
|
|
".mdx",
|
|
".graphql",
|
|
".gql",
|
|
],
|
|
async enabled() {
|
|
const configs = ["biome.json", "biome.jsonc"]
|
|
for (const config of configs) {
|
|
const found = await Filesystem.findUp(config, Instance.directory, Instance.worktree)
|
|
if (found.length > 0) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
},
|
|
}
|
|
|
|
export const zig: Info = {
|
|
name: "zig",
|
|
command: ["zig", "fmt", "$FILE"],
|
|
extensions: [".zig", ".zon"],
|
|
async enabled() {
|
|
return Bun.which("zig") !== null
|
|
},
|
|
}
|
|
|
|
export const clang: Info = {
|
|
name: "clang-format",
|
|
command: ["clang-format", "-i", "$FILE"],
|
|
extensions: [".c", ".cc", ".cpp", ".cxx", ".c++", ".h", ".hh", ".hpp", ".hxx", ".h++", ".ino", ".C", ".H"],
|
|
async enabled() {
|
|
const items = await Filesystem.findUp(".clang-format", Instance.directory, Instance.worktree)
|
|
return items.length > 0
|
|
},
|
|
}
|
|
|
|
export const ktlint: Info = {
|
|
name: "ktlint",
|
|
command: ["ktlint", "-F", "$FILE"],
|
|
extensions: [".kt", ".kts"],
|
|
async enabled() {
|
|
return Bun.which("ktlint") !== null
|
|
},
|
|
}
|
|
|
|
export const ruff: Info = {
|
|
name: "ruff",
|
|
command: ["ruff", "format", "$FILE"],
|
|
extensions: [".py", ".pyi"],
|
|
async enabled() {
|
|
if (!Bun.which("ruff")) return false
|
|
const configs = ["pyproject.toml", "ruff.toml", ".ruff.toml"]
|
|
for (const config of configs) {
|
|
const found = await Filesystem.findUp(config, Instance.directory, Instance.worktree)
|
|
if (found.length > 0) {
|
|
if (config === "pyproject.toml") {
|
|
const content = await Bun.file(found[0]).text()
|
|
if (content.includes("[tool.ruff]")) return true
|
|
} else {
|
|
return true
|
|
}
|
|
}
|
|
}
|
|
const deps = ["requirements.txt", "pyproject.toml", "Pipfile"]
|
|
for (const dep of deps) {
|
|
const found = await Filesystem.findUp(dep, Instance.directory, Instance.worktree)
|
|
if (found.length > 0) {
|
|
const content = await Bun.file(found[0]).text()
|
|
if (content.includes("ruff")) return true
|
|
}
|
|
}
|
|
return false
|
|
},
|
|
}
|
|
|
|
export const rubocop: Info = {
|
|
name: "rubocop",
|
|
command: ["rubocop", "--autocorrect", "$FILE"],
|
|
extensions: [".rb", ".rake", ".gemspec", ".ru"],
|
|
async enabled() {
|
|
return Bun.which("rubocop") !== null
|
|
},
|
|
}
|
|
|
|
export const standardrb: Info = {
|
|
name: "standardrb",
|
|
command: ["standardrb", "--fix", "$FILE"],
|
|
extensions: [".rb", ".rake", ".gemspec", ".ru"],
|
|
async enabled() {
|
|
return Bun.which("standardrb") !== null
|
|
},
|
|
}
|
|
|
|
export const htmlbeautifier: Info = {
|
|
name: "htmlbeautifier",
|
|
command: ["htmlbeautifier", "$FILE"],
|
|
extensions: [".erb", ".html.erb"],
|
|
async enabled() {
|
|
return Bun.which("htmlbeautifier") !== null
|
|
},
|
|
}
|