<?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>Forem: Seçkin</title>
    <description>The latest articles on Forem by Seçkin (@durasi).</description>
    <link>https://forem.com/durasi</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%2F3441859%2F4ba623bf-a5a0-4546-9c3c-f5c2adc0a1aa.jpg</url>
      <title>Forem: Seçkin</title>
      <link>https://forem.com/durasi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/durasi"/>
    <language>en</language>
    <item>
      <title>Stop Context Switching: How I Built a Tool to Generate Elite AI Prompts Inside VS Code</title>
      <dc:creator>Seçkin</dc:creator>
      <pubDate>Fri, 09 Jan 2026 06:52:48 +0000</pubDate>
      <link>https://forem.com/durasi/stop-context-switching-how-i-built-a-tool-to-generate-elite-ai-prompts-inside-vs-code-3lkb</link>
      <guid>https://forem.com/durasi/stop-context-switching-how-i-built-a-tool-to-generate-elite-ai-prompts-inside-vs-code-3lkb</guid>
      <description>&lt;p&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%2F8bbetc01tqzaa8mnrarn.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%2F8bbetc01tqzaa8mnrarn.png" alt=" " width="800" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  Stop Context Switching: How I Built a Tool to Generate Elite AI Prompts Inside VS Code
&lt;/h1&gt;

&lt;p&gt;We all know the struggle. 🛑&lt;/p&gt;

&lt;p&gt;You are deep in the "flow state," writing a complex Python function or debugging a PHP script. Suddenly, you hit a wall. You need AI assistance.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The old workflow:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Alt + Tab to Chrome.&lt;/li&gt;
&lt;li&gt;Open ChatGPT or Claude.&lt;/li&gt;
&lt;li&gt;Write a lazy prompt like &lt;em&gt;"fix this code"&lt;/em&gt; (because you are tired).&lt;/li&gt;
&lt;li&gt;Get a mediocre answer.&lt;/li&gt;
&lt;li&gt;Argue with the AI to get the context right.&lt;/li&gt;
&lt;li&gt;Alt + Tab back to VS Code.&lt;/li&gt;
&lt;li&gt;Forget what you were doing. 🤯&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Context switching is the enemy of productivity.&lt;/p&gt;

&lt;p&gt;That's why I spent the last few months building &lt;strong&gt;fnPrompt&lt;/strong&gt; – an ecosystem designed to bring "Elite Prompt Engineering" directly to where developers live: &lt;strong&gt;The IDE and the Terminal.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🏗️ What is fnPrompt?
&lt;/h2&gt;

&lt;p&gt;fnPrompt isn't just a prompt library. It's an &lt;strong&gt;"AI Architect"&lt;/strong&gt; engine.&lt;/p&gt;

&lt;p&gt;You give it a raw, vague idea (e.g., &lt;em&gt;"Explain this regex"&lt;/em&gt; or &lt;em&gt;"Write a unit test for this login function"&lt;/em&gt;).&lt;/p&gt;

&lt;p&gt;It uses OpenAI's API to structurally engineer that idea into a perfect &lt;strong&gt;System Prompt&lt;/strong&gt; containing:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;🤖 Persona:&lt;/strong&gt; (e.g., Senior QA Engineer)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;🎯 Objective:&lt;/strong&gt; (Specific goals)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;🧠 Context:&lt;/strong&gt; (Background info)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;🚫 Constraints:&lt;/strong&gt; (Do's and Don'ts)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;📦 Output Format:&lt;/strong&gt; (Code only, JSON, Markdown, etc.)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And it does this across &lt;strong&gt;4 platforms&lt;/strong&gt;: Web, Chrome, CLI, and VS Code.&lt;/p&gt;

&lt;h2&gt;
  
  
  ⚡ The VS Code Workflow (My Favorite)
&lt;/h2&gt;

&lt;p&gt;This is why I'm writing this post. As a developer, I wanted to stay in my editor.&lt;/p&gt;

&lt;p&gt;I built a &lt;strong&gt;VS Code Extension&lt;/strong&gt; that allows you to:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; Highlight any code snippet or comment.&lt;/li&gt;
&lt;li&gt; Right-Click -&amp;gt; Select &lt;code&gt;fnPrompt: Refactor&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Boom.&lt;/strong&gt; A professional prompt is generated in seconds.&lt;/li&gt;
&lt;li&gt; It opens in a side panel, ready to copy or refine.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You can then use this perfectly structured prompt with Copilot, ChatGPT, or Gemini. No more lazy prompting, no more hallucinations due to lack of context.&lt;/p&gt;

&lt;p&gt;👉 &lt;strong&gt;&lt;a href="https://marketplace.visualstudio.com/items?itemName=fnprompt.fnprompt-vscode" rel="noopener noreferrer"&gt;Check it out on VS Code Marketplace&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  💻 For the Terminal Junkies: The CLI
&lt;/h2&gt;

&lt;p&gt;If you live in the terminal like me, I also built a CLI tool.&lt;/p&gt;

&lt;h1&gt;
  
  
  Example usage
&lt;/h1&gt;

&lt;p&gt;$ fnprompt gen "Create a docker-compose for LAMP stack"&lt;br&gt;
It generates the prompt and automatically copies it to your system clipboard. It feels like magic.&lt;/p&gt;

&lt;p&gt;🛠️ The Tech Stack&lt;br&gt;
For those curious about how it's built, here is the stack of this bootstrapped project:&lt;/p&gt;

&lt;p&gt;Backend: PHP (Vanilla) + MySQL (Old school, fast, reliable).&lt;/p&gt;

&lt;p&gt;Frontend: Tailwind CSS + Vanilla JS.&lt;/p&gt;

&lt;p&gt;VS Code Ext: TypeScript.&lt;/p&gt;

&lt;p&gt;AI Engine: OpenAI API (GPT-4o) for the logic processing.&lt;/p&gt;

&lt;p&gt;Authentication: Google OAuth (Web) &amp;amp; Token-based (CLI/VS Code).&lt;/p&gt;

&lt;p&gt;🚀 Try It Out (Free)&lt;br&gt;
I built this tool to solve my own problem, and now I'm sharing it with the community. It is completely free to use.&lt;/p&gt;

&lt;p&gt;I would love to hear your feedback, especially on the VS Code Extension. Does it fit your workflow? What features are missing?&lt;/p&gt;

&lt;p&gt;Web: &lt;a href="//fnprompt.com"&gt;fnprompt.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;VS Code: &lt;a href="https://marketplace.visualstudio.com/items?itemName=fnprompt.fnprompt-vscode" rel="noopener noreferrer"&gt;Download Extension&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Chrome: Web Store Coming Soon&lt;/p&gt;

</description>
      <category>vscode</category>
      <category>ai</category>
      <category>productivity</category>
      <category>promptengineering</category>
    </item>
    <item>
      <title>New iOS App - Sadio App</title>
      <dc:creator>Seçkin</dc:creator>
      <pubDate>Mon, 18 Aug 2025 08:24:02 +0000</pubDate>
      <link>https://forem.com/durasi/new-ios-app-sadio-app-539o</link>
      <guid>https://forem.com/durasi/new-ios-app-sadio-app-539o</guid>
      <description>&lt;p&gt;We just launched Sadio, a new kind of social media platform where your voice becomes your map.&lt;/p&gt;

&lt;p&gt;🎙️ Record up to 45 seconds of audio and pin it to a location on the map.&lt;br&gt;
🌍 Explore voices around you or from anywhere in the world.&lt;br&gt;
💬 Share thoughts, music, stories, or just say hi – and connect through voice instead of text.&lt;/p&gt;

&lt;p&gt;👉 Check it out: sadio.app&lt;/p&gt;

</description>
      <category>ios</category>
      <category>mobile</category>
      <category>socialmedia</category>
      <category>announcement</category>
    </item>
  </channel>
</rss>
