<?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: Victoria Robin</title>
    <description>The latest articles on DEV Community by Victoria Robin (@victoria_robin_ffb1914a2c).</description>
    <link>https://dev.to/victoria_robin_ffb1914a2c</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%2F2914205%2Ff9023387-b00d-48a9-a2ec-39d40e08ab41.png</url>
      <title>DEV Community: Victoria Robin</title>
      <link>https://dev.to/victoria_robin_ffb1914a2c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/victoria_robin_ffb1914a2c"/>
    <language>en</language>
    <item>
      <title>How I Finally Shipped PharmVerify NG — an AI Drug Checker for Nigerian Patients published: true tags: devchallenge, githubchallenge</title>
      <dc:creator>Victoria Robin</dc:creator>
      <pubDate>Tue, 26 May 2026 08:36:49 +0000</pubDate>
      <link>https://dev.to/victoria_robin_ffb1914a2c/how-i-finally-shipped-pharmverify-ng-an-ai-drug-checker-for-nigerian-patients-published-true-2d0p</link>
      <guid>https://dev.to/victoria_robin_ffb1914a2c/how-i-finally-shipped-pharmverify-ng-an-ai-drug-checker-for-nigerian-patients-published-true-2d0p</guid>
      <description>&lt;p&gt;*This is a submission for the GitHub Finish-Up-A-Thon Challenge&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;PharmVerify NG is an AI-powered drug authenticity and alternatives checker built specifically for Nigerian patients. It lets you search any Nigerian drug name and get back real, structured information — NAFDAC registration numbers, manufacturer details, verified generic alternatives, and direct NAFDAC verification links — all powered by the Claude AI API.&lt;br&gt;
🔗 Live app: &lt;a href="https://dev.tourl"&gt;&lt;/a&gt;&lt;a href="https://pharm-assist-tool.vercel.app" rel="noopener noreferrer"&gt;https://pharm-assist-tool.vercel.app&lt;/a&gt;&lt;br&gt;
💻 GitHub: Torisbrain/pharm-assist-tool&lt;br&gt;
This project started as part of my participation in the Qubators AI Foundry Cohort 01 — a 30-day fellowship where fellows are expected to ship a real, working AI product from scratch, with equity terms and a signed MOU. No pressure, right?&lt;br&gt;
The idea came from a real frustration I've watched people around me experience: buying medication in Nigeria without any easy way to verify if it's genuine, check the NAFDAC number, or know if a cheaper generic alternative exists. Fake and substandard drugs are a serious problem in Nigeria — and most patients have no accessible tool to protect themselves.&lt;br&gt;
I wanted to build something that actually helps.&lt;/p&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;&amp;lt;Live URL: &lt;a href="https://pharm-assist-tool.vercel.app" rel="noopener noreferrer"&gt;https://pharm-assist-tool.vercel.app&lt;/a&gt;&lt;br&gt;
The app has 4 live pages:&lt;/p&gt;

&lt;p&gt;Home — Search bar with instant drug lookup&lt;br&gt;
Results — AI-generated drug profile with NAFDAC number, manufacturer, and verification link&lt;br&gt;
Alternatives — Generic and equivalent drug suggestions&lt;br&gt;
About — Mission and usage guide&lt;/p&gt;

&lt;p&gt;Here's what a typical flow looks like:&lt;/p&gt;

&lt;p&gt;User types a drug name (e.g., "Lonart DS" or "Amoxil 500mg")&lt;br&gt;
Claude AI processes the query against Nigerian pharmaceutical knowledge&lt;br&gt;
User gets back: NAFDAC number, manufacturer, authenticity notes, and generic alternatives&lt;br&gt;
One-click link to verify directly on the NAFDAC portal&lt;/p&gt;

&lt;p&gt;The app currently returns results for every Nigerian drug queried, with a 0% error rate on build and deployment.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Comeback Story
&lt;/h2&gt;

&lt;p&gt;Where It Started&lt;br&gt;
The concept began as AuraBridge Health / Aivara Care — a broad, ambitious AI pharmacy and clinical data platform I was conceptualizing. It was a big idea with a lot of moving parts and no clear MVP scope. I had notes, rough wireframes, and a vague notion of "AI + Nigerian healthcare" — but nothing shipped.&lt;br&gt;
Then Qubators happened.&lt;br&gt;
When I joined the AI Foundry Cohort, the clock started ticking. 30 days. Real product. Real users. The broad concept had to be stripped down to something I could actually finish. I narrowed it from a full clinical platform to a single, high-value action: let any Nigerian patient verify a drug in under 30 seconds.&lt;br&gt;
What Changed&lt;br&gt;
BeforeAfterVague "AI health platform" conceptFocused drug authenticity checkerNo code, no repoDeployed to Vercel, auto-deploys on pushNo AI integrationClaude API fully connected and returning real results0 pages built4 pages live and functionalUndefined tech stackTanStack Start + Vite + Tailwind + Claude APINo user flowEnd-to-end: search → result → verify → alternatives&lt;br&gt;
The biggest shift wasn't technical — it was mental. I stopped trying to build everything and started asking: "What is the one thing that makes this worth existing today?"&lt;br&gt;
The answer was clear: drug verification for Nigerian patients, powered by AI, accessible from any phone.&lt;br&gt;
Once I locked that in, execution became much faster. I used Lovable to scaffold the frontend quickly, connected the Claude API as the intelligence layer, set up Vercel for deployment, and pushed the repo to GitHub for version control and CI/CD via auto-deploy.&lt;br&gt;
Every drug search now works. The build passes clean. The product is live.&lt;/p&gt;

&lt;h2&gt;
  
  
  My Experience with GitHub Copilot
&lt;/h2&gt;

&lt;p&gt;GitHub Copilot was genuinely useful throughout this project — especially during the parts where I was moving fast and couldn't afford to slow down for boilerplate.&lt;br&gt;
Where Copilot helped most:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;API integration scaffolding
When I was wiring up the Claude API calls, Copilot auto-completed the fetch request structure, headers, and response parsing almost perfectly. What would have taken me 20–30 minutes of looking up documentation took about 5. It understood the pattern from the first few lines I typed.&lt;/li&gt;
&lt;li&gt;Tailwind class suggestions
Building the UI quickly with Tailwind meant typing a lot of utility classes. Copilot's inline suggestions for responsive layout classes (sm:, md:, flex, gap-) saved real time and kept the design consistent without me context-switching to docs constantly.&lt;/li&gt;
&lt;li&gt;TypeScript type inference
The project uses TypeScript, and Copilot helped me correctly type the API response objects from Claude without having to write the interfaces entirely from scratch. It inferred shapes from how I was using the data and suggested accurate type definitions.&lt;/li&gt;
&lt;li&gt;Debugging assistance
When I ran into an issue with how the API response was being parsed (content blocks from Claude can be mixed types), Copilot suggested the correct .filter() + .map() pattern to extract only text blocks — which fixed it immediately.
What I'd tell other builders:
Copilot doesn't write your product. But it removes the friction between knowing what you want to build and actually building it. For a 30-day sprint with a real deadline, that friction removal is everything.Tech Stack&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Frontend: TanStack Start, Vite, Tailwind CSS&lt;br&gt;
AI Layer: Claude API (Anthropic)&lt;br&gt;
Deployment: Vercel (auto-deploy on GitHub push)&lt;br&gt;
Version Control: GitHub (Torisbrain/pharm-assist-tool)&lt;br&gt;
Dev Tools: Cursor, VS Code, GitHub Copilot&lt;/p&gt;

&lt;p&gt;&amp;lt;! What's Next&lt;br&gt;
PharmVerify NG is live but the roadmap is real:&lt;/p&gt;

&lt;p&gt;NAFDAC database integration for direct cross-referencing&lt;br&gt;
 Drug interaction checker&lt;br&gt;
 Pharmacy locator (find where to buy verified drugs nearby)&lt;br&gt;
 Offline-capable PWA for low-connectivity areas&lt;br&gt;
 Hausa and Yoruba language support&lt;/p&gt;

&lt;p&gt;Final Thoughts&lt;br&gt;
The hardest part of finishing a project isn't the code. It's choosing what the project actually is — and being willing to ship a smaller, better version instead of waiting for the perfect one.&lt;br&gt;
PharmVerify NG went from "a vague idea about AI and Nigerian healthcare" to a live, working product that any Nigerian patient can use today. It's not everything I originally imagined. It's better — because it actually exists.&lt;/p&gt;

&lt;p&gt;Try Pharm&lt;a href="https://dev.tourl"&gt;&lt;/a&gt;Verify NG live →&lt;br&gt;
 GitHub repo →&lt;a href="https://github.com/Torisbrain/v0-aura-pharm-app" rel="noopener noreferrer"&gt;https://github.com/Torisbrain/v0-aura-pharm-app&lt;/a&gt;&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>githubchallenge</category>
    </item>
  </channel>
</rss>
