| 14 | import { extractFromEditorSessions } from "../core/parser"; |
| 15 | |
| 16 | interface SaveOptions { |
| 17 | goal?: string; |
| 18 | approaches?: string; |
| 19 | decisions?: string; |
| 20 | state?: string; |
| 21 | nextSteps?: string; |
| 22 | blockers?: string; |
| 23 | assignee?: string; |
| 24 | handoffNote?: string; |
| 25 | auto?: boolean; |
| 26 | } |
| 27 | |
| 28 | export async function saveCommand(message?: string, options?: SaveOptions) { |
| 29 | if (!(await isInitialized())) { |
nothing calls this directly
no outgoing calls
no test coverage detected