(agentsMd: string)
| 980 | export * from './subagent-host'; |
| 981 | |
| 982 | function initCompletionReminder(agentsMd: string): string { |
| 983 | const latest = |
| 984 | agentsMd.trim().length === 0 |
| 985 | ? 'No AGENTS.md content was found after `/init` completed.' |
| 986 | : agentsMd; |
| 987 | return [ |
| 988 | 'The user just ran `/init` slash command.', |
| 989 | 'The system has analyzed the codebase and generated an `AGENTS.md` file.', |
| 990 | '', |
| 991 | 'Latest AGENTS.md file content:', |
| 992 | latest, |
| 993 | ].join('\n'); |
| 994 | } |