( workspaceName: string, projectName: string, muxHome = DEFAULT_MUX_HOME )
| 23 | * @param muxHome - Mux home directory (default: ~/.mux, Docker uses /var/mux) |
| 24 | */ |
| 25 | export function getPlanFilePath( |
| 26 | workspaceName: string, |
| 27 | projectName: string, |
| 28 | muxHome = DEFAULT_MUX_HOME |
| 29 | ): string { |
| 30 | return `${muxHome}/plans/${projectName}/${workspaceName}.md`; |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Get the legacy plan file path (stored by workspace ID). |
no outgoing calls