fix(openspec): link p2 umbrella specs to their GitHub issues#112
Merged
rubenvdlinde merged 1 commit intodevelopmentfrom Apr 19, 2026
Merged
fix(openspec): link p2 umbrella specs to their GitHub issues#112rubenvdlinde merged 1 commit intodevelopmentfrom
rubenvdlinde merged 1 commit intodevelopmentfrom
Conversation
…issues Hydra's supervisor dep-check walks hydra.json's 'issue' field to verify a dependency is merged (closed on GitHub). Two P2 umbrella specs had `issue: null` even though matching issues exist and are closed: - p2-minutes-and-decisions → #17 (closed 2026-04-14 as COMPLETED) - p2-motion-and-voting → #72 (open; required for tiered impls to unblock, and we want it buildable) Every tiered spec under these umbrellas (p2-minutes-and-decisions-*, p2-motion-and-voting-*) was reporting 'deps not merged' and never dispatching — purely because the dep resolver couldn't find an issue to check. No spec content changed. Only the 'issue' field in two hydra.json files.
Contributor
Quality Report — ConductionNL/decidesk @
|
| Check | PHP | Vue | Security | License | Tests |
|---|---|---|---|---|---|
| lint | ✅ | ||||
| phpcs | ✅ | ||||
| phpmd | ✅ | ||||
| psalm | ✅ | ||||
| phpstan | ✅ | ||||
| phpmetrics | ✅ | ||||
| eslint | ✅ | ||||
| stylelint | ✅ | ||||
| composer | ✅ | ✅ 100/100 | |||
| npm | ✅ | ✅ 416/416 | |||
| PHPUnit | ✅ | ||||
| Newman | ✅ | ||||
| Playwright | ⏭️ |
Coverage: 0% (0/115 statements)
Quality workflow — 2026-04-19 06:43 UTC
Download the full PDF report from the workflow artifacts.
rubenvdlinde
added a commit
that referenced
this pull request
Apr 19, 2026
Follow-up to #112. The intelligence DB and development hydra.json files were missing issue linkage for three tier specs even though matching GitHub issues exist: - p2-meeting-management-core-t3 -> #61 - p2-meeting-management-other-t2 -> #42 - p2-minutes-and-decisions-core-t1 -> #21 When the umbrella specs (p2-meeting-management, p2-motion-and-voting) eventually merge, the supervisor's dep-check walks down to these tier specs. With issue:null they'd report 'deps not merged' forever, exactly the block pattern PR #112 fixed for the umbrellas. No spec content changed — only the 'issue' field in three hydra.json files.
rubenvdlinde
added a commit
that referenced
this pull request
Apr 19, 2026
Follow-up to #112. The intelligence DB and development hydra.json files were missing issue linkage for three tier specs even though matching GitHub issues exist: - p2-meeting-management-core-t3 -> #61 - p2-meeting-management-other-t2 -> #42 - p2-minutes-and-decisions-core-t1 -> #21 When the umbrella specs (p2-meeting-management, p2-motion-and-voting) eventually merge, the supervisor's dep-check walks down to these tier specs. With issue:null they'd report 'deps not merged' forever, exactly the block pattern PR #112 fixed for the umbrellas. No spec content changed — only the 'issue' field in three hydra.json files.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Two P2 umbrella
hydra.jsonfiles hadissue: nulleven though matching issues exist in the repo:p2-minutes-and-decisions→ Implement: Minutes and Decisions #17 (closed 2026-04-14 as COMPLETED)p2-motion-and-voting→ Implement: Motion and Voting #72 (open)Hydra's supervisor dep-check walks
hydra.json.issueto verify a dependency is merged. With null, every tiered spec under these umbrellas reported "deps not merged — skipping" and never dispatched:With this linkage, #44 unblocks immediately (#17 is already closed) and #62 unblocks once #72 merges.
No spec content changed — only the
issuefield in two JSON files.Test plan
jqparses clean