Add Terminal Stampede as Level 1 adopter#17
Merged
DUBSOpenHub merged 3 commits intomainfrom Mar 5, 2026
Merged
Conversation
Terminal Stampede uses shadow scoring in its merger phase to silently evaluate each agent's work quality using sealed tests. The scoring implementation in stampede-merge.sh computes Shadow Score from sealed test failures and integrates it into the merge report. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
stampede-merge.sh verifies tamper evidence via .seal-hash before running sealed tests (line 212), meeting the L2 requirement for sealed-envelope isolation with tamper hash verification. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Updates both README.md and SPEC.md to list Terminal Stampede alongside Dark Factory as a reference implementation. Includes conformance details: sealed test isolation, tamper hash verification, and merge-phase scoring. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.
What
Adds Terminal Stampede to the Adopters table as a Level 1 conformant project.
How Terminal Stampede Uses Shadow Score
Terminal Stampede's merger agent (
stampede-merge.sh) silently shadow-scores each agent's work during the merge phase:sealed-tests/directory against each agent's branchshadow_score = (sealed_failed / sealed_total) × 100Conformance: Level 1
Computes and reports Shadow Score using the spec formula. Uses sealed tests hidden from agents (approaching L2), but tamper evidence hashing is not yet confirmed, so Level 1 is the safe designation.
Co-authored-by: Copilot 223556219+Copilot@users.noreply.github.com