#!/usr/bin/env node /** * Task management CLI - thin entry point. * * Commands: * node tasks.js list [--limit N] [--since ] [--until ] [--all] [--cache] * node tasks.js list-linked [--linked github|jira|linear] [--limit N] * node tasks.js add "task text" [--status todo|doing|done] [--tag foo] [--link github#123] [--cache] * node tasks.js update "task text" [--status ...] [--tag foo] [--link github#123] [--cache] * node tasks.js link --link github#123 * node tasks.js unlink * * Note: Group IDs are no longer used - the git repo itself provides scoping * via git-mem (git notes in refs/notes/mem). */ export {}; //# sourceMappingURL=tasks.d.ts.map