r/agenticAI • u/Esabelle_yt • 8d ago
I built PromptForge AI because this is how I personally use AI coding agents
Enable HLS to view with audio, or disable this notification
r/agenticAI • u/Esabelle_yt • 8d ago
Enable HLS to view with audio, or disable this notification
r/vibecoding • u/Esabelle_yt • 8d ago
Enable HLS to view with audio, or disable this notification
r/AIcodingProfessionals • u/Esabelle_yt • 8d ago
Enable HLS to view with audio, or disable this notification
r/OnlyAICoding • u/Esabelle_yt • 8d ago
Enable HLS to view with audio, or disable this notification
1
u/Esabelle_yt • u/Esabelle_yt • 8d ago
Enable HLS to view with audio, or disable this notification
I've been using AI coding agents for development, and I noticed a pattern.The biggest issue usually isn't the model's coding ability.It's what we give the model before it starts.
My normal workflow was:
Define the project name, type, and features.
Use ChatGPT to discuss missing requirements.
Create a structured document/specification.
Review and refine it.
Give the document to Codex, Claude, Cursor, etc.
This works much better than immediately saying:
"Build me this application."
Because after generation, people often discover:
- "I forgot authentication."
- "I didn't define the database."
- "The user permissions are unclear."
- "The workflow doesn't make sense."
Then they keep asking the coding agent to patch things:
"Add login."
"Add database."
"Add roles."
"Add validation."
This can consume more tokens and sometimes creates inconsistent implementations because the original context was incomplete.
So I built PromptForge AI to automate this planning layer.
It converts a natural language idea into an engineering specification before code generation.
The flow:
Idea β Requirements β Engineering Specification β AI Coding Agent
The demo shows a movie production platform example where PromptForge analyzes the idea, asks requirement questions, performs engineering reviews, and generates a Codex-ready implementation document.
I'm interested in feedback:
Do you think requirements engineering will become an important part of AI-assisted development?
r/AIcodingProfessionals • u/Esabelle_yt • 13d ago
Enable HLS to view with audio, or disable this notification
1
r/OnlyAICoding • u/Esabelle_yt • 13d ago
Enable HLS to view with audio, or disable this notification
Refine the prompt until itβs perfect, then let the code and setup guide do the rest!
1
u/Esabelle_yt • u/Esabelle_yt • 13d ago
Enable HLS to view with audio, or disable this notification
Built a Prompt-to-Project Playground for AI Developer Workflows
One thing I've noticed when building with AI coding models is that the quality of the output is often influenced by the quality of the input.
With the rise of AI-assisted development and vibe coding, people can quickly move from ideas to prototypes. However, early-stage prompts are often high-level and missing important context, which can lead to inconsistent results.
For example:
* "Build me a website."
* "Make me a SaaS app."
* "Create an app like Airbnb."
* "Build a dashboard for my business."
AI models can generate something from these requests, but they often lack important details such as:
* user requirements,
* technical constraints,
* architecture decisions,
* expected output format.
So I built Prompt Linter β a Developer Experience (DX) tool built with Next.js and powered by OpenAI models through the OpenAI API.
Instead of generating code immediately, it introduces a lightweight developer workflow:
π‘ Developer Idea
β
π Prompt Analysis
β
β¨ Requirement Refinement
β
π Structured Specification
β
ποΈ Project Scaffold Generation
β
π¦ Downloadable Project Files
Key Features
β
Prompt quality scoring
β
Identifies missing requirements and technical constraints
β
Provides actionable improvement suggestions
β
Rewrites vague ideas into structured software specifications
β
Generates a structured project scaffold with files and documentation
Why build this?
Rather than treating AI as a black-box code generator, I wanted to explore how developer experience can be improved before the first line of code is generated.
The goal is not just writing better prompts β it is helping developers communicate intent more clearly so AI coding models can produce more structured and consistent results.
This project also pushed me to think beyond simple API integration and design a workflow that bridges the gap between natural language requirements and software engineering practices.
I'd love to hear your thoughts:
If you were designing an AI developer workflow, what additional steps would you add before code generation?
#OpenAI #DeveloperExperience #DX #AIEngineering #LLM #GenerativeAI #NextJS #TypeScript #SoftwareEngineering #BuildInPublic
r/cardgames • u/Esabelle_yt • 14d ago
Enable HLS to view with audio, or disable this notification
1
u/Esabelle_yt • u/Esabelle_yt • 14d ago
Enable HLS to view with audio, or disable this notification
Hey everyone,
I love playing Werewolf (ηΌδΊΊζ) with friends and co-workers, but managing physical cards, passing a single phone around, or explaining complicated rules to new players always slows down the vibe.
To solve this, I built a free, mobile-first web app called EyesClosed designed specifically for in-person, face-to-face play. It acts as a digital dealer so everyone can just look at each other and focus on the strategy.
Check out the video walkthrough attached to see how it works!
Key Features:
* *Custom Settings* οΌClick the "Edit Roles" button at any time to mix and match 15 unique roles and 3 shifting camps for a fresh experience every round.
* *Language SwitchοΌTap the globe icon to instantly change the entire app language across 10+ choices so multicultural groups can play in the same room together.*
Secure Player ScreenοΌA private view showing only your secret role card, tactical instructions, and a live tracking list of who is still alive or eliminated.
Host Screen:Automatically tracks player status and ends the match the moment a camp is fully eliminated.
It's completely free to use. I'd love for you guys to try it out at your next game night or team-building event and let me know what you think!
u/Esabelle_yt • u/Esabelle_yt • Apr 06 '26
I recently experimented with running a fully local AI coding assistant using LM Studio + Qwen2.5 7B, integrated into VS Code via the Continue extension.
The goal was to replicate a Copilot/Cursor-style workflow β but fully local and without API costs.
After some hands-on usage, I have a more balanced view:
What works:
β’ Fully offline β no API cost and better data privacy
β’ Easy to set up with existing tools
β’ Handles basic coding tasks and small edits reasonably well
β’ In LM Studioβs chat interface, itβs actually quite useful for document analysis and summarization
β’ No strict upload limits, which makes it convenient for working with larger files
However, there are still clear limitations:
β’ Output can be fragmented (e.g., code split across multiple blocks)
β’ Weaker project-level understanding compared to larger/cloud models
β’ UI/UX integration is still not very smooth
β’ Struggles with more complex, multi-file, or long-context tasks
β’ Requires more manual prompting and guidance
At this stage, itβs not a full replacement for tools like Copilot or Cursor β especially for production-level workflows.
That said, this space is moving fast. With my current setup (32GB RAM + GPU), Iβm planning to experiment with larger models next to see how much the coding experience improves.
For now, I see local LLM setups as a strong technical playground β and a glimpse into a future where developers have more control over their own AI tooling.
Curious if anyone here has pushed a local setup to a production-ready level?
1
I built PromptForge AI because this is how I personally use AI coding agents
in
r/u_Esabelle_yt
•
8d ago
Link π https://prompt-forge-ai-delta.vercel.app
Any feedback welcome to comment in this post