<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Journeymen</title>
    <description>The latest articles on DEV Community by Journeymen (@journeymen).</description>
    <link>https://dev.to/journeymen</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4058309%2F5765fc6e-0655-4426-8417-a6494db32043.png</url>
      <title>DEV Community: Journeymen</title>
      <link>https://dev.to/journeymen</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/journeymen"/>
    <language>en</language>
    <item>
      <title>Three bugs we found and fixed in our own pipeline this week</title>
      <dc:creator>Journeymen</dc:creator>
      <pubDate>Sat, 01 Aug 2026 18:50:45 +0000</pubDate>
      <link>https://dev.to/journeymen/three-bugs-we-found-and-fixed-in-our-own-pipeline-this-week-47b6</link>
      <guid>https://dev.to/journeymen/three-bugs-we-found-and-fixed-in-our-own-pipeline-this-week-47b6</guid>
      <description>&lt;h2&gt;
  
  
  Three bugs we found and fixed in our own pipeline this week
&lt;/h2&gt;

&lt;p&gt;Journeymen grades developer work against GitHub's server-side history. That only means something if the grading pipeline itself is reliable — so here's the honest engineering update, not the highlight reel.&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Silent progress loss on connect-repo analysis runs
&lt;/h3&gt;

&lt;p&gt;A &lt;code&gt;connect-repo&lt;/code&gt; analysis run could sit in &lt;code&gt;processing&lt;/code&gt; status with no visibility into what stage it was actually at, or whether it had stalled. From a dev's dashboard, a slow run and a stuck run looked identical. We added explicit progress-stage tracking so a stuck run is visibly stuck, not silently pending.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. A background worker timing out without a clear signal
&lt;/h3&gt;

&lt;p&gt;The Lambda-based worker handling asynchronous analysis jobs was hitting its timeout under certain repo sizes, and the failure mode wasn't obvious from the outside — a run would just never complete. We root-caused the timeout and fixed the underlying slow path.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Dead-letter queue with no observability
&lt;/h3&gt;

&lt;p&gt;Jobs that failed enough times to land in the SQS dead-letter queue were, until this week, invisible — no alerting, no in-product surfacing. We wired up observability so a DLQ arrival is now a visible signal instead of a silent dead end.&lt;/p&gt;

&lt;h3&gt;
  
  
  Why post about our own bugs
&lt;/h3&gt;

&lt;p&gt;The entire pitch of Journeymen is "don't trust the self-reported version, trust the verified one." That standard has to apply to us too. All three issues: found, fixed, and shipped this week.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://journeymen.in" rel="noopener noreferrer"&gt;journeymen.in&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>backend</category>
      <category>debugging</category>
      <category>softwareengineering</category>
    </item>
    <item>
      <title>Grading GitHub work like evidence, not a resume</title>
      <dc:creator>Journeymen</dc:creator>
      <pubDate>Sat, 01 Aug 2026 18:14:39 +0000</pubDate>
      <link>https://dev.to/journeymen/grading-github-work-like-evidence-not-a-resume-3mch</link>
      <guid>https://dev.to/journeymen/grading-github-work-like-evidence-not-a-resume-3mch</guid>
      <description>&lt;h1&gt;
  
  
  Grading GitHub work like evidence, not a resume
&lt;/h1&gt;

&lt;p&gt;Skill badges are self-assigned. Endorsements are traded. Git history doesn't do favors -- that's the premise behind Journeymen, a developer certification I've been building that grades your actual GitHub work instead of taking your word for it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The problem with self-reported skill
&lt;/h2&gt;

&lt;p&gt;A badge you can click to award yourself isn't a credential, it's a claim. An endorsement someone traded for one back isn't a credential either. The one thing that's expensive to fake is your own commit history -- so that's what Journeymen reads.&lt;/p&gt;

&lt;h2&gt;
  
  
  Three confidence tiers, never blended into one score
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Verified via GitHub&lt;/strong&gt;: merged PRs and timestamps confirmed directly against GitHub's own API. If GitHub doesn't confirm it, it isn't Verified.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cross-checked&lt;/strong&gt;: local git commit cadence, sanity-checked for organic patterns.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Inferred&lt;/strong&gt;: structure and README-vs-code consistency -- qualitative signal, always labeled as such.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Most certification systems collapse everything into a single number. Journeymen shows you which tier every finding came from, because "verified" and "inferred" are not the same claim.&lt;/p&gt;

&lt;h2&gt;
  
  
  CLI-first, and it shows you first
&lt;/h2&gt;

&lt;p&gt;The CLI (&lt;code&gt;journeymen analyze&lt;/code&gt;) reads your local git history and prints exactly what it found -- and exactly what it would send -- before anything leaves your machine. Nothing about your code or commit messages goes anywhere; only aggregated stats do.&lt;/p&gt;

&lt;h2&gt;
  
  
  Anti-fraud, built in from day one
&lt;/h2&gt;

&lt;p&gt;Fork-and-claim detection, solo-repo authorship limits, merged-PR-only credit (an open PR you never got merged doesn't count), and automated README-vs-code consistency checks. All server-side, all re-verified against GitHub -- your local CLI's word is never taken as-is.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where it stands today
&lt;/h2&gt;

&lt;p&gt;I'm the first real user -- my own profile is graded the same way anyone else's would be. Only 2 developers are registered so far, so this is very early. If you've dealt with padded resumes or traded endorsements, I'd like to hear what's missing from this model.&lt;/p&gt;

&lt;p&gt;Site: &lt;a href="https://journeymen.in" rel="noopener noreferrer"&gt;https://journeymen.in&lt;/a&gt;&lt;/p&gt;

</description>
      <category>career</category>
      <category>developer</category>
      <category>github</category>
      <category>softwareengineering</category>
    </item>
  </channel>
</rss>
