mirror of
https://github.com/sdwolf4103/opencode-working-memory.git
synced 2026-07-17 12:56:42 +02:00
df54232fb9
- Replace 2000+ line monolithic index.ts with thin wrapper importing MemoryV2Plugin - Update package.json description to reflect three-layer architecture - Add test script for Node.js built-in test runner
9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
import type { PluginModule } from "@opencode-ai/plugin";
|
|
import { MemoryV2Plugin } from "./src/plugin.ts";
|
|
|
|
const plugin: PluginModule = {
|
|
id: "working-memory",
|
|
server: MemoryV2Plugin,
|
|
};
|
|
|
|
export default plugin; |