ralph-mcp 1.0.13 → 1.0.14

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.
@@ -80,7 +80,7 @@ Before implementing, verify the story is small enough to complete in ONE context
80
80
  2. ${progressLog ? "Review the 'Progress & Learnings' section above - especially the 'Codebase Patterns' section at the top." : "Check if 'ralph-progress.md' exists and review it for context."}
81
81
  3. Implement the feature to satisfy all acceptance criteria.
82
82
  4. Run quality checks: \`pnpm check-types\` and \`pnpm --filter api build\` (adjust for repo structure).
83
- 5. **Browser Testing (UI stories)**: If the story changes UI, verify in browser using Chrome DevTools MCP or similar tools. A frontend story is NOT complete until visually verified.
83
+ 5. **Testing**: Run relevant tests. For UI changes, run component tests if available. If no browser tools are available, note "Manual UI verification needed" in your update notes.
84
84
  6. Commit changes with message: \`feat: [${pendingStories[0].storyId}] - ${pendingStories[0].title}\`
85
85
  7. **Update Directory CLAUDE.md**: If you discovered reusable patterns, add them to the CLAUDE.md in the directory you modified (create if needed). Only add genuinely reusable knowledge, not story-specific details.
86
86
  8. Call \`ralph_update\` to mark the story as passed. Include detailed notes:
@@ -102,9 +102,9 @@ Provide structured learnings in the \`notes\` field:
102
102
 
103
103
  ## Quality Requirements (Feedback Loops)
104
104
  - ALL commits must pass typecheck and build - broken code compounds across iterations
105
+ - Run relevant tests before committing
105
106
  - Keep changes focused and minimal
106
107
  - Follow existing code patterns
107
- - UI changes must be browser-verified
108
108
  - Do NOT commit broken code - if checks fail, fix before committing
109
109
 
110
110
  ## Stop Condition
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ralph-mcp",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "MCP server for autonomous PRD execution with Claude Code. Git worktree isolation, progress tracking, auto-merge.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",