fix: bash-spec-renderer#72
Merged
Merged
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
devloop | b5ebdfc | Commit Preview URL Branch Preview URL |
Jun 18 2026, 04:28 AM |
Owner
Author
Devloop Review Round 1
Review 1Verdict: ACCEPT Acceptance matrix
Engineering quality matrix
Review flags
FindingsNone. Missing testsNone. (The spec test plan and all seven acceptance criteria have targeted assertions. See Notes for optional, non-blocking hardening.) Fix instructionsNone. Notes
|
Owner
Author
Devloop Final Report
Acceptance Matrix SummaryAcceptance matrix
Engineering Quality SummaryEngineering quality matrix
Implementation Summary
Commit References
Tests Run
Residual Risk
|
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.
Bash Spec Renderer
Generated by
devloop --create-pr.Problem
Devloop is intended to stay dependency-light, but the bundled
devloop-specskill currently ships and invokesskills/devloop-spec/scripts/render.pyfor Markdown-to-HTML companion files. That makes Python part of the spec-rendering path, contradicts the desired Bash/HTML/CSS boundary, and forces installer/tests/docs to preserve a non-shell renderer.Outcome
The spec companion renderer is implemented in Bash. Rendering a Markdown spec still writes a sibling
.htmlfile, but no Python file or Python command is required. Specs without Mermaid produce static HTML/CSS only. Specs withmermaidfenced code blocks include a browser-side Mermaid v11 module import from jsDelivr so diagrams can render when the HTML is opened with network access.Acceptance Criteria
AC1:
skills/devloop-spec/scripts/render.pyis removed or no longer installed, and no repository test, README example, or skill instruction invokespython3 ...render.py.AC2: A Bash renderer exists under
skills/devloop-spec/scripts/, is executable, accepts exactly one Markdown path argument, writes a sibling.html, and prints that path on success.AC3: Running the renderer fixture in
scripts/devloop_test.shproves that regular specs generate light themed HTML,##inside fenced code does not become a section, and HTML-sensitive fenced content is escaped.AC4: A renderer fixture containing a
mermaidfence produces<pre class="mermaid">output and injects the Mermaid v11 ESM import exactly once.AC5: A renderer fixture without a
mermaidfence produces no Mermaid script tag.AC6: Installed Codex and Claude skill copies contain the Bash renderer and do not contain the removed Python renderer.
AC7:
bash scripts/devloop_test.shpasses.Review Trail
Review rounds and the final report are posted as PR comments below.
Latest commit: b5ebdfc