Files
open-tasks/package.json
glm-5.1 c241aaaf7a Fix critical architecture gaps from review
- Handler signature: PluginInput is captured at init time via closure,
  not passed to execute handlers. ToolContext is the per-invocation
  context. This matches how open-memory actually works.
- Added @alkdev/typebox as explicit direct dependency (was transitive)
- Fixed TypeBox import path: Value comes from @alkdev/typebox/value
- Clarified cost operation args: bundled into WorkflowCostOptions object
- Added Zod/TypeBox distinction note in tool definition section
- Added todowrite to relationship table
- Resolved open question about show including full body
2026-04-29 07:07:41 +00:00

54 lines
1.3 KiB
JSON

{
"name": "@alkdev/open-tasks",
"version": "0.1.0",
"description": "OpenCode plugin for structured task management with graph analysis, decomposition guidance, and workflow cost estimation.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target bun --format esm && tsc --emitDeclarationOnly",
"lint": "bunx @biomejs/biome check .",
"format": "bunx @biomejs/biome format --write .",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"author": "Alkimia Development",
"license": "(MIT OR Apache-2.0)",
"repository": {
"type": "git",
"url": "git@git.alk.dev:alkdev/open-tasks.git"
},
"files": [
"dist",
"LICENSE-MIT",
"LICENSE-APACHE"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"opencode",
"plugin",
"tasks",
"taskgraph",
"dependency-analysis",
"decomposition"
],
"dependencies": {
"@alkdev/taskgraph": "^0.0.2",
"@alkdev/typebox": "^0.34.49",
"@opencode-ai/plugin": "^1.1.3"
},
"devDependencies": {
"@types/bun": "^1.2.0",
"@types/node": "^20.14.0",
"typescript": "^5.7.3"
}
}