Added
get_notes_batchMCP tool — fetch multiple notes by ID in one call usingPromise.all. Replaces N sequentialget_noteround-trips afterget_context_packreturns note stubs. Returns{ notes, notFound }.MCP Prompts — 5 slash commands surfaced in Claude Code:
/session-start,/end-session,/daily,/approve,/next./dailyand/nextfetch live task data at render time.relevantFilesfield oninProgresstask stubs inget_context_pack. Populated fromconfig.files(explicit) andmetadata.files_changedin task comment history (written by git hooks). Agent opens the right files immediately on session resume.filesfield onTaskConfig— set viaupdate_taskorbatch_update_tasksto record relevant source file paths.
Changed
create_tasknow returns the full task object instead of{ id }.update_tasknow returns the full task object instead of{ success: true }. Both changes save oneget_taskround-trip per create/update call.