fix+refactor(vcs): fix HEAD filter bug and effectify VcsService (#17829)

This commit is contained in:
Kit Langton 2026-03-16 13:59:11 -04:00 committed by GitHub
commit e5cbecf17c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 253 additions and 83 deletions

View file

@ -14,7 +14,8 @@ import { LSP } from "../lsp"
import { Format } from "../format"
import { TuiRoutes } from "./routes/tui"
import { Instance } from "../project/instance"
import { Vcs } from "../project/vcs"
import { Vcs, VcsService } from "../project/vcs"
import { runPromiseInstance } from "@/effect/runtime"
import { Agent } from "../agent/agent"
import { Skill } from "../skill/skill"
import { Auth } from "../auth"
@ -330,7 +331,7 @@ export namespace Server {
},
}),
async (c) => {
const branch = await Vcs.branch()
const branch = await runPromiseInstance(VcsService.use((s) => s.branch()))
return c.json({
branch,
})