Files
opencode-working-memory/index.ts
T
Ralph Chang df54232fb9 refactor: simplify entry point to v2 architecture
- 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
2026-04-26 11:13:57 +08:00

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;