<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Matthias Meyer</title>
    <description>The latest articles on Forem by Matthias Meyer (@studiomeyer).</description>
    <link>https://forem.com/studiomeyer</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3866458%2F82bdd894-792b-43ea-ac99-4f9519ea1897.jpeg</url>
      <title>Forem: Matthias Meyer</title>
      <link>https://forem.com/studiomeyer</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/studiomeyer"/>
    <language>en</language>
    <item>
      <title>Why AI Can't Read Your Website — And What To Do About It</title>
      <dc:creator>Matthias Meyer</dc:creator>
      <pubDate>Thu, 09 Apr 2026 21:51:21 +0000</pubDate>
      <link>https://forem.com/studiomeyer/why-ai-cant-read-your-website-and-what-to-do-about-it-4f3l</link>
      <guid>https://forem.com/studiomeyer/why-ai-cant-read-your-website-and-what-to-do-about-it-4f3l</guid>
      <description>&lt;p&gt;Many websites are invisible to AI systems. Client-side rendering, missing semantics, and no machine interfaces cost visibility. What you can change today.&lt;/p&gt;

&lt;p&gt;For decades, Google was the gateway to the internet. You built a website, did your SEO, and hoped to land on page one. That dynamic is fundamentally shifting right now.&lt;/p&gt;

&lt;p&gt;Today, millions of people no longer ask Google -- they ask ChatGPT, Perplexity, Claude, or Gemini. And these AI systems answer directly, with concrete recommendations, facts, and links. If your website is not readable for these systems, you simply do not exist in this new world.&lt;/p&gt;

&lt;p&gt;This does not only affect tech companies. It affects every tradesperson, every agency, every local business. Because the question is no longer "Are you on Google?" -- it is "Does the AI know you?"&lt;/p&gt;

&lt;p&gt;The Problem: Beautiful Websites That AI Cannot See&lt;/p&gt;

&lt;p&gt;Many modern websites look fantastic. Animations, interactive elements, elaborate design. But under the hood, they deliver a problem: they are invisible to machines.&lt;/p&gt;

&lt;p&gt;Empty HTML From Client-Side Rendering&lt;/p&gt;

&lt;p&gt;Single Page Applications (SPAs) and purely client-side JavaScript render content only in the browser. When an AI crawler requests the page, it often receives nothing but an empty HTML shell with a single &lt;/p&gt;. The actual content loads through JavaScript -- and many crawlers do not execute JavaScript.

&lt;p&gt;The result: your page exists, but for AI systems it is empty.&lt;/p&gt;

&lt;p&gt;Too Much Code, Too Little Content&lt;/p&gt;

&lt;p&gt;When 80% of the source code consists of design classes, ad banners, and tracking scripts while only 20% is actual content, the page has a poor text-to-HTML ratio. AI systems have to extract the relevant content from a sea of technical noise -- and they often fail at this.&lt;/p&gt;

&lt;p&gt;Missing Semantic Structure&lt;/p&gt;

&lt;p&gt;When every element is a &lt;/p&gt;, all meaning is lost. AI systems need semantic HTML5 tags:  for the primary content,  for standalone pieces,  for navigation, a clean &lt;h1&gt; through &lt;h6&gt; hierarchy for structure. Without this, AI cannot distinguish what matters from what is decoration.

&lt;/h6&gt;
&lt;/h1&gt;
&lt;p&gt;What AI Actually Needs&lt;/p&gt;

&lt;p&gt;AI systems read your website fundamentally differently than humans. They do not see colors, animations, or layout. They see the DOM -- the structured source code of your page. And they need three things:&lt;/p&gt;

&lt;p&gt;Server-Side Rendering (SSR): The HTML code must be fully delivered by the server, not assembled in the browser. Frameworks like Next.js, Nuxt, or Astro provide this out of the box. Every crawler -- whether Google, Bing, or ChatGPT -- gets the complete content immediately.&lt;/p&gt;

&lt;p&gt;Clean DOM: A low ratio of markup to content. Fewer nested containers, fewer empty wrapper elements, more actual text. The higher the information density in the source code, the better AI can process the content.&lt;/p&gt;

&lt;p&gt;Semantic HTML5: Clear structure with , , , , , . A logical heading hierarchy. Alt texts for images. These tags are not optional -- they are the language that machines understand.&lt;/p&gt;

&lt;p&gt;The New Interfaces: Files That Exist Only for Machines&lt;/p&gt;

&lt;p&gt;Beyond clean HTML, there are now dedicated files that exist specifically for AI systems. They are the equivalent of a business card that you hand directly to the machine.&lt;/p&gt;

&lt;p&gt;llms.txt&lt;/p&gt;

&lt;p&gt;A plain text file in the root directory of your website that describes your company, services, and most important content in machine-readable form. No HTML tags, no CSS -- pure text with Markdown structure. AI systems like Claude and Perplexity actively look for this file.&lt;/p&gt;

&lt;p&gt;agents.json&lt;/p&gt;

&lt;p&gt;Defines what digital tools and interfaces your company offers. If you run APIs, chatbots, or other automated services, agents.json tells AI systems how to interact with them. It is the machine equivalent of a service overview.&lt;/p&gt;

&lt;p&gt;Structured Data (JSON-LD)&lt;/p&gt;

&lt;p&gt;The oldest and most mature of the three formats. JSON-LD blocks in your HTML deliver structured facts: who you are (Organization), what you offer (Service, Product), where you are (PostalAddress), what customers say (Review). Google has used this for years -- but for AI systems it is even more important.&lt;/p&gt;

&lt;p&gt;Structured Data as a Fact Supplier&lt;/p&gt;

&lt;p&gt;JSON-LD solves a central problem: hallucinations. When an AI finds no structured data, it has to extract facts from running text -- and risks errors in the process. With JSON-LD you deliver machine-readable facts that require no interpretation.&lt;/p&gt;

&lt;p&gt;An example: Instead of burying "We are an agency in southern Germany" in a paragraph, you tell the machine explicitly:&lt;/p&gt;

&lt;p&gt;Type: Organization&lt;br&gt;
Founded: (your founding year)&lt;br&gt;
Location: (your city)&lt;br&gt;
Services: (your specific offerings)&lt;br&gt;
Schema.org is the standard for this. It connects your business with the global Knowledge Graph -- the structured knowledge that AI systems use to understand the world. And sameAs links to LinkedIn, GitHub, or industry directories confirm to the AI: "Yes, this entity actually exists."&lt;/p&gt;

&lt;p&gt;Content That Works for AI&lt;/p&gt;

&lt;p&gt;Machine-readable structure alone is not enough. The content itself must also be AI-compatible. Three principles:&lt;/p&gt;

&lt;p&gt;High Information Density&lt;/p&gt;

&lt;p&gt;Every paragraph should deliver a concrete piece of information. Vague marketing phrases like "We offer innovative solutions for your business" contain exactly zero usable information for an AI. Instead: concrete numbers, specific services, verifiable facts.&lt;/p&gt;

&lt;p&gt;Inverted Pyramid&lt;/p&gt;

&lt;p&gt;Put the most important information at the beginning of each section. AI systems weight the first sentences more heavily. If your core argument sits in the last paragraph, it may get lost.&lt;/p&gt;

&lt;p&gt;Context-Independent Paragraphs&lt;/p&gt;

&lt;p&gt;AI systems break texts into chunks and process them individually. If a paragraph only makes sense together with the previous one -- "As mentioned above..." -- it loses its meaning once viewed in isolation. Every paragraph should be understandable on its own.&lt;/p&gt;

&lt;p&gt;What You Can Do Right Now&lt;/p&gt;

&lt;p&gt;A practical checklist to get started:&lt;/p&gt;

&lt;p&gt;Check your robots.txt: Make sure AI bots are allowed to crawl your site. GPTBot, ClaudeBot, PerplexityBot, Google-Extended -- many websites block these crawlers by default or accidentally.&lt;/p&gt;

&lt;p&gt;Enable Server-Side Rendering: If your website is a SPA, check the source code. Can you see the content directly in the HTML? If not, you need SSR or Static Site Generation.&lt;/p&gt;

&lt;p&gt;Create an llms.txt: A simple text file with your company name, core services, and most important links. Place it at yourdomain.com/llms.txt.&lt;/p&gt;

&lt;p&gt;Implement JSON-LD: Start with Organization schema on the homepage. Add Service schema on service pages. FAQ schema on pages with frequently asked questions.&lt;/p&gt;

&lt;p&gt;Rework your content: Go through your most important pages. Remove filler phrases, add concrete facts, structure with clear headings.&lt;/p&gt;

&lt;p&gt;Actively submit for indexing: Do not wait for search engines to find you. Submit your sitemap to Google Search Console and Bing Webmaster Tools. Use IndexNow for instant notifications when you publish new content.&lt;/p&gt;

&lt;p&gt;The Future Is Machine-Readable&lt;/p&gt;

&lt;p&gt;The question is not whether AI systems will become the primary source of information, but when. For many users, it already is. Those who make their website machine-readable now will have an advantage over everyone who only reacts when Google forces the change.&lt;/p&gt;

&lt;p&gt;The good news: most of these measures also make your website better for humans. Faster load times, clearer structure, better content. There is no downside.&lt;/p&gt;

&lt;p&gt;Want to know how well your website is readable for AI systems? We help businesses make their online presence machine-readable -- from technical foundations to content strategy. Learn more at studiomeyer.io/services/geo.&lt;/p&gt;

&lt;p&gt;Matthias Meyer&lt;br&gt;
Founder &amp;amp; AI Architect&lt;br&gt;
Builds AI-ready websites and AI automations for SMBs and agencies.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>llm</category>
      <category>web</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Claude Mythos Preview found thousands of zero-days in every major OS and browser. Here's what the headlines are missing. published: true</title>
      <dc:creator>Matthias Meyer</dc:creator>
      <pubDate>Tue, 07 Apr 2026 22:56:24 +0000</pubDate>
      <link>https://forem.com/studiomeyer/claude-mythos-preview-found-thousands-of-zero-days-in-every-major-os-and-browser-heres-what-the-2g</link>
      <guid>https://forem.com/studiomeyer/claude-mythos-preview-found-thousands-of-zero-days-in-every-major-os-and-browser-heres-what-the-2g</guid>
      <description>&lt;p&gt;Anthropic dropped something big yesterday. Not a new chat model, not a productivity feature. They revealed that an unreleased model called Claude Mythos Preview has been quietly finding thousands of critical security vulnerabilities across every major operating system and every major web browser. Some of these bugs are 27 years old.&lt;/p&gt;

&lt;p&gt;They are not releasing the model publicly. Instead, they launched Project Glasswing, a coalition with Apple, Microsoft, Google, AWS, CrowdStrike, NVIDIA, the Linux Foundation, and others. The goal: patch the bugs before attackers build similar AI.&lt;/p&gt;

&lt;p&gt;Most of the coverage I have seen reads like a rewritten press release. The actual details buried in the red team report and system card tell a different story. Here is what stood out to me as someone who runs AI agents in production every day.&lt;/p&gt;

&lt;h2&gt;
  
  
  The exploit rate is the real headline
&lt;/h2&gt;

&lt;p&gt;Finding bugs is one thing. Every static analysis tool finds bugs. The difference with Mythos is that it does not just find vulnerabilities. It builds working exploits for them.&lt;/p&gt;

&lt;p&gt;In testing against Firefox's JavaScript shell, Mythos turned 72.4% of discovered vulnerabilities into successful exploits. It achieved register control in another 11.6% of cases. Previous Claude models could spot bugs but failed almost entirely at exploitation. That gap is gone now.&lt;/p&gt;

&lt;p&gt;This is not a scanner. This is a model that reads code, understands the logic, finds the flaw, and writes a proof of concept that works. Autonomously.&lt;/p&gt;

&lt;h2&gt;
  
  
  Less than 1% is patched
&lt;/h2&gt;

&lt;p&gt;Anthropic says thousands of critical zero-days were found. Fewer than 1% have been fully patched so far. The volume is simply too large for the affected organizations to keep up.&lt;/p&gt;

&lt;p&gt;They are publishing cryptographic hashes of vulnerability details today, with plans to reveal specifics after fixes ship. This is standard responsible disclosure, but the scale is unprecedented. We have never had a single tool produce this many verified findings at once.&lt;/p&gt;

&lt;p&gt;For context: Google's Project Zero, one of the best human vulnerability research teams in the world, publishes around 50 to 80 bugs per year. Mythos found thousands in weeks.&lt;/p&gt;

&lt;h2&gt;
  
  
  The CyberGym benchmark gap
&lt;/h2&gt;

&lt;p&gt;On the CyberGym evaluation benchmark, Mythos scored 83.1%. Claude Opus 4.6, the next best model, scored 66.6%. That is not a marginal improvement. That is a generational jump within the same model family.&lt;/p&gt;

&lt;p&gt;For anyone tracking AI capabilities over time, this should raise questions about what the next generation looks like. If the gap between Opus and Mythos is this large, what happens when competitors catch up to where Mythos is today?&lt;/p&gt;

&lt;h2&gt;
  
  
  What they are actually giving away
&lt;/h2&gt;

&lt;p&gt;Buried in the announcement is something I think matters more long term than the vulnerability findings themselves.&lt;/p&gt;

&lt;p&gt;Anthropic is offering free Claude Max subscriptions to any verifiable open source maintainer. Not Mythos access, but Opus and Sonnet, which are still capable security tools. They committed $100M in usage credits for Project Glasswing partners and donated $4M to open source security organizations through the Linux Foundation and Apache Software Foundation.&lt;/p&gt;

&lt;p&gt;If you maintain critical open source software and you have no security budget, which describes most open source maintainers, you can apply through the Claude for Open Source program.&lt;/p&gt;

&lt;p&gt;This is a smart move. The vast majority of critical infrastructure runs on code maintained by small teams or individual volunteers. Giving them access to frontier AI for code review could prevent more bugs than any single audit.&lt;/p&gt;

&lt;h2&gt;
  
  
  The pricing tells you something
&lt;/h2&gt;

&lt;p&gt;When Mythos eventually becomes available through the API, it will cost $25 per million input tokens and $125 per million output tokens. That is roughly 5x more expensive than Opus 4.6.&lt;/p&gt;

&lt;p&gt;Anthropic is not positioning this as a general purpose model. The pricing alone ensures it will only be used for high value tasks where the cost of missing a bug is measured in millions. Security audits, compliance reviews, infrastructure hardening. Not chat, not content generation.&lt;/p&gt;

&lt;h2&gt;
  
  
  The uncomfortable question
&lt;/h2&gt;

&lt;p&gt;Anthropic built this. They chose to handle it responsibly with controlled access and coordinated disclosure. But the capability exists now. It is a matter of time before other labs, or well funded adversaries, reach similar performance.&lt;/p&gt;

&lt;p&gt;The 90 day disclosure window Anthropic set for publishing full vulnerability details is tight. With less than 1% of bugs patched, that creates real pressure on every affected vendor. And the affected vendor list is essentially everyone.&lt;/p&gt;

&lt;p&gt;Project Glasswing is a starting point. Anthropic said that explicitly. The real question is whether the defenders can stay ahead when this class of capability becomes widely available.&lt;/p&gt;

&lt;h2&gt;
  
  
  What this means for developers
&lt;/h2&gt;

&lt;p&gt;If you write code that touches the internet, your threat model just changed. Not because of anything you did wrong, but because the cost of finding vulnerabilities in your code just dropped by orders of magnitude.&lt;/p&gt;

&lt;p&gt;The practical takeaways:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Audit your dependencies.&lt;/strong&gt; If Mythos found 27 year old bugs in OpenBSD, your npm packages are not immune. The bugs that survived decades of human review are exactly the kind AI excels at finding.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Watch for the patches.&lt;/strong&gt; Over the next 90 days, expect a wave of critical security updates across operating systems, browsers, and open source projects. Apply them quickly.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;If you maintain open source, apply for Claude Max.&lt;/strong&gt; Free access to Opus for security review is genuinely useful. Take it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Rethink your security testing.&lt;/strong&gt; Static analysis tools that pattern match against known vulnerability types are not enough anymore. The bar just moved.&lt;/p&gt;

&lt;p&gt;The age of AI finding bugs faster than humans can fix them is not coming. It arrived yesterday.&lt;/p&gt;

</description>
      <category>security</category>
      <category>ai</category>
      <category>opensource</category>
      <category>devops</category>
    </item>
    <item>
      <title>StudioMeyer Crew: Turn Claude into a CEO, CFO, or CTO — Zero API Cost</title>
      <dc:creator>Matthias Meyer</dc:creator>
      <pubDate>Tue, 07 Apr 2026 19:50:38 +0000</pubDate>
      <link>https://forem.com/studiomeyer/studiomeyer-crew-turn-claude-into-a-ceo-cfo-or-cto-zero-api-cost-3f9j</link>
      <guid>https://forem.com/studiomeyer/studiomeyer-crew-turn-claude-into-a-ceo-cfo-or-cto-zero-api-cost-3f9j</guid>
      <description>&lt;p&gt;Switching between "act as my CFO" and "now think like a CTO" prompts works -- sort of. But every time you switch, Claude loses the role. The analysis gets shallow. There's no framework, no structure, no memory of what the CEO said when the CFO takes over.&lt;/p&gt;

&lt;p&gt;StudioMeyer Crew is an MCP server that gives Claude 8 expert personas with real business frameworks. Activate a CEO, and Claude uses Porter's Five Forces. Switch to CFO, and Claude runs unit economics with your actual numbers. Zero extra API cost -- runs entirely in your Claude subscription.&lt;/p&gt;

&lt;h2&gt;
  
  
  What does Crew actually do?
&lt;/h2&gt;

&lt;p&gt;Instead of writing long system prompts yourself, you activate a persona with one command:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Activate the CEO persona."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Claude instantly adopts the role -- with domain-specific frameworks, output formats, decision patterns, and constraints. Not a generic "act like a CEO" prompt, but a battle-tested system prompt with few-shot examples and anti-patterns.&lt;/p&gt;

&lt;h3&gt;
  
  
  8 Built-in Personas
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Persona&lt;/th&gt;
&lt;th&gt;Category&lt;/th&gt;
&lt;th&gt;What they bring&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;CEO&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Business&lt;/td&gt;
&lt;td&gt;Strategy, vision, Porter's Five Forces, SWOT, delegation frameworks&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;CFO&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Business&lt;/td&gt;
&lt;td&gt;Unit economics, ROI analysis, pricing models, budget planning&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;CMO&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Business&lt;/td&gt;
&lt;td&gt;Growth strategy, AARRR funnel, content marketing, SEO/GEO&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;CTO&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Tech&lt;/td&gt;
&lt;td&gt;Architecture review, DORA metrics, tech debt assessment, code review&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;PM&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Business&lt;/td&gt;
&lt;td&gt;RICE/ICE scoring, user stories, PRD generation, JTBD framework&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Analyst&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Ops&lt;/td&gt;
&lt;td&gt;Market research, competitive intelligence, data analysis&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Support&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Ops&lt;/td&gt;
&lt;td&gt;Customer communication, FAQ writing, onboarding guides&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Creative&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Creative&lt;/td&gt;
&lt;td&gt;Brand voice, copy, storytelling, design briefs&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  10 Tools
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Tool&lt;/th&gt;
&lt;th&gt;What it does&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;crew_activate&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Switch to a persona (loads frameworks + memory context)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;crew_deactivate&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Back to default Claude&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;crew_list&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Show all available personas&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;crew_status&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Who am I right now? Duration, token estimate&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;crew_feedback&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Rate the persona (1-5)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;crew_create&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Build your own custom persona&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;crew_delete&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Remove a custom persona&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;crew_workflow_list&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Available multi-persona workflows&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;crew_workflow_run&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Run a full workflow (e.g. CEO then CFO then CTO)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;crew_guide&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Help and onboarding&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Getting started: 30 seconds
&lt;/h2&gt;

&lt;p&gt;Add the server URL in Claude Desktop or Cursor:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;https://crew.studiomeyer.io/mcp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or via Claude Code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude mcp add crew &lt;span class="nt"&gt;--transport&lt;/span&gt; streamable-http https://crew.studiomeyer.io/mcp
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Works with Claude Desktop, Claude Code, Cursor, VS Code, Windsurf, and Zed.&lt;/p&gt;

&lt;h2&gt;
  
  
  What you can actually do with it
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Strategy session in 5 minutes
&lt;/h3&gt;

&lt;p&gt;"Activate CEO. Review our pricing strategy: we have 4 MCP products ranging from free to $49/month."&lt;/p&gt;

&lt;p&gt;Claude as CEO runs a structured analysis: market positioning, competitive landscape, pricing psychology, revenue projections. Not a vague opinion -- a framework-driven assessment with clear recommendations.&lt;/p&gt;

&lt;h3&gt;
  
  
  Financial sanity check
&lt;/h3&gt;

&lt;p&gt;"Switch to CFO. Are these unit economics sustainable?"&lt;/p&gt;

&lt;p&gt;The CFO persona calculates: customer acquisition cost, lifetime value, margin per tier, break-even timeline. With actual numbers, not hypotheticals.&lt;/p&gt;

&lt;h3&gt;
  
  
  Multi-persona workflows
&lt;/h3&gt;

&lt;p&gt;The real power: chaining personas. Three built-in workflows:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Workflow&lt;/th&gt;
&lt;th&gt;Personas&lt;/th&gt;
&lt;th&gt;What happens&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Strategy Review&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;CEO, then CFO, then CTO&lt;/td&gt;
&lt;td&gt;CEO defines strategy, CFO validates finances, CTO checks feasibility&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Content Pipeline&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;CMO, then Analyst, then Creative&lt;/td&gt;
&lt;td&gt;CMO plans content, Analyst fact-checks, Creative polishes&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Product Launch&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Analyst, PM, CEO, CMO, CTO&lt;/td&gt;
&lt;td&gt;Full launch analysis from research to go-live checklist&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;"Run the strategy review workflow for our Q2 plans."&lt;/p&gt;

&lt;p&gt;Each persona builds on the previous one's output. The CFO doesn't repeat what the CEO said -- they challenge it.&lt;/p&gt;

&lt;h3&gt;
  
  
  Memory Bridge
&lt;/h3&gt;

&lt;p&gt;If you also use StudioMeyer Memory, Crew automatically loads relevant context when activating a persona. The CFO searches for "revenue, costs, pricing decisions" in your memory. The CTO loads "architecture, tech stack, dependencies."&lt;/p&gt;

&lt;p&gt;No manual context switching. The persona knows your history.&lt;/p&gt;

&lt;h2&gt;
  
  
  What makes this different
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Feature&lt;/th&gt;
&lt;th&gt;StudioMeyer Crew&lt;/th&gt;
&lt;th&gt;DollhouseMCP&lt;/th&gt;
&lt;th&gt;Ruflo&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Personas&lt;/td&gt;
&lt;td&gt;8 (deep, with frameworks)&lt;/td&gt;
&lt;td&gt;150+ (generic)&lt;/td&gt;
&lt;td&gt;60+ (swarm)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Memory integration&lt;/td&gt;
&lt;td&gt;StudioMeyer Memory&lt;/td&gt;
&lt;td&gt;None&lt;/td&gt;
&lt;td&gt;Own DB (AgentDB)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Multi-persona workflows&lt;/td&gt;
&lt;td&gt;3 built-in&lt;/td&gt;
&lt;td&gt;None&lt;/td&gt;
&lt;td&gt;Swarm topology&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Custom personas&lt;/td&gt;
&lt;td&gt;Yes (Markdown + YAML)&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;td&gt;No&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;API cost&lt;/td&gt;
&lt;td&gt;$0 (Claude subscription)&lt;/td&gt;
&lt;td&gt;$0&lt;/td&gt;
&lt;td&gt;Requires API keys&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Domain frameworks&lt;/td&gt;
&lt;td&gt;DORA, Porter, AARRR, RICE&lt;/td&gt;
&lt;td&gt;Generic prompts&lt;/td&gt;
&lt;td&gt;Generic prompts&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The key difference: Crew personas aren't just role descriptions. They include decision frameworks, few-shot examples, output format constraints, and anti-patterns. A CFO persona that says "consider ROI" is useless. A CFO persona that runs a 5-year DCF model with your inputs is useful.&lt;/p&gt;

&lt;h2&gt;
  
  
  Custom personas
&lt;/h2&gt;

&lt;p&gt;Don't need a CFO but need a Legal Advisor? Create your own:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"Create a persona called Legal Advisor, focused on contract review, GDPR compliance, and risk assessment."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Crew saves it as a Markdown file with YAML frontmatter. Your custom personas persist across sessions and work exactly like built-in ones.&lt;/p&gt;

&lt;h2&gt;
  
  
  Pricing
&lt;/h2&gt;

&lt;p&gt;Free. All 10 tools, all 8 personas, all 3 workflows. No API keys, no credit system, no hidden costs. Runs in your existing Claude subscription.&lt;/p&gt;




&lt;p&gt;We built Crew because we got tired of writing the same "act as my CFO" prompts and getting shallow results every time. Eight personas, tested across hundreds of real business decisions at StudioMeyer. If you want Claude to think like an expert instead of a generalist -- try it.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://studiomeyer.io/en/services/crew" rel="noopener noreferrer"&gt;Learn more about StudioMeyer Crew&lt;/a&gt;&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>claude</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
