mirror of
https://github.com/mikeyobrien/ralph-orchestrator.git
synced 2026-04-24 22:55:57 +03:00
[PR #155] [MERGED] fix(sop): restore per-step gate constraints to PDD SOP #170
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ralph-orchestrator#170
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/mikeyobrien/ralph-orchestrator/pull/155
Author: @mikeyobrien
Created: 2/5/2026
Status: ✅ Merged
Merged: 2/5/2026
Merged by: @mikeyobrien
Base:
main← Head:fix/restore-pdd-step-guards📝 Commits (1)
809c0a1fix(sop): restore per-step gate constraints to PDD SOP📊 Changes
2 files changed (+42 additions, -4 deletions)
View changed files
📝
.claude/skills/pdd/SKILL.md(+21 -2)📝
crates/ralph-cli/sops/pdd.md(+21 -2)📄 Description
Problem
PR #146 condensed the PDD SOP from v1.0 (309 lines) to v1.1 (146 lines), removing per-step blocking constraints that prevented the model from auto-piloting through phases. This caused the regression in #154:
ralph planruns the full pipeline (planning + implementation) instead of stopping at planning artifacts.The old SOP had ~10 explicit
MUST NOT proceedconstraints anchored at specific phase transitions. The rewrite replaced all of them with a single generic bullet in "Important Notes." LLMs are much more likely to respect a constraint embedded in the step they're currently executing than a global instruction at the top.Changes (v1.1 → v1.2)
ralph runor begin implementationDesign
Rather than restoring the old verbose style, this uses a consistent
**Gate:**pattern at each step boundary. This is:Fixes #154
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.