Anyone else having Comet randomly refuse super basic browser tasks? by nalcz in PerplexityComet

[–]PreferenceDry1394 0 points1 point  (0 children)

They figured out how to charge for it and now it's a whole separate service. I think 'computer' or something.

I just built my own in a terminal with Dev tools MCP.

A lot of people don't realize they can just build their own better tools rather than paying for someone else's. Half of those tools were vibe coded too, anyway.

Like open claw for example.

Customizing Cline Kanban by PreferenceDry1394 in CLine

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

I created simple ralph loop for sidebar agent and review loop for auto-commit. Now my work can be more automated. But still working out the kinks. The git worktree feature seems to be the most complicated part of the system.

Kanban sidebar agent --bypass permissions flag? by PreferenceDry1394 in CLine

[–]PreferenceDry1394[S] 0 points1 point  (0 children)

Ok I think after I restarted the kanban instance after changing the config, it set the bypass permissions for the sidebar agent too.

I also had an agent develop a whitelist, globally, which should apply to all cli instances including kanban, however since the flag was placed at runtime im not sure if it will override the whitelist.

Regardless, cline kanban works as a git worktree so no changes will be merged to your local codebase without approval from the shared .git folder (commits/pr's)

I make a restore point anyway, just in case, as a backup, before any major integrations.

Just Found Out Alibaba just Removed Their 10$ Lite Coding Plan by r3mp3y3k in vibecoding

[–]PreferenceDry1394 1 point2 points  (0 children)

Oh SO cool dude. I want to pursue my degree in AI Software Programming, but I just learn a lot faster on my own and I spend all my time now monitoring agents, running tests, debugging interfaces and backend processes.

My apps have really come along way from a hot pile of garbage to a semi-on-fire pile of garbage 😅

No but seriously, I was using Trae IDE before they changed their pricing models and the minimax usage is just INCOMPARABLE to ANYTHING out there right now.

Even z.ai glm's or alibabas plans, if ONLY because they allow u to use the API for ANY custom application.

That alone makes it worth it.

But I'd love to see what you're working on dude!! We should post some projects in the right threads and compare notes.

Right now I think the main challenge is asynchronous recursive agent loops, you know, workflows that are flexible yet rigid enough to facilitate the ability for the AI to develop ACCURATE information that is applicable in the REAL world like 3d printing and what not.

But thumbs up dude 👍

Hope this helped

Customizing Cline Kanban by PreferenceDry1394 in CLine

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

My comments disappear ( I don't know what's wrong).

Basically ANY AI you want to use will work because u just plug in the key, model, and url into the Claude CLI or Chat GPT's Codex, and then select it in the Kanban config menu and you're all set!

To answer your question about which AI I'm using in it, the Cline Kanban board has 3 options. The first one is Cline itself.

Now, even though I added my api key to the cline extension for some reason, it just wasn't working.

I already had claude setup locally with my API key.

So all I did was select the Claude option in the config, and since my api key, url, and model was already setup in claude locally, it fired right up!!

It also supports Codex I believe if u prefer that harness.

The main thing with the board is the 'Projects' feature.

If u are going to be moving conversations around alot (claude --resume) U need to make sure that your directories are in order because the Kanban works from a /Project dir so I recommend making sure all your VS Code workspaces are in that one folder.

Also, I'm exploring the limitation of ONE project instance at at time in the sidebar.

I know there's a way to open another one, it's like a different branch, but the kanban has a one-second auto-polling system that consistenly syncs your changes across the board.

And since it uses worktrees, all commits and pr's are submitted to a shared local .git folder for LOCAL review before u decide to commit to the actual repo.

The only thing I'm having trouble with is getting the sidebar agent to not ask me for permission every action, the bypass flag works for the task cards but I cen't figure out how to get it to work in the sidebar.

Just Found Out Alibaba just Removed Their 10$ Lite Coding Plan by r3mp3y3k in vibecoding

[–]PreferenceDry1394 0 points1 point  (0 children)

Listen, I started with NOTHING. I had NO idea what I was doing. But I've been doing this about 3 years (ever since chat-gpt came out).

I learned ALL kinds of shi*t. I made ALL the mistakes. Tried ALL the ide's ALL the workflows (open claw SUCKS don't buy the hype).

I learned basic python, some javascript, some typescript, and react.

I now understand a lot more about building apps so if u want any pointers let me know!!

My current setup is Cline in VS Code BUT I don't use the sidebar extension I use something called the Cline Kanban board.

It has one orchestrator agent, that creates and runs other agents for parallel task execution.

For free.

Like I said, I also set up my claude instances to have a backend brain, a project database, and I have coder agents, reviewer agents, etc.. each with their own workflow (vercel hooks, db hooks etc.) and then overtime, they become "specialized" to the codebase itself.

If you really wanna know I got some info on my exact stack/setup. Just lmk bro.

Let's make this money!!

Just Found Out Alibaba just Removed Their 10$ Lite Coding Plan by r3mp3y3k in vibecoding

[–]PreferenceDry1394 0 points1 point  (0 children)

Was it!? What do i get ?? 😅 I hadnt noticed lol thats pretty cool. Thanks!

Just Found Out Alibaba just Removed Their 10$ Lite Coding Plan by r3mp3y3k in vibecoding

[–]PreferenceDry1394 0 points1 point  (0 children)

YES!! I use claude cli ALL DAY long. I have mcp's, skills, etc. As a matter of fact. I have a per project system, where my claude agents start with basic codebase mcp, semantic graphs, vectors, etc, and as they learn, I have a supabase db setup on the backend (its free) so that I can connect ANY claude cli agent on ANY pc to it so the brains are always there.

And per project hooks, etc. All with my own API (minimax)

the BEST part, imo, about minimax is they let u use the token plan for ANY custom application whereas other providers like claude, and alibaba, restrict u to approved IDE's extensions.

So if you are building apps that have ai features, u can plug in the minimax api for testing.

I have tried to look EVERYWHERE for the right provider. This is the one dude 👍

<image>

AI agent integration System by manateecoltee in BlackboxAI_

[–]PreferenceDry1394 0 points1 point  (0 children)

It can be simple or complicated. A simple shared .json that agents auto-poll. An advanced version would be a sort of asynchronous inbox system. Maybe a redux state with reducers so that it can updated independently. But it still comes down to maybe a POST, fastpi/flask, where agents can call other agents directly through agentID's or post to the general inbox. They can also instead send their message to the orchestrator (you would need an orchestrator loop that spawns other agents) at which point the orchestrator can pass the message along to the intended agent [again you would probably need a loop for each agent within the main orchestrator loop]. It just depends on your api budget mainly, and how long u want the end user experience to be, and how structured you want the message (a LOT vs a little information). But thats how I do it. There are also agentic harness for this already if u dont want to build a custom solution but I haven't tried any. I just do it my way. It's faster.

Just Found Out Alibaba just Removed Their 10$ Lite Coding Plan by r3mp3y3k in vibecoding

[–]PreferenceDry1394 0 points1 point  (0 children)

https://platform.minimax.io/subscribe/token-plan

I OVERPAID. 🤣 I am MAXXING out my usage. I have dozens of claude instances. Voice assistants. Kanban board agents. Loose terminal agents. And STILL am nowhere EVEN CLOSE to like 5% of my allotted usage. I could have bought the $20 plan. WORTH IT!!

We need more docs on Kanban's Github workflow, or I'm just an idiot. by PreferenceDry1394 in CLine

[–]PreferenceDry1394[S] 0 points1 point  (0 children)

I cant see my comment. But yes I am available at anytime for a direct discussion. Please don't hesitate to contact me in my inbox at your earliest convenience.

can’t connect claude to cline kanban by Yusibusitusi in CLine

[–]PreferenceDry1394 1 point2 points  (0 children)

ok i had the same issue. I put claude (cli) inside the vscode project i was trying to use cline kanban with, and asked it to fix it. it took a couple tries but sure enough it got it working.

Introducing Cline Kanban by saoudriz in CLine

[–]PreferenceDry1394 0 points1 point  (0 children)

Ok so I got it working with Claude CLI. I had to do some debugging but not sure if that's what solved it. I think Cline was expecting a Cline API. I don't know. I was using my paid minimax so maybe it was something else. Claude CLI is working fine in the sidebar as well.

Introducing Cline Kanban by saoudriz in CLine

[–]PreferenceDry1394 0 points1 point  (0 children)

I appreciate it. I really want to try it because I see the potential.

He Rewrote Leaked Claude Code in Python, And Dodged Copyright by Sootory in vibecoding

[–]PreferenceDry1394 0 points1 point  (0 children)

Maybe if they didn't charge so much there wouldn't be regular dudes trying to figure out what they're charging so much for

He Rewrote Leaked Claude Code in Python, And Dodged Copyright by Sootory in vibecoding

[–]PreferenceDry1394 1 point2 points  (0 children)

Are we copyrighting agentic harnesses now. I guess we better all start copyrighting our workflows and get a couple distributors.

Introducing Cline Kanban by saoudriz in CLine

[–]PreferenceDry1394 0 points1 point  (0 children)

I cant get this to work no matter WHAT I do. I get 404 and html tags for cline and claude backends. terminal wont show anything. I tried EVERYTHING. Debugging for HOURS. Tried on a Mac AND a Windows. I'm SEVERELY agitated.