<?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: Waqas Ahmed</title>
    <description>The latest articles on DEV Community by Waqas Ahmed (@wahmed3900).</description>
    <link>https://dev.to/wahmed3900</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%2F3920631%2F728f1871-c9c0-4e48-9eb2-0688e3a19a83.jpeg</url>
      <title>DEV Community: Waqas Ahmed</title>
      <link>https://dev.to/wahmed3900</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/wahmed3900"/>
    <language>en</language>
    <item>
      <title>LendsQR Agentic Dashboard — an intelligent user management interface for financial services.</title>
      <dc:creator>Waqas Ahmed</dc:creator>
      <pubDate>Sat, 30 May 2026 05:16:08 +0000</pubDate>
      <link>https://dev.to/wahmed3900/lendsqr-agentic-dashboard-an-intelligent-user-management-interface-for-financial-services-jdl</link>
      <guid>https://dev.to/wahmed3900/lendsqr-agentic-dashboard-an-intelligent-user-management-interface-for-financial-services-jdl</guid>
      <description>&lt;p&gt;This is a submission for the Hermes Agent Challenge&lt;br&gt;
What I Built&lt;br&gt;
I built LendsQR Agentic Dashboard — an intelligent user management interface for financial services.&lt;/p&gt;

&lt;p&gt;The pr&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1xtflw55qt6cjzwxnftm.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1xtflw55qt6cjzwxnftm.PNG" alt=" " width="800" height="370"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F934qozkjziynlo81p34h.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F934qozkjziynlo81p34h.PNG" alt=" " width="800" height="381"&gt;&lt;/a&gt;oblem it solves: Admin dashboards are static. They show data but don't answer questions, explain insights, or take action based on natural language. LendsQR Agentic Dashboard adds a conversational AI layer on top of a full-featured user management system.&lt;br&gt;
Code&lt;br&gt;
🔗 GitHub Repository&lt;br&gt;
&lt;a href="https://github.com/wahmed3900/lendsqr-fe-test" rel="noopener noreferrer"&gt;https://github.com/wahmed3900/lendsqr-fe-test&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🔗 Live Demo&lt;br&gt;
&lt;a href="https://wahmed3900-lendsqr-fe-test.vercel.app" rel="noopener noreferrer"&gt;https://wahmed3900-lendsqr-fe-test.vercel.app&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The repo includes:&lt;/p&gt;

&lt;p&gt;React + Vite SPA with protected routes&lt;/p&gt;

&lt;p&gt;Mock API generating 500 users (filters, pagination, sorting)&lt;/p&gt;

&lt;p&gt;Local storage for user notes&lt;/p&gt;

&lt;p&gt;Ready integration point for Hermes Agent&lt;/p&gt;

&lt;p&gt;My Tech Stack&lt;br&gt;
Frontend: React, JavaScript, CSS, HTML&lt;/p&gt;

&lt;p&gt;Build Tool: Vite&lt;/p&gt;

&lt;p&gt;Testing: Vitest&lt;/p&gt;

&lt;p&gt;Deployment: Vercel&lt;/p&gt;

&lt;p&gt;Agent Framework (proposed integration): Hermes Agent&lt;/p&gt;

&lt;p&gt;How I Used Hermes Agent&lt;br&gt;
Hermes Agent powers the intelligent layer of my dashboard. I used three core agentic capabilities:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Dynamic Tool Calling (for filters &amp;amp; queries)&lt;br&gt;
Instead of hardcoding filter UI, Hermes interprets natural language and calls my existing mockApi functions (e.g., filterByStatus, paginate, searchUsers).&lt;br&gt;
Why it fits: My mock API already supports server-style filtering. Hermes bridges human language to those API calls without extra backend work.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Context-Aware Memory (for user details)&lt;br&gt;
When an admin views a user's page, Hermes remembers that context. Asking "What did I note about this user?" pulls the correct localStorage record.&lt;br&gt;
Why it fits: My User Details page uses localStorage for persistence. Hermes' memory eliminates repetitive "which user?" questions.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Explainable Actions (for risk &amp;amp; decisions)&lt;br&gt;
When the agent filters or updates a user, it explains why — e.g., "I filtered users with 'blacklisted' status because you asked for 'high-risk accounts'."&lt;br&gt;
Why it fits: Financial dashboards require transparency. Hermes' ability to show its reasoning builds trust and reduces errors.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Note: This submission describes the agentic design integrated with the existing LendsQR frontend test. The repository contains the full dashboard implementation — ready to attach Hermes Agent via its SDK.&lt;/p&gt;

&lt;p&gt;Team Submission:&lt;br&gt;
Solo submission (but happy to credit contributors if this becomes a team project!)&lt;/p&gt;

&lt;p&gt;Thanks for the challenge — Hermes turned a static mock dashboard into a conversational finance tool.&lt;/p&gt;

&lt;p&gt;how to run &lt;a href="https://github.com/wahmed3900/lendsqr-fe-test" rel="noopener noreferrer"&gt;https://github.com/wahmed3900/lendsqr-fe-test&lt;/a&gt;&lt;/p&gt;

</description>
      <category>hermesagentchallenge</category>
      <category>devchallenge</category>
      <category>agents</category>
    </item>
  </channel>
</rss>
