A tweet went around last week claiming Anthropic had dropped a prediction market trading bot earning hundreds of dollars a day. It got shared thousands of times. I went and read the actual document. There is no trading bot in it.
Here is what is actually in there, and why it is worth your attention anyway.

What the Tweet Claimed
The post, shared by a verified account with a significant following, claimed Anthropic had released a 33-page document containing a prediction market trading bot with a 68.4% win rate and a structure for earning $300 to $1,500 a day. Screenshots were attached showing what appeared to be a “Chapter 3: Predict and Execute” section with a detailed trading bot breakdown, a SKILL.md structure, and a simulated backtest chart.
It spread fast. The combination of Anthropic’s credibility, the promise of automated income, and the technical-looking screenshots made it easy to share without checking.
What the Document Actually Is
The real document is called The Complete Guide to Building Skills for Claude. You can find it at resources.anthropic.com. It is 33 pages, that part is true. But the contents are something else entirely.
It is a technical guide for developers and power users who want to build Claude Skills. A Claude Skill is a structured folder of instructions that teaches Claude how to handle a specific, repeatable workflow consistently. Instead of explaining your preferences and process every time you start a new conversation, you build a skill once and Claude applies it automatically whenever it is relevant.
The document covers six chapters: fundamentals, planning and design, testing and iteration, distribution and sharing, patterns and troubleshooting, and resources. The examples used throughout include sprint planning tools, design-to-code handoffs, customer onboarding workflows, and a payment processing compliance system.

By Anthropic
There is no prediction market trading bot. Not a chapter. Not an example. Not a passing mention.
The screenshots that circulated on Twitter appear to have come from a completely separate source that has nothing to do with Anthropic’s official release. Someone attached them to make the post more shareable and the claim more believable.
What Claude Skills Actually Are
This is where it gets genuinely interesting, even without the fabricated trading bot.
The Claude Skills framework introduces something called progressive disclosure. A skill has three layers. The first layer is a short YAML description that sits in Claude’s system prompt and tells it when the skill is relevant. The second layer is the full instruction set that loads when the skill is triggered. The third layer is additional reference files that Claude can access as needed. This means Claude only loads what it needs for a given task, keeping responses fast and focused.
Skills are also portable. The same skill works across Claude.ai, Claude Code, and the API without modification. Build it once, use it everywhere.
For non-technical builders this matters because it means you can encode your own workflows, your research methodology, your writing style, your decision-making process, directly into Claude. Every time you work on that type of task Claude starts from a position of already understanding how you want it done.
Why the Misinformation Spread So Easily
It is worth thinking about why this particular tweet worked so well.
Anthropic is a credible source. When something is attributed to them people are more likely to trust it without checking. The screenshots looked technical and detailed, which signals legitimacy even when the content is fabricated. And the promise of automated income from a bot is one of the most reliable engagement triggers on financial and tech Twitter regardless of whether the claim holds up.
This pattern shows up constantly in AI content. A real release from a credible company gets picked up, a false or exaggerated claim gets attached to it, and the combination spreads faster than anyone bothers to fact-check. By the time corrections circulate the original post has already done its work.
The honest version of the Anthropic release is less exciting as a tweet. A 33-page guide for building reusable Claude instruction sets does not have the same pull as a trading bot earning $1,500 a day. But for people actually building things with AI it is considerably more useful.
What This Means for Builders
If you are building automations, workflows, or AI-assisted tools, the Claude Skills framework is worth reading properly. The patterns chapter in particular covers five approaches that translate directly to real build problems: sequential workflow orchestration, multi-service coordination, iterative refinement loops, context-aware tool selection, and domain-specific intelligence.

That last one, domain-specific intelligence, is the pattern closest to what the trading bot screenshots were pretending to show. It describes embedding expert logic and decision-making rules directly into a skill so Claude applies them consistently without being prompted each time. The example Anthropic actually uses for this pattern is a payment compliance workflow, not a trading bot. But the underlying concept is applicable to trading logic, which is exactly why someone found it convincing enough to misrepresent.
I am using the domain-specific intelligence pattern as the foundation for rebilding a trading bot, which I wrote about in my last post [I Built a Crypto Trading Bot and Lost Real Money. Here’s Why I’m Trying Again.].

Ai Trading Bot
Not because a tweet told me there was a trading bot in the document, but because I read the document and understood what the pattern could actually do.
The Takeaway
Read the primary source before sharing. It takes twenty minutes and it is almost always more interesting than the tweet that sent you there.
The Complete Guide to Building Skills for Claude is a genuinely useful document for anyone working with Claude at a serious level. It is not a trading bot. It is a framework for making Claude reliably useful across repeatable tasks, and that is actually worth more to most people than a bot with a 68.4% simulated win rate.
I am rebuilding tbot using the Claude Skills framework and documenting every step publicly at tbot.augustwheel.com. The previous post covers the full origin story of why the original bot lost money and what the rebuild looks like. Find it at augustwheel.com.