docs: add "Who's using gh-image" section to README - #38
Draft
drogers0 wants to merge 1 commit into
Draft
Conversation
Add a card grid highlighting three projects that run gh-image in their review and documentation pipelines: - NousResearch/hermes-agent — publishes E2E evidence on every PR from CI - openshift/console — /qa-verify agent skill uploads QA evidence - Simpleyyt/ai-manus — demo-videos skill publishes README demo reels Each entry links to the actual usage site in that repository. Layout uses two single-row HTML tables rather than one two-row table: GitHub's stylesheet shades even-numbered rows, which tinted the second row, and inline CSS is stripped so it cannot be overridden. One row per table keeps every row at nth-child(1). Cell content is plain HTML because markdown is not reliably processed inside table cells.
drogers0
force-pushed
the
docs/whos-using-section
branch
from
July 28, 2026 01:32
c864673 to
174fec5
Compare
drogers0
marked this pull request as draft
July 28, 2026 01:44
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.
Adds a
Who's using gh-imagesection between Use with AI agents and Authentication, showcasing three projects that rungh-imagein their review and documentation pipelines.Entries
★ 220k+publish-e2e-evidence.yml★ 450+(Red Hat)upload-evidence.sh/qa-verifyagent skill uploads full-resolution QA evidence for reviewers★ 1.5k+demo-videos/SKILL.mddemo-videosskill publishes the README demo reelsVerification
Every claim was checked against source rather than taken on trust:
220k+/450+/1.5k+so they stay accurate as the repos grow./markdownAPI to confirm the layout survives HTML sanitization.Layout notes
tr:nth-child(2n)), which tinted the second row's background. Inlinestyleis stripped so it cannot be overridden, but one row per table keeps every row atnth-child(1)and unshaded. Both carrywidth="100%"so the two boxes align (GitHub sizes tables tomax-contentotherwise).styleis stripped, so CSS grid is impossible; tables are the only way to get column alignment.border="0"is also stripped, so cell gridlines are unavoidable.<b>,<code>,<a>) because markdown is not reliably processed inside<td>— backticks and**would render literally.★rather than a literal★, so the character cannot be mangled by editor encoding.If a fourth project is added later, drop the
colspan="2"on row 1 to make a clean 2×2.