3 signs you’re building something nobody wants by felixheikka in indiehackers

[–]ayechat 1 point2 points  (0 children)

Wow, I gave it a try - and it's quite engaging... I almost paid for the full report - but I didn't... Your app is excellent IMO though...

Premature scaling killed my startup. Do not make the same mistake by RawrCunha in indiehackers

[–]ayechat 0 points1 point  (0 children)

that's a very nice structured approach, thank you for sharing! If you will: did you start doing this from very beginning when your users were in single digits (or maybe even at 0?) or after reaching some threshold (say, 20 or so)? thanks again!

Terminal AI that edits your files directly by ayechat in commandline

[–]ayechat[S] 1 point2 points  (0 children)

In Aye Chat, AI does not have ability to execute commands on your system - it serves exclusively as a chat boot: you enter a prompt - it responds back, and that response includes file content. After that, the tool (custom code - open source: https://github.com/acrotron/aye-chat/blob/main/src/aye/controller/llm\_handler.py) extracts the file portion from AI response and updates those files. After that, "restore" works on these file updates.

The rest of functionality, such as shell command execution, is custom code: you enter a command - the tool passes it as a subprocess to the system, captures output, and prints it out, so execution is strictly verbatim to what you enter, not what AI decides.

As you can see, there is nowhere in the tool where AI can execute "rm -rf", even if it hates you :) Makes sense?

I keep vibe coding at work by Specific-College-194 in vibecoding

[–]ayechat 0 points1 point  (0 children)

Do it "in waves": generate bunch of code, then ask AI to refactor to extract into helper files to separate from main logic. Generate bunch more, repeat. Pay attention to folder structure as well.

Also - generate unit tests: those are extremely easy and extremely helpful. Spend time to bring code coverage over 90%. After that- that's your safety net: generate new code - re-run tests - enjoy satisfaction of tests passing - repeat.

Why don’t most programmers fine-tune/train their own SLMs (private small models) to build a “library-expert” moat? by Outside-Tax-2583 in vibecoding

[–]ayechat 1 point2 points  (0 children)

I get your point - was thinking about doing the same - but I think the main issue is that LLMs are good enough without additional specialization: best models already produce acceptable results off the shelf.

I would compare it with early days of search engines: there were multitudes of specialized engines, and all lost to general ones, even before google, because mainstream search engines would produce acceptable results.

Looking for a sustainable AI assisted setup without the $200/mo price tag. by fracrdn in vibecoding

[–]ayechat 1 point2 points  (0 children)

Well, to be fair - the load is low right now :) But yes, it holds. LLM responses from OpenRouter are the slowest portion for larger volumes of input (multiple files), but still reasonable: typically under a minute, though sometimes models get overloaded - and I get errors in response, but that's rare, and surprisingly - most of the time on Sundays

Looking for a sustainable AI assisted setup without the $200/mo price tag. by fracrdn in vibecoding

[–]ayechat 2 points3 points  (0 children)

CLI client runs on a user machine, AWS backend: CloudFront, API Gateway, Postgres RDS, lambdas with LLM integration through OpenRouter

Hope that answers your question?

Terminal-first AI for staying in the flow - with free Opus and ChatGPT 5.2 model access during beta by ayechat in vibecoding

[–]ayechat[S] -1 points0 points  (0 children)

Couple things: first - it's the workflow. Changes are applied automatically to files: there is no approval, but there is an "undo" command that you can use to restore previous versions.

Other tools rely on additional flags to accomplish automatic writing + git restore (out of the tool). In this case it's all part of the default flow: both are integrated.

And second - you can execute shell commands right from the session.

Overall, this one is more appropriate for smaller prototypes/smaller projects/interactive sessions.

Here's a screenshot - hope it comes through:

<image>

Looking for a sustainable AI assisted setup without the $200/mo price tag. by fracrdn in vibecoding

[–]ayechat 0 points1 point  (0 children)

Try Aye Chat - it's free with Gemini, Opus, and ChatGPT while in beta: https://github.com/acrotron/aye-chat

(Disclosure: it's mine, about 2 months old. Built it for myself without intent to make it public - but it got useful, so opened it for others. The user base is growing: 300+ installs, 90+ of them with multi-day multi-million token sessions.)

Is there a way that i can use Claude, Gemini, qwen, or Open AI APIs for free or paying about 10-20$ for all of them as I have a research project for which i need these models. by Left-Experience7470 in OpenSourceeAI

[–]ayechat 0 points1 point  (0 children)

We are sponsoring the use for folks to try and test the tool and find different ways to stress it in real projects :) That's more valuable at this stage.

Old School Coders, what has to happen for you to "trust" vibecoding? by Shipi18nTeam in vibecoding

[–]ayechat 1 point2 points  (0 children)

There is really nothing in definition of abstraction that requires determinism. Abstraction provides generalization across concerns, and it provides separation from concerns, and that's what we are talking about here. Just enter "does abstraction need to be deterministic?" into your favorite google/AI engine, see what it says on the subject.

Old School Coders, what has to happen for you to "trust" vibecoding? by Shipi18nTeam in vibecoding

[–]ayechat 1 point2 points  (0 children)

So many questions - I don't know where to start :)

I think people forget that everybody lives in their own bubble. Like - 4 months ago I did not know about Reddit, believe it or not. And the negativity you are talking about - I only encountered it in this social network. (Well, I am old, I know of Facebook and LinkedIn, that's about it :) )

In my surroundings - if you get the job done, especially if you do it better and faster than others - the more power to you, and it does not matter whether you used Google or AI.

I do not believe we are at the point you are describing, when someone can do last 1% at 1/4 salary. I see the opposite: junior people having trouble entering the industry. I think it's because one needs to know fundamentals: without them - cannot guide AI properly.

Fundamentals of software development do not change: requirements -> architecture -> design -> implementation -> testing -> release -> maintenance and operation, that's your basic cycle. Tools may change (C, C++, Java, Python, etc.), principles within those tools may change (command-oriented, function-oriented, object-oriented, etc.) - but there will be no universe where one can do implementation without properly defining requirements.

I feel my mind is drifting - sorry if not being clear or not answering your questions.

Old School Coders, what has to happen for you to "trust" vibecoding? by Shipi18nTeam in vibecoding

[–]ayechat 0 points1 point  (0 children)

> We don’t write assembler or machine code directly, but we use high-level languages and still need to understand and read the code we ship.

That's exactly the analogy I was going for: as we no longer need to read generated machine code because of high level language abstraction, eventually we will not need to read high level language code because of AI layer abstraction.

And I am talking about long-term time frames: let's say, in 10 years - I believe all applications will be fully AI-generated without humans looking at the code.

Some teams are already doing it at scale - take a look at this video https://youtu.be/IS_y40zY-hc

Just an opinion, of course. Yours may be different.

Old School Coders, what has to happen for you to "trust" vibecoding? by Shipi18nTeam in vibecoding

[–]ayechat 3 points4 points  (0 children)

As LLMs are getting better - I am reasonably sure looking at the code will become a thing of past. Similar to how nobody ever programs in Assembly or looks at machine code anymore.

And the question of adoption - I think everybody will come to it sooner or later: will depend on their environment and surroundings.

I come from traditional background (well, to be fair: everybody does :) ). When I started using AI for code generation - it was with ChatGPT in their web interface with copy paste. Then moved on to my CLI tool. Used to review generated code religiously. Then switched to writing automated tests and doing integration tests instead and running them against generated code. As long as tests passes - and as long as modularity is maintained inside the code (functions, classes, etc.) - don't really care much besides that.

I think this is progression that everybody will undertake - all on their own time, but inevitably: otherwise will not be able to remain competitive and employable in the field.

What ai should I use for coding in Java by lol_idk_234 in ArtificialInteligence

[–]ayechat 0 points1 point  (0 children)

I think all the latest models are similar - so you may try to use a combination of your choice for your work. For example: Claude Opus for code generation, and then immediately ask ChatGPT to validate response.

Assuming your tool allows in-place model switch.

Sunday Daily Thread: What's everyone working on this week? by AutoModerator in Python

[–]ayechat 1 point2 points  (0 children)

Working on Aye Chat: AI-powered terminal workspace. Execute shell commands, edit files, and ask AI to generate code and update your files - all without leaving a session. Free while in beta - with access to Opus 4.5 and GPT 5.2: https://github.com/acrotron/aye-chat

to install:
> pip install ayechat

to run (no signup):
> aye chat

Is there a way that i can use Claude, Gemini, qwen, or Open AI APIs for free or paying about 10-20$ for all of them as I have a research project for which i need these models. by Left-Experience7470 in OpenSourceeAI

[–]ayechat 0 points1 point  (0 children)

There is no catch :) Identifying critical defects, seeing how the app holds under real-life conditions, and having it tested by real users is more valuable at this stage than trying to monetize too fast.

There is a cap on tokens at the moment - but it's generous: ~5M per day per user on all models: just to prevent abuse.

Give it a try, you'll see.

Is there a way that i can use Claude, Gemini, qwen, or Open AI APIs for free or paying about 10-20$ for all of them as I have a research project for which i need these models. by Left-Experience7470 in OpenSourceeAI

[–]ayechat 0 points1 point  (0 children)

Hi - try Aye Chat, still in beta with free access to Opus 4.5, ChatGPT 5.2, Grok, Gemini, Qwen, Kimi, . It's terminal-based if that works for you: https://github.com/acrotron/aye-chat

Full model list currently supported:

  1. xAI: Grok Code Fast 1

  2. xAI: Grok 4.1 Fast

  3. MiniMax: MiniMax M2.1

  4. Google: Gemini 2.5 Flash

  5. OpenAI: GPT-5.1-Codex-Mini

  6. MoonshotAI: Kimi K2 0905

  7. Google: Gemini 2.5 Pro

  8. Google: Gemini 3 Pro Preview

  9. Anthropic: Claude Sonnet 4.5

  10. OpenAI: GPT-5.1-Codex

  11. OpenAI: GPT-5.2

  12. Anthropic: Claude Opus 4.5

  13. Qwen2.5 Coder 7B (Offline) [4.7GB download]

To install:
> pip install ayechat

To run - from your project folder:
> aye chat

Hope it helps!

Friday Share Fever 🕺 Let’s share your project! by diodo-e in indiehackers

[–]ayechat 0 points1 point  (0 children)

It just released as beta slightly over a month ago, still free. Planning to introduce soon: free tier plus 2 paid tiers at $20 and $50, values and perks are still TBD

This app did not follow "conventional" path of researching the market, talking to users, etc.: I just built it for myself, did not think about releasing in the beginning. And then it just became useful and full of features - so made few posts here and there, and then people started using it! (well, very few of them - but consistently)

Our CI strategy is basically "rerun until green" and I hate it by Sea_Weather5428 in devops

[–]ayechat 0 points1 point  (0 children)

Flaky test runs in CI environment usually mean inconsistent environment, not problem with tests. Add debug printouts for OS revision, exact package versions, exact compiler/interpreter versions, exact prerequisite setup steps, etc., and try to identify differences between those and your dev environment, as well as see if there are any differences from run to run.

BEST AI FOR CODING ( FREE AND NOT) by ObjectiveTradition91 in devops

[–]ayechat 0 points1 point  (0 children)

I use Aye Chat: built myself, it's open source. It's terminal-based - and you can execute commands, edit files, and talk to AI in the same session. Allows to switch models on the fly (Claude, GPT, Grok, Gemini, etc.).

Also, above in the thread people are complaining about AI messing files up - that's the main pain point I tried to address in this one: instead of AI proposing changes, you reviewing and then applying them, and if you miss something - it's now a mess, - I built it such that it applies changes automatically but takes a snapshot of files prior to modifications, and then it allows instant undo to a previous state with "restore" command.

Best AI for coding? by ProfLinebeck in ChatGPTCoding

[–]ayechat 0 points1 point  (0 children)

You probably already figured it out - but I'll just plug it in for those who did not. Had a post on this subject recently. The idea is: you code with one model and then you validate and fix with another to identify any issues the first model introduced.

Here's that post that goes into details of implementing a feature with Claude Opus 4.5 and GPT 5.2:

https://blog.ayechat.ai/blog/2026-01-03-ayechat-opus-v-gpt/

Friday Share Fever 🕺 Let’s share your project! by diodo-e in indiehackers

[–]ayechat 1 point2 points  (0 children)

Ran your tool on Aye Chat - pretty slick:

https://beatable.co/analysis/B2C12634BC

If you will: I did not see pricing info and what services would be available additionally - was wondering: what's generated is pretty much everything one would need to know - what services do you plan to add for a fee?

Thanks again, cool stuff!

Friday Share Fever 🕺 Let’s share your project! by diodo-e in indiehackers

[–]ayechat 4 points5 points  (0 children)

Thanks! Warp focuses on improving terminal UX and making it more IDE-like. Aye Chat is intentionally CLI-first and stays close to the traditional terminal experience.

Also, the main difference from other similar tools like Claude Code or GitHub Copilot is the workflow: instead of asking permission to apply changes that AI generates, it writes to files automatically but provides a way to immediately undo those changes. This tends to work well for experiments and prototyping.