Releases: BudEcosystem/taskgraph
Releases · BudEcosystem/taskgraph
v0.2.0
Bug fix
- Fix schema initialization for existing databases — The user_id column migration on the projects table was running
after the index creation, causing no such column: user_id errors on first run with a pre-existing database. Migration
now runs before the index.
Full Changelog: 0.1.0...0.2.0
v0.1.0
v0.1.0 — Initial Release
Task graph primitive for AI agent orchestration. Zero-config, embedded, powered by SQLite.
Highlights
- Dependency-aware task graph — Three dependency types (feeds_into, blocks, suggests) with automatic promotion when
blocking deps are satisfied - Multi-agent coordination — Atomic claim mechanism ensures no two agents grab the same task
- Handoff protocol — Upstream task results flow automatically to downstream tasks as context
- Three interfaces — CLI, MCP server (for Claude Code, Cursor, Windsurf), and HTTP REST API with SSE
- Plan adaptation — Six primitives to modify plans mid-execution: insert, amend, split, pivot, decompose, replan
- What-if analysis — Preview the effects of mutations before applying them
- Single-file storage — Everything lives in one .taskgraph.db SQLite file, no external services needed
Full Changelog: https://github.com/BudEcosystem/taskgraph/commits/0.1.0