fix: use ES module imports in task-cli.ts (#305)
Replaces require('fs')/require('path') with node:-prefixed namespace imports in .opencode/skills/task-management/scripts/task-cli.ts, matching the prevailing style elsewhere in the repo (e.g. packages/cli/src/lib/installer.ts).
Note: this is a consistency cleanup, not a compile fix. The original PR description referenced a cmdComplete control-flow change that is not in the diff, and the reported compile error does not reproduce — tsc --noEmit passes on main, as @types/node auto-resolves from the root node_modules. Commit message corrected accordingly.
Follow-up: the same require() pattern remains in .opencode/skill/project-orchestration/scripts/stage-cli.ts and session-context-manager.ts.