@leonardmeagher2/opencode-tasksmdBackground task queue for OpenCode projects, powered by TASKS.md
0
3,303
74 in 7 days
41.2
Multi-signal model
14 days ago
2026-08-05
Install and configure
opencode.jsonWrites to this project's opencode.json — applies to this repository only.
opencode.json
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["@leonardmeagher2/opencode-tasksmd@0.11.0"]
}Writes to ~/.config/opencode/opencode.json — applies to every project.
~/.config/opencode/opencode.json
{
"$schema": "https://opencode.ai/config.json",
"plugin": ["@leonardmeagher2/opencode-tasksmd@0.11.0"]
}If you want to modify the plugin locally, install it into the project and reference the local path.
shell
pnpm add -D @leonardmeagher2/opencode-tasksmdopencode loads npm dependencies through its embedded runtime on startup and caches them locally — no manual global install needed.
This repo contains two packages for TASKS.md task boards.
packages/tasksmdis the Markdown board library.packages/opencode-tasksmdis the OpenCode plugin that runs tasks in the background.
Note: opencode-tasksmd does not run tasks on its own. Call tasks_start in
OpenCode to turn on background work for the current session.
Setup
Install dependencies once:
bun install
Common Commands
bun test
bun run typecheck
bun run build
bun run dev
bun run dev builds the local plugin bundle at .opencode/plugins/tasks.js.
bun run typecheck runs tsc --noEmit over the scripts and both packages.
packages/tasksmd emits its declarations during build, so run bun run build
before typechecking a fresh checkout.
Releases
bun run change
bun run version
bun run release
bun run release attempts every package and reports failures after all publish
commands have run. Additional arguments are passed to each bun publish call.
Package Docs
packages/tasksmd/README.mdpackages/opencode-tasksmd/README.md
Use the package READMEs for install and usage details.