<?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: Ishola Daniel</title>
    <description>The latest articles on DEV Community by Ishola Daniel (@itamelions).</description>
    <link>https://dev.to/itamelions</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%2F28258%2F6256df9d-9b70-4c4c-8975-68c3be8724d3.png</url>
      <title>DEV Community: Ishola Daniel</title>
      <link>https://dev.to/itamelions</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/itamelions"/>
    <language>en</language>
    <item>
      <title>Building an Open Source AI Global Talent Visa Evaluator</title>
      <dc:creator>Ishola Daniel</dc:creator>
      <pubDate>Fri, 24 Jul 2026 19:45:00 +0000</pubDate>
      <link>https://dev.to/itamelions/building-an-open-source-ai-global-talent-visa-evaluator-12pj</link>
      <guid>https://dev.to/itamelions/building-an-open-source-ai-global-talent-visa-evaluator-12pj</guid>
      <description>&lt;p&gt;Applying for the UK Global Talent Visa can be overwhelming. Many applicants spend months gathering evidence and often pay for professional reviews before knowing whether they have a realistic chance of endorsement.&lt;/p&gt;

&lt;p&gt;To make that process more accessible, I built Talent Visa Evaluator, an open source AI application that simulates the endorsement assessment process using publicly available criteria from UK endorsing bodies. It is designed to provide an evidence based evaluation that helps applicants understand where they stand before investing significant time and money.&lt;/p&gt;

&lt;p&gt;The project is fully open source and available on GitHub:&lt;/p&gt;

&lt;p&gt;Repository: &lt;a href="https://github.com/itamelions/talent-visa-evaluator" rel="noopener noreferrer"&gt;https://github.com/itamelions/talent-visa-evaluator&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What the Project Does&lt;/p&gt;

&lt;p&gt;The application guides users through a structured seven phase assessment, starting with career profiling and ending with a detailed evaluation report. Rather than relying on a simple questionnaire, it evaluates applicants against both Exceptional Talent and Exceptional Promise routes, recommending the route that best matches their experience.&lt;/p&gt;

&lt;p&gt;The assessment adapts to different professional fields including digital technology, academia, humanities, arts, architecture, and fashion. Each field has its own question set, scoring criteria, and AI evaluation prompt.&lt;/p&gt;

&lt;p&gt;Key Features&lt;br&gt;
Seven phase guided assessment with downloadable PDF reports&lt;br&gt;
Dual route evaluation for Exceptional Talent and Exceptional Promise&lt;br&gt;
Career stage profiling to ensure fair assessment based on experience level&lt;br&gt;
Field specific evaluation logic and scoring&lt;br&gt;
Detailed evidence reports with strengths, gaps, and improvement recommendations&lt;br&gt;
PDF report generation using jsPDF&lt;br&gt;
Privacy focused design with no accounts, no sign up, and no persistent data storage&lt;br&gt;
Extensible architecture that makes it easy to add support for new endorsing bodies and professional fields&lt;br&gt;
Technical Stack&lt;/p&gt;

&lt;p&gt;The project is built with modern web technologies including:&lt;/p&gt;

&lt;p&gt;Next.js 16 App Router&lt;br&gt;
React 19&lt;br&gt;
TypeScript 5&lt;br&gt;
Tailwind CSS v4&lt;br&gt;
jsPDF&lt;br&gt;
next-themes&lt;/p&gt;

&lt;p&gt;The evaluator supports multiple AI providers including Claude Sonnet 4, OpenAI GPT 4o, and DeepSeek. Developers can switch providers through a simple environment variable without changing application code.&lt;/p&gt;

&lt;p&gt;Designing Reliable AI Evaluations&lt;/p&gt;

&lt;p&gt;One of the most important parts of the project is the prompt engineering.&lt;/p&gt;

&lt;p&gt;Every professional field has its own dedicated system prompt that instructs the AI to act as a former endorsement assessor providing balanced, evidence-based evaluations. The prompts are designed to avoid common AI mistakes by teaching the model that awards, patents, media coverage, and PhDs are not universally required. Instead, the evaluator recognizes equivalent forms of evidence, avoids double-penalizing missing achievements, and produces structured reports with clear reasoning and actionable recommendations.&lt;/p&gt;

&lt;p&gt;A shared prompt builder automatically generates the evaluation framework for new fields, making the system easy to extend while maintaining consistent assessment quality.&lt;/p&gt;

&lt;p&gt;Why I Open Sourced It&lt;/p&gt;

&lt;p&gt;The goal of this project is not to replace professional immigration advice. It is to make the first step of the Global Talent Visa journey more transparent and accessible.&lt;/p&gt;

&lt;p&gt;By open sourcing the project, I hope developers can contribute support for additional endorsement routes, improve the evaluation methodology, and help professionals better understand what strong evidence looks like before submitting an application.&lt;/p&gt;

&lt;p&gt;If you are interested in AI, prompt engineering, Next.js, or developer tooling that solves real-world problems, feel free to explore the repository, open an issue, or contribute to the project.&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>opensource</category>
      <category>ai</category>
      <category>promptengineering</category>
    </item>
    <item>
      <title>I Built an Open Source PHP SDK for Mono — Here's Why It Was Worth It</title>
      <dc:creator>Ishola Daniel</dc:creator>
      <pubDate>Sat, 09 May 2026 22:05:00 +0000</pubDate>
      <link>https://dev.to/itamelions/i-built-an-open-source-php-sdk-for-mono-heres-why-it-was-worth-it-21m4</link>
      <guid>https://dev.to/itamelions/i-built-an-open-source-php-sdk-for-mono-heres-why-it-was-worth-it-21m4</guid>
      <description>&lt;p&gt;There's a moment every backend developer knows: you're staring at an API's raw HTTP docs, copy-pasting curl examples, and slowly building a mental model of what the response shape will be. It works. But it shouldn't have to feel like this.&lt;/p&gt;

&lt;p&gt;When I started wiring up &lt;a href="https://mono.co" rel="noopener noreferrer"&gt;Mono&lt;/a&gt; for recurring debit and mandate workflows, I kept thinking — &lt;em&gt;someone should just wrap this cleanly.&lt;/em&gt; So I did.&lt;/p&gt;

&lt;p&gt;Meet &lt;strong&gt;&lt;a href="https://github.com/itamelions/mono-php-sdk" rel="noopener noreferrer"&gt;itamelions/mono-php-sdk&lt;/a&gt;&lt;/strong&gt; — a PHP SDK for the Mono API.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Inspiration: Standing on Good Shoulders
&lt;/h2&gt;

&lt;p&gt;If you've ever integrated Paystack in PHP, you've probably encountered &lt;a href="https://github.com/yabacon/paystack-php" rel="noopener noreferrer"&gt;yabacon/paystack-php&lt;/a&gt;. It's the gold standard for what an SDK &lt;em&gt;feels&lt;/em&gt; like TO ME, zero ceremony, obvious method names, and an API surface that maps naturally to the docs.&lt;/p&gt;

&lt;p&gt;That's the bar I set for this SDK. Not just "makes API calls work," but &lt;em&gt;genuinely enjoyable to integrate.&lt;/em&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;The SDK covers the core Mono workflows you'll actually need in production:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Customer management&lt;/strong&gt; — create and retrieve customers&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Mandate lifecycle&lt;/strong&gt; — initiate, query, and manage direct debit mandates&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Debit operations&lt;/strong&gt; — charge debits and pull transaction history&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Webhook verification&lt;/strong&gt; — cryptographically verify incoming Mono webhook signatures&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Structured error handling&lt;/strong&gt; — typed exceptions instead of raw HTTP status codes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No framework lock-in. No magic. No black boxes.&lt;/p&gt;




&lt;h2&gt;
  
  
  Installing It Takes About 10 Seconds
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;composer require itamelions/mono-php-sdk
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  The Design Philosophy (The Boring-but-Important Stuff)
&lt;/h2&gt;

&lt;p&gt;A few principles drove every decision:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Resource-oriented method names.&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;customer()&lt;/code&gt;, &lt;code&gt;mandate()&lt;/code&gt;, &lt;code&gt;debit()&lt;/code&gt; — if you've seen the Mono docs once, you'll know exactly where to look.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Arrays all the way down.&lt;/strong&gt;&lt;br&gt;
No custom response objects to learn. You get arrays. You know how to use arrays.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Explicit errors.&lt;/strong&gt;&lt;br&gt;
HTTP 422s and 429s shouldn't silently fail. The SDK throws typed exceptions with meaningful messages so you know exactly what went wrong and where.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. Built for testing.&lt;/strong&gt;&lt;br&gt;
HTTP clients are injectable — mock them in your test suite without hacks.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5. Docs that reflect real usage.&lt;/strong&gt;&lt;br&gt;
Examples are drawn from actual integration flows, not hypothetical endpoints.&lt;/p&gt;




&lt;p&gt;Most of these improvements came from real sandbox testing and the kind of edge cases you only discover when something breaks at 2am.&lt;/p&gt;




&lt;p&gt;If this package shaves an afternoon off your next Mono integration, that's the whole point. Contributions, issues, and feedback are genuinely welcome.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/itamelions/mono-php-sdk" rel="noopener noreferrer"&gt;View it on GitHub →&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>php</category>
      <category>sdk</category>
      <category>mono</category>
    </item>
  </channel>
</rss>
