ralph-prd 3.0.2 → 3.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ralph-prd",
3
- "version": "3.0.2",
3
+ "version": "3.0.3",
4
4
  "type": "module",
5
5
  "description": "AI-powered phased implementation runner for Claude Code — from PRD to shipped code",
6
6
  "bin": {
@@ -225,6 +225,8 @@ function waitForUser(message = 'Press Enter to continue…') {
225
225
  * @param {string} message
226
226
  */
227
227
  function notify(title, message) {
228
+ const project = basename(process.cwd());
229
+ title = `${title} [${project}]`;
228
230
  if (process.platform === 'darwin') {
229
231
  const safeTitle = title.replace(/\\/g, '\\\\').replace(/"/g, '\\"');
230
232
  const safeMsg = message.replace(/\\/g, '\\\\').replace(/"/g, '\\"');