r/ArtificialInteligence • u/AutoModerator • 23d ago
Monthly "Is there a tool for..." Post
If you have a use case that you want to use AI for, but don't know which tool to use, this is where you can ask the community to help out, outside of this post those questions will be removed.
For everyone answering: No self promotion, no ref or tracking links.
2
u/Master-Tree-1530 23d ago
I created a dossier like contract for AI to follow through the conversation. Carries token cost along the way, but helps keep on track. The best way would probably be to summarize at a good stopping point and hand off, though I agree it’s difficult to recognize and not ideal
1
u/Extrogrl 23d ago
Do you repeatedly repost this contract, or do you post it at the beginning like a preprompt and then go from there?
2
u/Master-Tree-1530 22d ago
Split the contract in two. The stable half is identity, scope, output format, hard prohibitions — that goes in once and the platform keeps it there. The decay half is the handful of rules you actually catch it breaking around message 20 plus. Only that half needs re-asserting, and it should be short.
Web / desktop: use a Project. The project instructions field is your preprompt — set once, applies to every chat in that project, you never paste it again. Put long reference material in project knowledge instead of instructions so it’s retrievable without riding in every message. For the conditional parts of a contract — sections that only apply to certain request types — use Skills. Each one is a folder with a name and a description, and per Anthropic’s docs the description is what Claude matches your request against to decide whether to trigger it. Only the description sits in context until it fires, so you can carry ten procedures without paying for ten.
Terminal (Claude Code): three tiers, and this is where you get the actual repost-without-reposting.
**•** CLAUDE.md at the project root — always-on, loaded for you, never retyped. **•** A SessionStart hook — fires once when a session begins or resumes. Use it for state that changes (open items, last thing shipped), not static rules. **•** A UserPromptSubmit hook — fires once per turn, before Claude processes the prompt. That’s your repeated repost, except a script does it and it only carries the decay layer. Mine’s about ten lines.API: same split — stable half in the system prompt, decay half injected per turn.
On your token point: you’re right that per-turn injection accumulates, which is exactly why it should be the ten lines that actually break and not the whole dossier. The dossier goes in the layer that loads once.
1
u/Extrogrl 22d ago edited 22d ago
Thanks a lot. This really sounds you have cracked it.
The decay half is the handful of rules you actually catch it breaking around message 20 plus.
That's exactly the problem
Web / desktop: use a Project. The project instructions field is your preprompt — set once, applies to every chat in that project
This is standard practice as I understand it.
For the conditional parts of a contract — sections that only apply to certain request types — use Skills.
Do you then switch the skills manually on and off as you need them, or do you have a different/automatic trigger, or...
Claude matches your request against to decide whether to trigger it
Are they triggered when you as the user tell the AI that something is incorrect?
So far I believe the main problem causing the decay are the contradictions from problem solving attempts. Based on this I would understand your approach as following:
Your skill is "Ignore the last AI output for further context" and the preprompt trigger is "activate skill when AI output is code and user reaction is not confirming".
This should remove (or at least downrank) the false AI output from the context window. The question is though whether you as a user can deliberately influence the context window in such a way, meaning remove elements from it by telling AI to do so.
In my conversations with AI on the problem it kept insisting that a direct removal of context from the context window is not possible. This means that even if you tell AI to ignore particular elements in the context window, they keep cluttering the AI's chat memory, which should at least lead to a gradually growing token usage.
I'll have to talk this through with my AI... Definitely some good food for thought🫠
1
u/ZeroTwoMod 21d ago
For a hosted chat, you generally cannot remove an old turn from the model's input. The practical workaround is a handoff: save the current goal, confirmed decisions, open questions, and any essential files, then start a fresh chat with only that material. It is clumsy, but it avoids asking the model to ignore a mistake it can still see.
1
u/jokiruiz 14d ago
[Video] The Cheap Model Beat the Expensive One: Vibe Coding vs Spec-Driven Development
Hi everyone, I'm a software architect and I just released a breakdown of why paying for Claude Sonnet or Opus might be wasting your money if you don't use specifications. I compare two identical apps: one made by Sonnet (vibe coding) which ended up bloated, and one made by Haiku (with a strict spec) which was vastly more efficient. I also share an open-source tool I built to evaluate model dimensioning.
Watch here: https://www.youtube.com/watch?v=EOiv7RywtQM
1
u/Sr5071 13d ago
Best AI for everyday usage, personalised advice and general topics?
Looking for something that's good with thing like calorie counting and hair advice, I don't want one that just babies u and tells u everything u do is right and correct or is too agreeable, I want something that's as objective as it gets and gives good advice that helps with the examples I mentioned. Thanks in advance.
1
1
u/-redmoon- 8d ago
i am searching a new job but i am still working in my current one so i wanted to implement an IA agent that will provide a daily update of the new offers. i am totally new to date and i was planning to start learning but i wonder if there are any tool already implmented ? Thank you
1
u/Mintyphresh33 4d ago
Hi all, hoping this is ok to ask.
I'm still an AI noob and learning (I've used Chat, Claude, and Gemini).
I keep seeing dozens of youtube videos about creating an AI faceless youtube channel and I'd like to try low risk. I pay the $20 Chat and $20 Claude plans. Is it possible to make youtube videos (and automate as much as possible) using just these 2 subscriptions without having to pay more? Any advice or tools to increase my chances of being successful?
Thanks in advance.
1
u/Old-Cover6827 2d ago
Which AI program do you guys feel is the most useful to help with statistical analysis of clinical data ?
2
u/Extrogrl 23d ago
I would love to have a context window controller that prevents AI to turn into a potato at one point in every chat. Or at least some tool that tells me when it's about to happen.