Set up project scaffold: Bun/OpenCode plugin with registry pattern

- AGENTS.md adapted from taskgraph for this Bun/TypeScript plugin
- Dual MIT/Apache-2.0 licenses
- Package.json, tsconfig, biome config following open-memory pattern
- Skeleton src/ with registry-pattern tasks tool (help operation working)
- Opencode.json plugin config
- .gitignore for dist, node_modules, lockb
- Remove typo .gitingore files, proper .gitignore in .opencode/
This commit is contained in:
2026-04-28 07:21:24 +00:00
parent 839e34f8f5
commit fd59748a64
14 changed files with 753 additions and 8 deletions

10
src/index.ts Normal file
View File

@@ -0,0 +1,10 @@
import type { Plugin } from "@opencode-ai/plugin";
import { createTools } from "./tools.js";
const OpenTasksPlugin: Plugin = async (ctx) => {
return {
tool: createTools(ctx),
};
};
export default OpenTasksPlugin;