()
| 481 | if (log.length) { |
| 482 | for (const e of log) { |
| 483 | const when = (e.created_at ?? '').slice(0, 16).replace('T', ' '); |
| 484 | const tag = e.kind && e.kind !== 'work' ? `(${e.kind}) ` : ''; |
| 485 | lines.push(`• [${when}] ${tag}${e.entry}`); |
| 486 | } |
| 487 | lines.push('Continue from this prior work — do NOT redo what is already done. When you finish another meaningful piece of work, call project_log to record it for the next session.'); |
| 488 | } else { |
| 489 | lines.push('No work logged yet. As you complete meaningful work, call project_log so it persists for the next session.'); |
no outgoing calls
no test coverage detected