Files
deepseek-harness/examples/headless-agent/tests/fixtures/repository-plugin/dsh-plugin.mjs
T

10 lines
498 B
JavaScript
Raw Normal View History

2026-07-30 04:15:07 +08:00
// Generated by dsh-plugin-prepare. Do not edit.
const manifest = {"name":"headless-repository-fixture","skills":["dsh-plugin-assets/skills/0"]}
export const name = "headless-repository-fixture"
export const inject = ["loader","skills"]
2026-07-30 04:15:07 +08:00
export async function apply(ctx) {
const runtime = ctx.loader.builtins["dsh-repository-plugin"]
if (runtime === undefined) throw new Error("missing Cordis builtin dsh-repository-plugin")
2026-07-30 04:15:07 +08:00
await ctx.plugin(runtime, { baseUrl: import.meta.url, manifest })
}