| 66 | ); |
| 67 | |
| 68 | interface SaveArgs { |
| 69 | message: string; |
| 70 | goal?: string; |
| 71 | approaches?: string[]; |
| 72 | decisions?: string[]; |
| 73 | currentState?: string; |
| 74 | nextSteps?: string[]; |
| 75 | } |
| 76 | |
| 77 | const saveSchema = { |
| 78 | message: z.string().describe("Description of what you were working on"), |
nothing calls this directly
no outgoing calls
no test coverage detected