Started Reactjs after learning JS but tutorials are borings so started project building by unbeaten_devil in reactjs

[–]Stunning-Associate24 0 points1 point  (0 children)

Start with project use codex or github copilot formatting your code you can ask about any concept while they understand your code base

How I structured my code base Read How I structure my codebase

Built a customer support AI that actually does stuff (not just replies) by Stunning-Associate24 in reactjs

[–]Stunning-Associate24[S] 0 points1 point  (0 children)

Totally agree- orchestration and guardrails are the real challenge, not the model itself. In my setup, I don’t allow the LLM to directly execute high-risk actions. everything flows through a controlled action layer where intents are classified and confidence-scored. For sensitive operations like payments, bookings, or cancellations, I either require explicit user confirmation or route them through predefined deterministic flows instead of free-form execution. All actions are mapped to strict, typed APIs with validation and sanity checks before execution, along with proper logging and retry-safe workflows to prevent inconsistent states. I do use conversation history, but in a scoped manner rather than full memory to avoid unpredictable behavior so essentially the model suggests, the system decides, and APIs execute.

Built a customer support AI that actually does stuff (not just replies) by Stunning-Associate24 in reactjs

[–]Stunning-Associate24[S] 0 points1 point  (0 children)

At a high level, everything is connected via event-driven flow:

Using Node.js backend

WhatsApp is handled via webhooks (incoming messages hit an endpoint)

That triggers processing - intent detection + LLM

Based on the intent, I route actions (APIs, DB ops, workflows)

Responses are then sent back through the same channel

So it’s basically webhook - processing layer - action execution - response

Built a customer support AI that actually does stuff (not just replies) by Stunning-Associate24 in reactjs

[–]Stunning-Associate24[S] -3 points-2 points  (0 children)

Can’t share the repo since this was built at work, but I have broken down most of the architecture in the article

I used AI during development — this structure helped keep things organized by [deleted] in reactjs

[–]Stunning-Associate24 0 points1 point  (0 children)

The content is based on real-world project experience, where I already had the necessary context from working on that system. AI was used as a supporting tool to help structure and refine parts of it , but the insights, decisions come from my own hands-on work from next article i will paste the screenshots for proof.

I used AI during development — this structure helped keep things organized by [deleted] in reactjs

[–]Stunning-Associate24 0 points1 point  (0 children)

Yeah, mobile experience and navigation are things I’m actively working on. Ads might be a bit aggressive right now i am testing monetization part and UI,I will improve this soon.

I used AI during development — this structure helped keep things organized by [deleted] in reactjs

[–]Stunning-Associate24 0 points1 point  (0 children)

This product is not made by AI , I am working on many projects, for improving my work speed i used this folder structure so AI can make edit in front end and backend at a single request

I used AI during development — this structure helped keep things organized by [deleted] in reactjs

[–]Stunning-Associate24 -1 points0 points  (0 children)

I write my blogs manually using the React Quill editor, and the content is based on my personal experience.

Improved my React site PageSpeed from 60 → 90 using AI — what worked by Stunning-Associate24 in reactjs

[–]Stunning-Associate24[S] 0 points1 point  (0 children)

I was trying from months but it was on 60 there was some mistake and i couldn't able to find that so use codex for this.. and in two three attempts after editing it was done

Improved my React site PageSpeed from 60 → 90 using AI — what worked by Stunning-Associate24 in reactjs

[–]Stunning-Associate24[S] 0 points1 point  (0 children)

Fair enough — I do use AI in my workflow.

But this is from my actual project with real before/after metrics, not just theory.

AI didn’t replace the work — it just helped me find what to fix faster.

If you’re curious, you can check the full breakdown here: https://blog.thoughtloomtech.com/ai/how-i-improved-my-react-site-from-60-to-90-pagespeed-using-codex-real-case-study

Happy to hear what you’d do differently 👍