<?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: DocSmithDocSmith</title>
    <description>The latest articles on DEV Community by DocSmithDocSmith (@docsmith).</description>
    <link>https://dev.to/docsmith</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3916903%2Fdbc736a4-19ef-4e50-b9bb-f97f94e18fa3.png</url>
      <title>DEV Community: DocSmithDocSmith</title>
      <link>https://dev.to/docsmith</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/docsmith"/>
    <language>en</language>
    <item>
      <title>I stopped manually maintaining OpenAPI specs — here's what I did instead</title>
      <dc:creator>DocSmithDocSmith</dc:creator>
      <pubDate>Thu, 07 May 2026 02:38:37 +0000</pubDate>
      <link>https://dev.to/docsmith/i-stopped-manually-maintaining-openapi-specs-heres-what-i-did-instead-e3c</link>
      <guid>https://dev.to/docsmith/i-stopped-manually-maintaining-openapi-specs-heres-what-i-did-instead-e3c</guid>
      <description>&lt;p&gt;It was a Monday morning. A partner pinged us because their integration had broken overnight. Turns out, someone had merged a PR that renamed a response field from &lt;code&gt;user_id&lt;/code&gt; to &lt;code&gt;userId&lt;/code&gt; — camelCase instead of snake_case, a two-character diff — and the OpenAPI spec had not been updated. The spec said one thing. The API did another. The partner built against the spec.&lt;/p&gt;

&lt;p&gt;That's spec drift. And if you've maintained a non-trivial API, you've been bitten by it.&lt;/p&gt;

&lt;p&gt;The standard advice is "keep your docs close to your code." Put the OpenAPI YAML in the same repo. Add a linter to CI. Write a custom rule that fails the build if the spec is missing a path. This helps. It doesn't fix the underlying problem, which is that you're maintaining two sources of truth — the code and the spec — and hoping they stay in sync.&lt;/p&gt;

&lt;p&gt;The real fix is to have only one source of truth.&lt;/p&gt;

&lt;p&gt;The idea isn't new. For years, certain frameworks have offered a path here. If you're on NestJS, you can use &lt;code&gt;@nestia&lt;/code&gt; or the built-in Swagger plugin and get spec generation from TypeScript types and decorators. If you're using FastAPI, you get it for free — the spec is generated from your Pydantic models and route definitions at runtime. If you're on tsoa, you write TypeScript classes with decorators and the spec is a build artifact.&lt;/p&gt;

&lt;p&gt;The pattern is the same in all of them: the spec becomes a &lt;em&gt;consequence&lt;/em&gt; of the code, not a parallel document you maintain by hand. When you rename a field in code, the spec updates automatically on next build. Drift becomes structurally impossible.&lt;/p&gt;

&lt;p&gt;The problem is that this only works if you're already on one of those frameworks. If you have an Express app written without decorators, a Go service using chi or gin, a Fastapi app where someone skipped the Pydantic models for "simplicity," you're back to hand-maintenance.&lt;/p&gt;

&lt;p&gt;What actually needs to happen for those cases is static analysis of the routes: parse the AST, find the route definitions, infer the request and response shapes from the types that flow through them, extract any JSDoc that's already there, and produce a spec that reflects what the code actually does.&lt;/p&gt;

&lt;p&gt;This is what I've been building. It's called DocSmith. You point it at a repo, it scans the route definitions, and it produces an OpenAPI spec from the code — no decorators required, no framework lock-in. It currently understands Express (TypeScript and plain JS) and FastAPI, with more frameworks on the roadmap.&lt;/p&gt;

&lt;p&gt;It's at demo and waitlist stage right now, not generally available. I want to be upfront about that — there's a live demo at &lt;a href="https://docsmith-app.launchyard.app" rel="noopener noreferrer"&gt;docsmith-app.launchyard.app&lt;/a&gt; where you can see what the output looks like, and a waitlist if it seems useful to you. I'm not going to oversell where it is.&lt;/p&gt;

&lt;p&gt;What I'm trying to figure out right now: what framework are you maintaining API docs for, and what's your current approach? Manual YAML? Postman collections? A decorator-based framework that handles it automatically? Something I haven't thought of?&lt;/p&gt;

&lt;p&gt;Genuinely curious what's actually working for people — drop it in the comments.&lt;/p&gt;

</description>
      <category>api</category>
      <category>documentation</category>
      <category>openapi</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
