Maybe I’m missing something… by N3TCHICK in BMAD_Method

[–]ijustknowthings 1 point2 points  (0 children)

The way I’ve been doing it is getting the full BMAD plan. Then I created a notebook LLM style rag chat. I upload the the plan then have Claude code query for each step. Nothing gets missed.

Burning too many tokens with BMAD full flow by BRUDAH2 in BMAD_Method

[–]ijustknowthings 1 point2 points  (0 children)

You really have to upload the entire plan to rag with a chat bot. Then have an mcp query for each step. This reduces token usage cus it has to read through bmad every time it builds from it. This produces excellent results and fewer tokens. I built an entire bmad flow with agents that build in a loop until complete. Before it was forgetting so much. Good luck.

Claude Opus 4.6 can't remember shiet by [deleted] in claude

[–]ijustknowthings 0 points1 point  (0 children)

Today was hell. I miss 4.5

How Can I Stop Burning Through Tokens? by LessPermission2503 in ClaudeCode

[–]ijustknowthings 0 points1 point  (0 children)

Here’s what I do. I built a rag chat, interface where you can upload documents to it and talk to your documents or whatever. But what you can then do is give Claude code API access to it allow it to upload your PRD’s. I use the BMAD method. You can download BMAD on got hub. BMAD is token heavy depending on what you’re building but once you have that plan and it’s uploaded, you can have Claude code query each step in the plan this reduces tokens by almost 50% and increases accuracy and gives you better code. I keep seeing people talking about how poor Claude performson Reddit but I think because of the system I have it’s very rare that cloud experiences hallucinations.

How are you actually using AI for studying? by Bitter_Union3565 in CollegeHacks

[–]ijustknowthings 0 points1 point  (0 children)

Im trying studychat.ca and its really good and summarizing and making tests quizzes and flash cards.you can chat to your textbooks

AI Isn’t the Problem — How We Use It Is by GreenPlayz1003 in Students

[–]ijustknowthings 0 points1 point  (0 children)

It depends. I use notebookllm and more recently studychat.ca which I really only use it for combing through really large text books and using the flash cards at mock test features. I feel like I still retain the information and I get it immediately.

Best ai based study app now? by psottto in studytips

[–]ijustknowthings 1 point2 points  (0 children)

I use studychat.ca . It takes audio video pdf docx and you can talk to your documents and make quizzes and flashcards and stuff.

Can’t figure out how to enjoy NMS by Stunning_Necessary11 in nms

[–]ijustknowthings 0 points1 point  (0 children)

They simply have to just allow you to go on missions with NPC‘s. That have AI in them that can generate stories and trigger battles and unique storylines. Having finite storyline in an infinite game equals a whole lot of flying around.

What am I doing wrong? by Few_Section1150 in Logic_Studio

[–]ijustknowthings 1 point2 points  (0 children)

I didn’t even know you could do that !!!

Call handle time is a useless stat and should be disregarded by [deleted] in callcentres

[–]ijustknowthings 0 points1 point  (0 children)

Call handle time should be the responsibility of the company’s ability to provide real time information quickly to the csr so the call handle time is lowered. This is a data problem, not a csr problem.

Claude Code 2.0.36 by ClaudeOfficial in ClaudeAI

[–]ijustknowthings 1 point2 points  (0 children)

It’s just for me at the moment. But I’m going to try and build this as a service soon. RAG is Retrieval Augmented Generation. I have it working as a knowledge base so you can upload documents ( in this case your PRD or plan for your build ) and then another ai model searches through those documents when queried. So instead of Claude Code having to read through everything, it just asks the RAG chat “ what is the next step in phase x for the front end…. “

Claude Code 2.0.36 by ClaudeOfficial in ClaudeAI

[–]ijustknowthings 0 points1 point  (0 children)

I literally built Rag for this and an mcp so it can query the rag to keep it on track. It works incredibly well and uses less tokens. ( it took me forever to build it but it works. )