Skip to content

Commit 1b8f2ca

Browse files
committed
fix(sync): restore effect prompt runtime after rebase
1 parent 138e059 commit 1b8f2ca

File tree

3 files changed

+1583
-1778
lines changed

3 files changed

+1583
-1778
lines changed

.github/workflows/pr-standards.yml.disabled

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ jobs:
4747
repo: context.repo.repo,
4848
issue_number: pr.number
4949
});
50-
50+
5151
const existing = comments.find(c => c.body.includes(markerText));
5252
if (existing) return;
53-
53+
5454
await github.rest.issues.createComment({
5555
owner: context.repo.owner,
5656
repo: context.repo.repo,

packages/opencode/src/plugin/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import { Effect, Layer, ServiceMap, Stream } from "effect"
1414
import { InstanceState } from "@/effect/instance-state"
1515
import { makeRuntime } from "@/effect/run-service"
1616
import { errorMessage } from "@/util/error"
17+
import { Installation } from "@/installation"
1718
import { PluginLoader } from "./loader"
1819
import { parsePluginSpecifier, readPluginId, readV1Plugin, resolvePluginId } from "./shared"
1920

@@ -96,8 +97,6 @@ export namespace Plugin {
9697
hooks.push(await server(input, load.row.options))
9798
}
9899
}
99-
// Old npm package names for plugins that are now built-in — skip if users still have them in config
100-
const DEPRECATED_PLUGIN_PACKAGES = ["opencode-openai-codex-auth"]
101100

102101
export const layer = Layer.effect(
103102
Service,

0 commit comments

Comments
 (0)