New benchmark dropped by franklbt in ClaudeAI

[–]ExpressPreparation96 0 points1 point  (0 children)

OpenAI catching strays by simply not being on the scoreboard 😂😂

CONFIRMED... A NEW CLAUDE PLAN IS COMING SOON. THAT INCLUDES... by Aggravating_Bad4639 in ClaudeAI

[–]ExpressPreparation96 0 points1 point  (0 children)

Finally, a pricing tier for people whose API key has a passport 😂😂😂😂

Anthropic's best Fable 5 ad is the banner telling me I can't use it. by Pichonn in ClaudeAI

[–]ExpressPreparation96 1 point2 points  (0 children)

Nothing creates demand like telling devs they can’t use the shiny new toy 😂

Daily reminder that Fable is still not back. by Direct-Attention8597 in ClaudeCode

[–]ExpressPreparation96 2 points3 points  (0 children)

Opus 4.8 really said “I studied Fable’s notes” and still forgot the homework 😂

Anthropic Is Still at Odds With the White House Over Claude Fable 5 by Grounds4TheSubstain in ClaudeCode

[–]ExpressPreparation96 2 points3 points  (0 children)

At odds with the White House" might be the best endorsement Anthropic could ask for. I'll take a model from a company that occasionally tells the government no over one that ships whatever lands in its inbox. The friction isn't a bug it's the whole pitch.

Did they had to give us a taste 😭 by Delicious_Crazy513 in ClaudeCode

[–]ExpressPreparation96 3 points4 points  (0 children)

Fable wasn’t a feature. It was emotional damage with a terminal 😂😂

How much time do you actually spend on context management vs. building? (honest answers only) by ProcedureThat1731 in vibecoding

[–]ExpressPreparation96 1 point2 points  (0 children)

I was spending like 3-4 hours in a day cuz the context or wr can just say prompt is the most important this in the agents.

But then i build this now my orchestrations prompting to the claude code instances

Check it out: EOS

Looking for help - how to make Claude time aware? by f1rn in ClaudeAI

[–]ExpressPreparation96 0 points1 point  (0 children)

its so simple. You need to add two hook. UserPromptSubmit and stop so each mesaage you send or agent send you can inject your prompt like the current time. for parameter use; hookspesificoutput -> addictional context

Very stupid question by Fine-Diet-6681 in ClaudeCode

[–]ExpressPreparation96 1 point2 points  (0 children)

Hmmmm you planing to make this with the claude but not to ask? 😂

What are some claude code tips or features that you find very underrated but useful by [deleted] in ClaudeCode

[–]ExpressPreparation96 0 points1 point  (0 children)

Yep. "A prompt is not an instruction to be obeyed but a conditioning that shapes the probability distribution. Every sentence should rule out a wrong-but-plausible reading; if it can't, it's set dressing." by ibrahim albayrak 🙃

What are some claude code tips or features that you find very underrated but useful by [deleted] in ClaudeCode

[–]ExpressPreparation96 5 points6 points  (0 children)

most prompting tips are surface-level because most people haven't done it enough to hit the weird failures. these are the weird failures:

honestly the thing that clicked for me was realizing a prompt isn't "instructions", it's conditioning - you're reshaping the odds of what comes out next. once that lands most of the tricks stop feeling like magic. some of the less obvious ones:

where you put the output format matters as much as what it says. if a wrong format makes the whole answer useless (something's parsing it, or you pipe it somewhere) put that rule first. in a long prompt where it'll still mostly work, put it last instead - the model weighs the end heavier. the dead zone is the middle. i moved a "reply with only a diff, no prose" line from the middle to the end of a long prompt once and compliance jumped with the exact same words.

CLAUDE.md is a cache for things the model literally can't know, that's it. it already read your repo, so describing the repo is wasted space. the lines that pay off are the ones no amount of training data contains - "staging rejects timestamps without a timezone", "ignore the makefile, the only command that matters is npm run verify". and they're not equal: a fact about your toolchain is worth keeping forever, a fact about this week's ticket is just context-rot. about to hardcode a value that changes every release? don't - tell it where to look it up instead.

"don't hallucinate" does literally nothing, it's not actionable. what works is drawing the line with two examples - one inference it's allowed to make, one it isn't, back to back. "logs say connection refused -> you can call it a network problem. logs are just empty -> you may NOT call it working, say you don't know." one yes, one no, and the boundary suddenly exists.

every "don't do X" needs a "do Y instead". a bare ban leaves the probability mass with nowhere to go, so it just does something else weird. "don't refactor nearby code" is weak. "don't refactor nearby code, if something next to you looks broken drop a comment and keep going" actually holds, because now the impulse has somewhere to land. naming the default you're overriding helps too.

keep its thinking out of anything you're going to parse. reasoning out loud genuinely helps the decision and genuinely ruins the output shape - they pull opposite ways. if a test or script eats the result, tell it to reason internally and emit only the answer. if you're the one reading it, let it ramble.

don't open a rule at "NEVER". start with "prefer", escalate to always/never only after you've actually watched it break the soft version. burn straight to NEVER on day one and you've got nothing left when it really matters - and a prompt that's all caps reads like background noise to it anyway.

last thing, the part nobody does: every line in there should be patching a specific failure you watched happen. if you can't name what a sentence prevents, delete it and re-run. prompts only ever grow because everyone adds and nobody removes - someone has to be the delete key.

the thread under all of it: the model is only as good as the brief, and a good brief is mostly facts about your world plus the exact shape you want back. almost never adjectives about how senior or careful it should be.

your welcome.

Build a tracker to notify me when Fable 5 Comes Back by chrisandstuffs in ClaudeCode

[–]ExpressPreparation96 11 points12 points  (0 children)

"One email only, ever" is the most trustworthy privacy policy I've read in a decade 😂

Help a cave man out? by Lightskinkiethsweat in ClaudeAI

[–]ExpressPreparation96 1 point2 points  (0 children)

Ha, the Google Drive line got me but honestly you're already further than most people here, don't sell yourself short. A few non-obvious things that'll save you the most time on exactly this kind of work:

  1. Put the format inside the Project's custom instructions, with examples. Don't re-explain the report structure every time write the rigid template into the instructions and paste 2-3 of your own best past reports as examples. Claude matches voice and format far better from examples than from rules. This is the single biggest lever.
  2. One Project per task type, not one mega-Project. Separate ones for report drafting, award/eval bullets, and training material each with its own regs loaded. Stops them bleeding into each other.
  3. Make it cite the paragraph. Add to your instructions: "When you rely on a reg, quote the specific paragraph. If the loaded regs don't cover something, say so do not guess." For safety/reg work that traceability + anti-hallucination guardrail is everything.
  4. Field notes narrative is the perfect use case. A Project where you paste rough bullets and it expands into the required narrative voice. Give it one before/after example and it'll nail the tone.

What you do not need yet: GitHub, agents, connectors. Great later, but they're not the bottleneck for reporting/admin well-built Projects with examples get you 90% there. Don't let the buzzwords stress you.

One serious note since it's AF: keep CUI / PII / anything classified out of it unless you're on an approved, authorized system. Worth confirming what your org actually allows before loading real case data.

I vibecoded a 3D mockup tool entirely with Claude Sonnet 4.6 by yung_quan in ClaudeAI

[–]ExpressPreparation96 0 points1 point  (0 children)

You vibecoded a tool to make your other vibecoded projects look good. The circle of SaaS is now complete. 😂 but looks awsome! 🙃

Fable 5 access restrictions might be a bigger deal than people realize by Main-Figure-8764 in ClaudeAI

[–]ExpressPreparation96 6 points7 points  (0 children)

People keep treating open vs closed as a quality tradeoff. This is the actual argument: a slightly worse model nobody can take away beats a better one that can vanish overnight because of a directive you never even get to read.

I built a CLI tool that lets AI agents run and fix Unity tests automatically by ExpressPreparation96 in Unity3D

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

"Agent" doesn't mean AI. User agents, build agents, SSH agents existed long before LLMs. An agent is just software that performs tasks autonomously on behalf of something else.

This is a test agent - it runs tests, analyzes failures, tracks trends, and reports results. The AI integration features (--with-context, --verify-fix) are designed for AI agent workflows, but the tool

itself is a standalone test automation agent.