Tag: AI Strategy

  • AI Work Order Architecture: Decoupling AI & Execution

    AI Work Order Architecture: Decoupling AI & Execution

    Tygart Media Strategy
    Volume Ⅰ · Issue 04Quarterly Position
    By Will Tygart
    Long-form Position
    Practitioner-grade

    AI systems are good at identifying problems. Automated systems are good at fixing them. The failure mode that kills most AI automation projects is building them as one thing instead of two.

    When you couple intelligence and execution in a single system, you get something that can do everything slowly and nothing reliably. The intelligence layer needs to be conversational, contextual, and judgment-driven. The execution layer needs to be deterministic, fast, and parallelizable. These are fundamentally different behaviors, and they require different tools.

    The Work Order as the Bridge

    The behavior-first design for AI automation has three distinct stages: identify (Claude analyzes a system and surfaces what needs to be done), deposit (Claude writes a structured work order to a persistent queue), and execute (a Cloud Run worker reads the work order and runs the fix).

    The work order is the key artifact. It’s the contract between the intelligence layer and the execution layer. A well-formed work order contains everything the execution layer needs to run without asking Claude any follow-up questions: the target (site, post ID, endpoint), the operation (what to do), the parameters (how to do it), and the success criteria (how to know it worked).

    When the work order is well-formed, the execution layer is a dumb runner. It doesn’t need to understand context, history, or judgment. It reads the work order, executes the operation, and writes the result back. The intelligence that produced the work order stays in the intelligence layer — which is exactly where it belongs.

    What This Looks Like in Practice

    In a multi-site content operation, Claude might analyze a WordPress site and identify 47 posts with missing FAQ schema. The tool-first approach runs Claude in a loop, generating and publishing schema for each post sequentially. This is slow, context-dependent, and fragile — if Claude loses context mid-run, the job is incomplete and the state is unclear.

    The behavior-first approach: Claude generates 47 structured work orders, one per post, and deposits them in a Notion database with status “Queued.” A Cloud Run service reads the queue and processes each work order independently, in parallel, writing results back to each row. Claude is done in minutes. The Cloud Run service finishes the execution while Claude is doing something else entirely.

    The behaviors are clean. The tools serve them. The system scales horizontally without requiring Claude to be in the loop for execution.

    The Two Lanes of AI Automation

    Not everything belongs in the work order queue. Some operations require judgment that the execution layer can’t replicate: content quality assessment, strategy decisions, anything where “it depends” is the correct first answer. These belong in a different lane — one where Claude stays in the loop through completion.

    A mature AI automation architecture has both lanes clearly defined. Deterministic operations (taxonomy fixes, schema injection, meta rewrites, image uploads, internal link additions) go to the work order queue and run without Claude. Judgment-dependent operations (content strategy, quality review, client recommendations) stay in the conversational layer where Claude’s judgment can be applied continuously.

    The discipline is in knowing which lane each operation belongs in — and resisting the temptation to put judgment-dependent work in the queue just because it would be faster. Faster execution of the wrong thing is not an improvement.


  • Tacit Knowledge Extraction: Behavior Before AI Systems

    Tacit Knowledge Extraction: Behavior Before AI Systems

    Tygart Media Strategy
    Volume Ⅰ · Issue 04Quarterly Position
    By Will Tygart
    Long-form Position
    Practitioner-grade

    Every organization has two kinds of knowledge. The first kind is documented: processes, policies, training materials, SOPs. The second kind is tacit: the adjustments people make without thinking, the thresholds they’ve learned from experience, the judgment calls they can execute in seconds but couldn’t explain in a meeting.

    The documented knowledge is easy to feed into an AI system. The tacit knowledge is what makes the organization actually work — and it’s almost never in a format that AI can use.

    The gap between these two knowledge types is where most enterprise AI implementations fail. Companies feed their AI the documentation and wonder why it can’t give the same answers a 10-year veteran would give. The answer is that the 10-year veteran isn’t running on the documentation. They’re running on the tacit layer — and nobody captured it.

    What Tacit Knowledge Extraction Actually Requires

    You cannot extract tacit knowledge through forms, surveys, or documentation requests. Tacit knowledge by definition is knowledge that the holder cannot fully articulate without a skilled interviewer pulling it out. The behavior that surfaces it is specific: a conversational sequence that descends through four distinct layers.

    Layer 1 — Surface protocol: “What’s your process when X happens?” This gets the documented version — what people think they do, what they’d write in an SOP. Necessary baseline but not the target.

    Layer 2 — Exception probing: “When do you deviate from that?” This surfaces the adaptive layer — the judgment calls that experience produces. The deviations are where tacit knowledge lives.

    Layer 3 — Sensory and somatic: “How do you know it’s that specific problem and not something else?” This is the hardest layer to surface and the most valuable. It captures knowledge that the holder has never verbalized — pattern recognition so ingrained it operates below conscious awareness.

    Layer 4 — Counterfactual pressure: “What would break if you weren’t here tomorrow?” This surfaces the knowledge hierarchy — what actually matters versus what’s ritual. Most organizations don’t know which is which until the person with the knowledge leaves.

    The Behavior Determines the Tool Stack

    Once this extraction behavior is understood, the tool selection for the AI system becomes clear. You need: a way to capture the conversation at high fidelity, a way to convert the transcript into structured knowledge artifacts, a storage layer that preserves the knowledge in a format AI systems can query, and an embedding layer that makes the knowledge semantically searchable.

    These are four distinct behaviors served by four distinct tools. The extraction conversation is a human behavior — no tool replaces it. The structuring is where AI earns its keep: running the transcript through multiple models with different attack angles, identifying the tacit signatures embedded in the language, organizing the output into the knowledge concentrate schema. The storage is a database decision. The embedding layer is a vector store.

    None of these tool choices could have been made intelligently without first understanding the extraction behavior. The behavior is the constraint that makes the tool selection tractable.

    The Minimum Viable Experiment

    For any organization that wants to capture its tacit knowledge layer before it walks out the door: four extraction conversations, transcribed and run through a three-model distillation round, produce a knowledge artifact dense enough to answer questions that the documentation cannot. The experiment takes a week and costs almost nothing. The cost of not doing it shows up when the person who holds the knowledge leaves and the organization discovers, for the first time, how much was never written down.


  • Behavior-First System Design: Build for Action, Not Tools

    Behavior-First System Design: Build for Action, Not Tools

    Tygart Media Strategy
    Volume Ⅰ · Issue 04Quarterly Position
    By Will Tygart
    Long-form Position
    Practitioner-grade

    There is a mistake that kills more technology projects than bad code, bad vendors, or bad timing combined. It happens before a single line is written, before a single subscription is purchased, before anyone even knows there’s a problem.

    The mistake is this: choosing the tool before understanding the behavior.

    It looks like a reasonable decision. You need to manage customer relationships, so you buy a CRM. You need to publish content, so you build around WordPress. You need to organize knowledge, so you set up Notion. The tool selection feels like the hard part — the research, the demos, the pricing comparisons. By the time you’ve chosen, you feel like the work is half done.

    It isn’t. You’ve just committed to building a system shaped like a tool instead of shaped like a behavior. And when the behavior and the tool don’t match, the system fails quietly — not in a crash, but in a slow drift toward abandonment, workarounds, and the quiet understanding that “we don’t really use that anymore.”

    The alternative is building the system around the behavior first. It sounds obvious. Almost nobody does it.


    What “Behavior-First” Actually Means

    A behavior is what actually happens — or needs to happen — in your operation. It’s not a goal, not a feature request, not a capability. It’s the specific sequence of actions, decisions, and handoffs that produce a result.

    Most system design starts with tools and works backward to behaviors. Behavior-first design starts with the behavior and works forward to the minimum set of tools that can serve it.

    The difference sounds subtle. The outcomes are not.

    When you start with the tool, you spend the first six months learning the tool’s shape and then trying to reshape your operation to fit it. When you start with the behavior, you spend the first six months building a system that serves the operation — and then choosing the simplest tool that delivers what the behavior requires.

    The tool-first approach produces complexity. The behavior-first approach produces leverage.


    Six Behaviors That Built This Operation

    The following examples are drawn from a single AI-native operation built over three years. None of them started with a tool selection. All of them started with the question: what actually needs to happen here?

    1. Write → Store → Distribute (The Content Pipeline)

    Most content operations are built around WordPress. The platform is the system. Articles go into WordPress, WordPress manages drafts, WordPress publishes, WordPress is the source of truth. This is tool-first design.

    The behavior is different. The behavior is: write a piece of content, preserve it permanently, distribute it to wherever it needs to go.

    When you build around that behavior, WordPress becomes one destination among several — not the system. Notion becomes the storage layer. WordPress becomes the distribution layer. The article exists independently of where it’s published. If WordPress goes down, if the WAF blocks you, if the site moves hosts — the content is not at risk. The behavior (write → store → distribute) is served by a stack of tools, none of which is the irreplaceable center.

    The practical result: every article written in this operation goes to Notion first, WordPress second. Not because Notion is a better publishing platform — it isn’t. Because the behavior requires permanent, accessible storage before distribution, and WordPress was never designed to be that.

    2. Identify → Deposit → Execute (The Work Order Architecture)

    The problem: an AI system can identify what’s wrong with a WordPress site in seconds — thin content, missing schema, broken taxonomy, orphan pages — but the identification and the fix are handled by completely different systems. The identification lives in a conversation. The fix lives in a deployment. There’s no bridge.

    The behavior is: Claude identifies a problem, deposits a structured work order, a Cloud Run worker executes it. The intelligence and the execution are decoupled. Neither layer needs to know how the other works.

    Built around that behavior, the tool choices become obvious. Notion holds the work order queue — not because Notion is a task management tool (though it is), but because Claude can write to it via API and a Cloud Run service can read from it. The tools serve the behavior. The behavior doesn’t contort to serve the tools.

    3. Extract → Distill → Deploy (The Human Distillery)

    The behavior here is one of the rarest in any knowledge-intensive industry: taking tacit knowledge — the unwritten, unspoken operational intelligence that lives in people’s heads — and converting it into structured artifacts that AI systems can immediately use.

    Tacit knowledge doesn’t fit into forms, surveys, or databases. It surfaces through conversation. The extraction behavior is a specific sequence: disarm the subject, descend through four layers of questioning (documented protocol → exception cases → sensory knowledge → counterfactual pressure), capture what surfaces, and distill it into a dense artifact.

    That behavior existed long before any tool was selected to support it. The tool choices — which models to run distillation through, how to structure the output schema, where to store the resulting knowledge concentrates — all came after the behavior was understood. The behavior is irreplaceable. The tools are interchangeable.

    4. Observe → Route → Produce (Task Routing for Variable Attention)

    Most productivity systems are built around the assumption that the operator applies consistent, scheduled attention to work. Tasks sit in queues. Work happens in order. Focus is managed through priority.

    That behavior doesn’t match how an ADHD-wired operator actually works. The actual behavior is: attention arrives unbidden, attaches to whatever has activated the interest system, runs at extraordinary intensity, and then ends — also unbidden. The work happens in spirals, not lines.

    An AI-native operation designed around this actual behavior routes tasks differently. High-interest, high-judgment work goes to the operator when the operator’s attention is activated. Low-interest, deterministic work gets routed to automated pipelines that run on schedule regardless of operator state. The behavior — variable, interest-driven, high-intensity — shapes the system. The system doesn’t demand behavior the operator can’t deliver.

    The result is not a workaround. It’s an architecture. And the architecture works better for a neurotypical operator too — because the constraints that neurodivergence makes extreme are present in milder form in everyone.

    5. Touch → Remind → Refer (The CRM Community Framework)

    The restoration industry spends $150–$500 per lead acquiring customers and then never contacts them again. Not because they don’t want to. Because the tool they have — a job management system built around transactions — doesn’t support the behavior they need.

    The behavior is: make consistent, relevant, human contact with warm relationships at regular intervals, using legitimate business moments as the reason. That’s it. The behavior is simple. The tool selection is almost irrelevant — a spreadsheet and a Mailchimp free account can execute it. What matters is that the system is built around the behavior (stay present in warm relationships) rather than around the tool (send marketing emails).

    When you build around the tool, you get a marketing email campaign. When you build around the behavior, you get a community — a network of people who feel a genuine two-way relationship with your company and who refer you business because you’re the company that actually stayed in touch.

    The technical implementation of this — segmentation from ServiceTitan and Jobber, email automation in Mailchimp or Brevo, relationship intelligence in a Notion Second Brain — is documented in full in the CRM Community Framework series. Every tool choice in that series is downstream of the behavior. None of it works if you start with the tool.

    6. Signal → Display → Act (The Four-Layer Data Architecture)

    A complex multi-site operation generates data from dozens of sources simultaneously — WordPress post metrics, GCP Cloud Run logs, Notion task statuses, client pipeline movements, content performance signals. The instinct is to find one tool that can hold all of it. The tool becomes the system.

    The behavior is different for each data type. Machine-generated operational data (image processing logs, batch job results, embedding vectors) needs to be written and read by automated systems at high speed. Human-actionable signals (site health alerts, content gaps, client status changes) need to be displayed in a way a person can act on without noise. Content in progress needs to be stored independently of where it will ultimately be published.

    Four behaviors. Four tool layers. WordPress for published content, GCP for machine data, Notion for human signals, Google Drive for files. No single tool tries to do all four. Each tool is chosen because it’s the best fit for one specific behavior — not because it can technically handle the others.


    How to Apply This in Your Operation

    The behavior-first design process has three steps, and none of them involve opening a browser tab to research tools.

    Step 1: Write down what actually needs to happen. Not what you want to accomplish. Not what you wish the system could do. The specific sequence of actions that produces the result you need. Subject → verb → object, repeated until the behavior is fully described. “Someone writes an article. The article needs to be findable in six months. The article needs to be published to a website.” That’s a behavior. “We need better content management” is not.

    Step 2: Identify where the behavior breaks down today. Every system has the places where it works and the places where it silently fails. A CRM that nobody updates after the job closes. An email platform that has contacts from three years ago and no segmentation. A content process that lives in someone’s head. These are the behavior gaps — the places where the actual behavior doesn’t match the intended behavior.

    Step 3: Choose the simplest tool that serves the behavior. Not the most powerful. Not the most popular. Not the one with the best demo. The one that makes the behavior easiest to execute consistently. A $13/month Mailchimp account and a Google Sheet will outperform a $400/month marketing platform if the behavior is four emails per year to a warm local database — because the complexity of the expensive tool introduces friction that kills the behavior entirely.


    The AI-Native Operation Is Behavior-First by Definition

    The reason AI-native operations tend to outperform tool-native operations has nothing to do with AI being smarter. It has to do with design philosophy.

    AI tools, at their best, are infinitely flexible. They don’t impose a shape on your operation. They serve whatever behavior you describe. The operator who builds an AI-native operation is forced — by the nature of the tools — to understand their own behaviors first. You cannot prompt your way to a useful output without knowing what useful looks like. You cannot build a pipeline without understanding the sequence it’s meant to automate.

    This is why the AI-native operator has a structural advantage over the SaaS-native operator. Not because their tools are better. Because the process of building with AI forces behavior-first thinking, and behavior-first thinking produces systems that compound over time instead of decaying into expensive shelf-ware.

    The tool will change. The behavior won’t. Build the system around the behavior.


    Frequently Asked Questions

    How do you identify the behavior if you’ve always built around tools?

    Start with the breakdowns. Wherever your current system has workarounds, manual steps, or things people do “outside the system,” those are the places where the tool’s shape and the behavior don’t match. The workarounds are the behavior. Build the new system to serve them directly.

    Doesn’t this make tool selection harder and slower?

    It makes it faster. When you know the behavior precisely, you have a clear evaluation criterion: does this tool make the behavior easier to execute consistently, or does it add complexity? Most tool evaluations fail because the criteria are vague. Behavior-first evaluation is fast because the test is concrete.

    What if the behavior changes over time?

    Behaviors evolve. Systems built around behaviors can evolve with them — you swap the tool layer without disrupting the behavior layer. Systems built around tools can’t evolve without a full rebuild, because the tool is the system. Behavior-first architecture is inherently more resilient to change.

    Is this just another way of saying “process before technology”?

    It’s related but more specific. “Process before technology” is usually interpreted as documentation before implementation — write the SOPs, then build the tools to support them. Behavior-first design is about understanding the actual behavior of the operation, which often differs significantly from the documented process. You’re designing around what people and systems actually do, not what they’re supposed to do.

    How does this apply to AI tool selection specifically?

    AI tools are especially susceptible to tool-first thinking because they’re impressive in demos. The demo shows capability; the behavior question asks whether that capability serves a specific sequence in your operation. Most AI tool adoptions fail not because the tools are bad but because they were selected based on capabilities rather than behaviors. The question is never “what can this tool do?” It’s “which of my behaviors does this tool serve, and does it serve them better than what I have now?”


  • Real Estate AI Search: Getting Found Before Buyers Call

    Real Estate AI Search: Getting Found Before Buyers Call


    Tygart Media — Real Estate Content Strategy

    How Real Estate Agents Get Found in AI Search Before Buyers Contact Anyone

    By Tygart Media Updated: April 12, 2026
    The AI pre-search reality for real estate: Gartner projects up to 25% of traditional search volume will migrate to AI tools by the end of 2026. In real estate, this means buyers and sellers are asking ChatGPT, Perplexity, and Google AI Overviews questions like “What’s the best neighborhood in [city] for families with young kids and walkable schools?” and “How competitive is the [city] real estate market for buyers right now?” — before they open a browser tab, before they visit Zillow, and before they contact an agent. The agent whose content is cited in those answers enters the consideration set at the very beginning of the buyer’s journey.

    Why AI Citation Matters More Than Position 1 for Real Estate

    Traditional real estate SEO chased position 1 rankings for local keywords. AI citation operates differently: it targets the research-phase questions that precede any specific property or agent search. A buyer who asks ChatGPT “what is [neighborhood] like for a family moving from out of state” is not yet searching for a property. They’re building a mental model of the market. The agent cited as the authoritative source on that neighborhood during this phase establishes credibility before any competitor has been considered.

    According to Digital Agent Club’s 2026 real estate digital marketing analysis, AI search queries in real estate are “full-sentence questions people actually ask out loud” — specifically neighborhood character, school quality, market competitiveness, and commute viability. These are exactly the questions that well-optimized neighborhood guides and market reports are built to answer.

    How do real estate agents get cited in ChatGPT and Perplexity for neighborhood and market questions?
    Real estate agents earn AI citations for neighborhood and market queries when their WordPress content combines: ranking in the top 20 organic results for the query (the access prerequisite), named geographic entity references that AI systems can verify (school district names, transit corridors, MLS board as data source, NAR terminology for market conditions), direct-answer speakable blocks targeting neighborhood character questions (“what is [neighborhood] known for” and “what are the schools like in [neighborhood]”), and FAQPage JSON-LD schema making Q&A pairs machine-parseable. National portals have generic neighborhood pages. Local agents have genuine local knowledge encoded in entity-rich, schema-structured content — which is exactly what AI systems prefer to cite.

    The Four Real Estate Content Types That Earn AI Citations

    1. Neighborhood Character Guides

    The most AI-citable real estate content directly answers “what is [neighborhood] like?” — the question buyers ask AI before they search for properties. Guides with named school entities, commute corridor references, community character description, and price range context are machine-verifiable by AI systems against geographic and institutional data. A guide that says “Oakwood Heights is served by Lincoln Elementary (GreatSchools rating 8/10), is 22 minutes to downtown via I-90, and has a median home price of $487K per NWMLS Q1 2026 data” provides entity anchors that AI systems can cite with confidence.

    2. Market Condition Analyses

    Buyers ask AI “is [city] a buyer’s or seller’s market right now?” Market report content with specific MLS data, defined market condition criteria (months of supply, list-to-sale ratio), and a dated “last updated” date is AI-citable because it provides a verifiable, sourced, current answer to a question buyers actively ask during market research. Undated or unverified market commentary is not citable — AI systems evaluate content freshness before surfacing market data.

    3. Buyer and Seller Process Explainers

    Process questions are high-citation opportunities: “how does the home buying process work,” “what is earnest money,” “how do real estate contingencies work,” “what does days on market mean.” These are universal questions with verifiable, direct answers that don’t require geographic specificity. FAQPage schema targeting these questions earns both People Also Ask placements and AI citation for the specific process queries buyers ask AI assistants during active home search.

    4. Local Market Comparison Content

    “[Neighborhood A] vs [Neighborhood B]” comparison content is highly AI-citable because it directly answers one of the most common pre-decision buyer questions. AI systems surface content that provides the specific comparison a buyer is asking about — school district comparison, price difference, commute difference, neighborhood character comparison. An agent who writes authentic, data-backed neighborhood comparison content owns a content type that neither national portals nor most local competitors are producing.

    Geographic entity injection, speakable blocks targeting neighborhood AI queries, and FAQPage schema are the three GEO deliverables applied to real estate WordPress content through WordPress content optimization for real estate agents via SiteBoost.

    Frequently Asked Questions

    Which AI systems matter most for real estate agent visibility?

    Google AI Overviews has the largest reach — appearing at the top of results for real estate research queries including neighborhood character, school quality, and market condition searches. Perplexity is increasingly used by out-of-state buyers doing research before relocation because it cites sources inline, giving cited agents visible brand exposure. ChatGPT’s growing search integration captures the “which neighborhood should I consider” research questions that precede any specific search. All three evaluate similar content signals: named geographic and institutional entity references, direct-answer formatting, and FAQPage schema. Optimizing for one effectively optimizes for all.

    Can a new real estate agent website earn AI citations?

    Yes, for specific hyper-local queries with low competition. A new agent website with one deeply optimized, entity-rich neighborhood guide for a specific neighborhood can rank in positions 11–20 for that neighborhood’s character and school queries — and earn AI citations for those specific queries even without broad domain authority. The AI citation selection among ranking pages rewards content quality signals — entity depth, direct-answer structure, schema — not just ranking position. Starting with your primary farm area and building one genuinely authoritative guide is more effective than thin coverage of many neighborhoods.

    How is AI search optimization different from traditional real estate SEO?

    Traditional real estate SEO prioritized local signals — Google Business Profile, NAP consistency, location-specific pages, and review volume. AI search evaluates content quality signals: named geographic entities (school district names, transit references, MLS board citations), direct-answer formatting (speakable blocks with 40–60 word direct answers), and machine-readable schema (FAQPage, LocalBusiness, RealEstateListing). Traditional SEO remains the prerequisite — 97% of AI citations come from pages already ranking organically. But among ranking pages, AI citation requires the additional entity and schema layer that most real estate agents’ WordPress content currently lacks.

    Sources: Digital Agent Club, “Real Estate Digital Marketing 2026” (November 2025); Luxury Presence, “194 Best Real Estate Keywords for 2025–2026”; Gartner 2025–2026 search migration projections (cited via Digital Agent Club); LLMrefs, “Answer Engine Optimization: The Complete Guide for 2026”
  • Medical Practice AI Overviews: How to Get Featured

    Medical Practice AI Overviews: How to Get Featured

    Tygart Media — Healthcare Content Strategy

    How Medical Practices Get Featured in Google AI Overviews (And Why It Matters More Than Page 1)

    By Tygart Media Updated: April 12, 2026
    The AI Overview reality for healthcare: Since March 2025, Google AI Overviews have grown by 115% in healthcare search results. Approximately 45% of medical keywords now trigger an AI Overview at the top of results — appearing before every organic listing, every ad, and every local pack result. According to PracticeBeat’s 2026 SERP data, AI Overviews and Local Pack results combined now capture over 80% of clicks for medical queries. Being cited as a source in an AI Overview is not just an SEO metric — it is how independent medical practices compete with large health systems for patient attention at the moment of highest urgency.

    How Google Selects Medical Content for AI Overviews

    Two cards: answer shown in overview versus optional click
    How Google selects medical content for AI Overviews.

    Google’s AI Overview system does not randomly select medical content. According to Silvr Agency’s 2026 AI Overview analysis, Google evaluates websites based on E-E-A-T signals, content quality (comprehensive, well-researched, with proper citations), and structural accessibility — whether the AI can parse and extract the answer it needs. For medical content specifically, the evaluation is stricter: physician authorship schema, clinical entity references, and MedicalCondition or MedicalProcedure schema are the signals that distinguish AI-citable medical content from content that gets bypassed.

    How do medical practices get cited in Google AI Overviews for health queries? Medical practices earn Google AI Overview citations when their WordPress content combines: ranking in the top 20 organic results for the query (the access prerequisite — 97% of AI citations come from top-20 pages), named physician authorship with credential schema (Experience and Expertise signals), clinical entity references that AI systems can verify (ADA, CDC, NIH guidelines, ICD-10 codes, specialty board standards), MedicalCondition or MedicalProcedure schema markup that makes the content machine-parseable, and FAQPage schema with direct-answer pairs targeting patient questions. Practices with all five elements in their highest-traffic condition and treatment articles are systematically more likely to appear in AI Overviews than practices missing any one of them.

    The Five Structural Requirements for Medical AI Overview Eligibility

    Comparison of Claude how-to fit versus local service page fit for assistants
    Five structural requirements for medical AI Overview eligibility.

    1. Organic Ranking in the Top 20 (The Prerequisite)

    AI Overview citations come almost exclusively from pages that already rank in the top 20 organic results. This means the traditional SEO foundations — title tag optimization, meta description, internal linking, backlinks from authoritative medical sources — must be in place before AI citation can occur. Optimization for AI Overview citation assumes the article is already ranking; if it isn’t, the priority is first getting it into the top 20.

    2. Named Physician Authorship With Schema

    Google’s AI does not cite anonymous health content. The authorship requirement is specific: a named physician, linked to a bio page with verifiable credentials, with Physician schema markup connecting the content to that named medical entity. PracticeBeat’s 2026 AI Overview research notes that “every medical page must include machine-readable author and reviewer information” including degrees, licenses, professional affiliations, and links to trusted digital identities such as LinkedIn, PubMed, or medical board profiles.

    3. Clinical Entity References

    Named clinical entities are the verifiable anchors AI systems use to evaluate medical content authority. For an article about hypertension: “JNC 8 blood pressure guidelines,” “ACC/AHA 2017 hypertension guidelines (130/80 mmHg threshold),” “ICD-10 I10 for essential hypertension,” “thiazide diuretics as first-line therapy per ACC/AHA recommendations.” These are machine-verifiable by the AI against known clinical standards — which is exactly what Google’s systems check before citing a source.

    4. MedicalCondition or MedicalProcedure Schema

    Schema.org’s MedicalCondition and MedicalProcedure types provide explicit structured data that tells Google’s AI exactly what the page is about clinically. A condition article with MedicalCondition schema identifying the condition’s name, symptoms, risk factors, and treatments in machine-readable format is significantly more AI-citable than the same article without schema — the AI doesn’t have to infer the structure, it’s explicitly provided.

    5. FAQPage Schema With Patient-Focused Questions

    FAQPage schema directly feeds People Also Ask placements and AI Overview citation. For medical content, the questions that earn AI citations target the patient research phase: “What are the symptoms of [condition]?”, “How is [condition] diagnosed?”, “What treatments are available for [condition]?”, “When should I see a doctor about [symptom]?” These direct-answer pairs, with FAQPage JSON-LD, make the content machine-extractable for AI synthesis.

    The five AI Overview eligibility requirements — physician schema, clinical entity injection, MedicalCondition/Procedure schema, and FAQPage schema — are applied across your existing article library as part of WordPress content optimization for medical practices through SiteBoost. Clinical content unchanged.

    Frequently Asked Questions

    Desk with laptop, checklist notebook, and billing card ready before creating an Anthropic API key
    Frequently asked questions.
    Are Google AI Overviews replacing traditional search results for medical queries?

    AI Overviews appear above traditional organic results for approximately 45% of medical keywords and are growing rapidly — up 115% since March 2025. They do not replace organic results, but they significantly reduce clicks to organic listings for queries where an AI Overview appears. Practices cited as sources in AI Overviews receive attribution links that still drive traffic, and the brand recognition from being cited as a medical authority carries value even in zero-click scenarios. The priority in 2026 is appearing in both the AI Overview (citation) and the organic result below it (direct traffic).

    Can a small independent practice get featured in AI Overviews against large health systems?

    Yes — and this is one of the significant opportunities of AI Overview optimization. Large health systems have brand authority but often produce generic, committee-authored content that lacks the clinical specificity and direct-answer structure AI systems favor. An independent specialist practice with highly specific, physician-authored condition and procedure content — optimized with clinical entity references and FAQPage schema — can outperform large health systems for specific condition queries where their content is more precise and more directly answerable.

    How long does it take for optimized medical content to appear in AI Overviews?

    For content already ranking in the top 20 organic results, AI Overview eligibility can be established within 2–6 weeks of optimization — the time it takes Google’s crawlers to re-evaluate the updated content with its new entity references, schema markup, and structured Q&A pairs. AI Overviews update more frequently than organic rankings. Content that was ranking but not being cited in AI Overviews often begins appearing within one crawl cycle after clinical entity and schema optimization is applied.

    Sources: PracticeBeat, “AI Overviews & SEO for Doctors in 2025” (November 2025); PracticeBeat, “SEO for Doctors in 2026: Medical SERP Playbook” (December 2025); Silvr Agency, “AI Overviews & SEO in 2026: A Complete Guide for Medical Practices”; Digitalis Medical, “Medical SEO Strategy” (2026)
  • SaaS AI Citation: How to Rank in ChatGPT for B2B Software

    SaaS AI Citation: How to Rank in ChatGPT for B2B Software

    Tygart Media — SaaS Content Strategy

    How B2B SaaS Companies Get Cited by AI When Buyers Research Software (Before They Demo)

    By Tygart Media Updated: April 12, 2026
    The pre-demo AI research phase: According to Gartner’s 2025 B2B Buying Report, 75% of B2B buyers prefer a rep-free sales experience. In practice, this means buyers spend the early evaluation phase asking AI assistants — not sales reps — the research questions that shape their shortlist. “What are the best project management tools for a remote engineering team?” “How does [category] software typically integrate with Salesforce?” “What should I look for when evaluating [software type]?” The SaaS company whose content is cited in those AI answers enters the consideration set before any human contact — and with trust already established.

    The Mechanics of SaaS AI Citation

    Four-stage funnel: citation, click, engage, convert
    The mechanics of SaaS AI citation.

    ChatGPT, Perplexity, and Google AI Overviews all use retrieval-augmented generation — they search the web, retrieve candidate pages, and evaluate those pages before synthesizing an answer. For SaaS queries, the evaluation criteria are specific: does the content name integration ecosystem entities that the AI can verify? Does it have direct-answer structure for the question being asked? Does it have FAQPage schema that makes Q&A pairs machine-parseable? Does it rank in the top 20 organic results — the prerequisite for AI citation consideration?

    SaaS companies that earn AI citations at the research stage have a meaningful advantage in the sales cycle. A buyer who encountered your content through a ChatGPT answer about their software evaluation criteria arrives at your demo request form with established familiarity — not as a cold prospect.

    What makes B2B SaaS content get cited by ChatGPT and Perplexity during software research? B2B SaaS content earns AI citation during software research when it combines: organic ranking in the top 20 results for the query (the access prerequisite), named integration entity references that AI systems can verify (Salesforce, HubSpot, Slack, Zapier, Microsoft Teams, Workday), direct-answer speakable blocks addressing the evaluation criteria buyers ask about (implementation timeline, security certifications, pricing model, integration depth), and FAQPage JSON-LD schema making consideration-stage Q&A pairs machine-parseable. Content that answers “what should I look for in [software category]” with specific, verifiable criteria earns AI citation at the exact moment buyers are forming their evaluation shortlist.

    The Four Content Types That Earn SaaS AI Citations

    Comparison of Claude how-to fit versus local service page fit for assistants
    The four content types that earn SaaS AI citations.

    1. Buyer Criteria Content

    “What to look for in [software category]” content with specific named criteria — security certifications (SOC 2 Type II, ISO 27001, GDPR compliance), integration ecosystem depth, pricing model (per seat vs usage-based vs flat rate), implementation timeline, and support SLA. These are the criteria buyers ask AI assistants to help them think through, and AI systems cite content that provides the most comprehensive, verifiable answer.

    2. Integration Compatibility Content

    “How does [category] integrate with [Salesforce/HubSpot/Slack]?” is one of the most-asked B2B software evaluation queries in AI assistants. Content that answers this with specific integration depth — bidirectional sync vs one-way, native vs API vs Zapier, what data fields sync, what triggers are available — earns AI citation for those specific integration queries.

    3. Comparison Framework Content

    “How to compare [software category] vendors” content with an explicit evaluation framework — a table of criteria, a scoring methodology, questions to ask during demos — is highly citable by AI because it provides the structured answer buyers need before they start shortlisting. AI systems surface this content when buyers ask “how do I evaluate [software type]?”

    4. ROI and Implementation Content

    “How long does [software type] take to implement?” and “What ROI should I expect from [software category]?” are decision-proximate questions — buyers asking them are close to making a choice. Content that provides specific, honest answers with cited research data earns AI citation at the moment buyers are finalizing their shortlist.

    The GEO optimization layer in WordPress content optimization for B2B SaaS companies through SiteBoost applies integration entity injection, speakable blocks targeting evaluation criteria questions, and FAQPage schema to your existing SaaS blog content — building AI citation infrastructure across your published library.

    Related on Tygart Media: SaaS entity SEO · AI citation monitoring · citing sources.

    Frequently Asked Questions

    Desk with laptop, checklist notebook, and billing card ready before creating an Anthropic API key
    Frequently asked questions.
    Which AI systems matter most for B2B SaaS visibility?

    Google AI Overviews reaches the most total buyers because it appears directly in Google search results for software research queries. Perplexity is increasingly used for structured B2B research because it cites sources inline — giving cited SaaS companies visible brand exposure during the evaluation process. ChatGPT’s growing search integration (with ads introduced in late 2025) is growing rapidly among enterprise buyers who prefer conversational research. All three evaluate similar signals: named entity references, direct-answer structure, and FAQPage schema. Optimizing for one effectively optimizes for all.

    Do G2 and Capterra reviews affect AI citation for SaaS?

    Yes, indirectly. G2 and Capterra are high-authority domains that AI systems frequently cite for software comparisons. A SaaS company with strong G2 ratings and detailed review data benefits from AI citations to those third-party pages even when their own website isn’t directly cited. The combined strategy — owned content optimized for AI citation plus strong third-party review presence on G2 and Capterra — creates a citation surface area that makes it difficult for AI systems to discuss the software category without encountering your brand.

    How quickly can SaaS content start earning AI citations after optimization?

    For content already ranking in positions 1–20, AI citation eligibility is immediate after optimization is indexed — typically 2–4 weeks for Google’s crawlers to re-evaluate the updated content. The optimization signals AI systems look for — named entity references, FAQPage schema, direct-answer speakable blocks — are evaluated on each crawl. Content that was ranking but not being cited by AI often begins appearing in AI responses within one crawl cycle after the entity and schema optimization is applied.

    Sources: Gartner 2025 B2B Buying Report (cited via NextUp Solutions, “Best SEO Tools for B2B SaaS Companies in 2026”); LLMrefs, “Answer Engine Optimization: The Complete Guide for 2026”; Whitehat SEO, “SEO Best Practices 2025–2026”; Growth.cx, “What Does a B2B SaaS SEO Agency Actually Do in 2026?”
  • How Claude Managed Agents Handles Idle Time (And Why It Matters for Your Bill)

    How Claude Managed Agents Handles Idle Time (And Why It Matters for Your Bill)

    Tygart Media Strategy
    Volume Ⅰ · Issue 04Quarterly Position
    By Will Tygart Long-form Position Practitioner-grade

    The most counterintuitive thing about Claude Managed Agents pricing is what you don’t pay for. Most people, when they hear “$0.08 per session-hour,” mentally model a virtual machine running continuously. That’s the wrong mental model. Here’s the right one, and why it matters for your bill.

    The Core Distinction: Active vs. Idle

    Three stacked layers: chat UI, tools, agent runtime
    The core distinction — active vs idle.

    Managed Agents session runtime only accrues while your session’s status is running. The session can exist — open, initialized, capable of continuing — without accumulating runtime charges when it’s not actively executing.

    The specific states that do not count toward your $0.08/hr charge:

    • Time spent waiting for your next message
    • Time waiting for a tool confirmation
    • Time waiting on an external API response your tool is calling
    • Rescheduling delays
    • Terminated session time

    This is a meaningful architectural decision by Anthropic. They’re billing on what actually taxes their compute — active execution — not on session existence or wall-clock time.

    Why This Is Different From How You Might Expect Billing to Work

    Compare three billing models:

    Virtual machine billing (what this is not): You pay for every hour the instance exists, whether it’s idle or saturated. A VM running 24/7 with 10% actual utilization still costs 24 hours/day.

    Lambda/function billing (closer analogy): AWS Lambda bills on execution duration and invocation count — you pay when code actually runs, not when a function is “available.” Idle Lambda functions cost nothing.

    Managed Agents billing (what this actually is): Closer to Lambda than VM. You pay $0.08 per hour of active execution. A session that runs for 2 hours of wall-clock time but has 90 minutes of waiting costs $0.08 × 1.5 hours = $0.12, not $0.08 × 2 hours = $0.16.

    A Real Scenario: The Human-in-the-Loop Agent

    Diagram comparing a long context window bar with a shorter output limit bar
    A real scenario — the human-in-the-loop agent.

    Consider an agent that processes your inbox for action items and waits for your approval before sending replies. Wall-clock time: 4 hours open during your workday. Actual active execution: 20 minutes of processing across that 4-hour window, with the rest spent waiting for your review decisions.

    • VM billing equivalent: 4 hours × rate = significant charge
    • Managed Agents billing: 20 minutes × $0.08/hr = $0.027

    The difference is real. For interaction-heavy agents where the agent frequently waits for human decisions, the idle-time exclusion significantly reduces costs versus a naive per-hour model.

    A Real Scenario: The Autonomous Batch Agent

    Now consider an agent running a fully autonomous content pipeline — no human checkpoints, just continuous execution through a queue. Wall-clock time and active execution time are nearly identical because the agent never waits.

    • A 2-hour autonomous batch: 2 hours × $0.08 = $0.16

    Here, the idle-time model provides no benefit — the agent has no idle time. The billing is effectively equivalent to per-hour pricing because execution is continuous.

    Code Execution Containers Are Included

    One more billing nuance worth knowing: when your agent runs code, the execution happens in sandboxed Linux containers. These containers are not separately billed on top of session runtime. The $0.08/hr covers both the session runtime and the container execution. This is explicitly documented by Anthropic and represents meaningful savings if your agent is doing significant code execution work — you’re not paying twice.

    What This Means for Workload Design

    Desk with laptop, checklist notebook, and billing card ready before creating an Anthropic API key
    What this means for workload design.

    If you’re designing agent workflows and have the choice between architectures, the billing model creates a useful signal:

    • Agents that wait on humans: Metered billing is favorable — you only pay for the actual reasoning and execution time, not the human decision time
    • Fully autonomous agents: Billing approaches equivalent to per-hour rates — optimize these on token efficiency, not idle reduction
    • Scheduled batch agents: Natural fit — run when needed, terminate when done, no idle accumulation

    The 24/7 Agent Math

    For anyone doing the 24/7 always-on calculation: the maximum theoretical runtime exposure is 24 hrs × $0.08 × 30 days = $57.60/month in session fees. But a 24/7 agent with zero idle time is rare in practice. Agents that sleep between triggers, wait on external data, or hold for human decisions have meaningful idle windows that reduce the actual charge below the theoretical ceiling.

    Full monthly cost analysis: The Real Monthly Cost of Running Claude Managed Agents 24/7. Pricing reference: Complete Pricing Guide. All questions: FAQ Hub.

    Related on Tygart Media: rate limits · managed agents review · Claude pricing.

  • Claude Managed Agents Rate Limits — What 60 Requests Per Minute Means in Practice

    Claude Managed Agents Rate Limits — What 60 Requests Per Minute Means in Practice

    The Lab · Tygart Media
    Experiment Nº 561 · Methodology Notes
    METHODS · OBSERVATIONS · RESULTS

    You’re planning to run Claude Managed Agents at scale. You’ve modeled the token costs, the session-hour charge, the workload cadence. Then you hit the actual constraint: rate limits. Here’s what 60 requests per minute actually means in practice, and whether it’s going to be your ceiling.

    The Two Limits You Need to Know

    Three stacked layers: chat UI, tools, agent runtime
    The two limits you need to know.

    Managed Agents has two endpoint-specific rate limits, separate from your standard Claude API limits:

    • Create endpoints: 60 requests per minute
    • Read endpoints: 600 requests per minute

    Your organization-level API limits apply on top of these. If your org is on a tier with a lower requests-per-minute ceiling, that’s the actual binding constraint.

    What “60 Create Requests Per Minute” Actually Means

    A create request, in Managed Agents context, is typically a session creation call — starting a new agent session. 60/minute means you can start 60 sessions per minute maximum. For almost all real workloads, this is not the binding constraint. Here’s why:

    Think about what generates create requests. If you’re running a batch pipeline that starts one new agent session per content item, processing 60 items per minute would saturate the limit. But a 60-item-per-minute content pipeline is running 3,600 items per hour — a genuinely high-volume operation. Most production agent workloads don’t look like this. They look like one session that runs for minutes or hours, processes multiple tasks within that session, and terminates when done.

    The create limit matters most for architectures where you’re spinning up a new session per task rather than running tasks within a persistent session. If that’s your pattern, 60/minute is a hard ceiling you’ll need to design around.

    What “600 Read Requests Per Minute” Actually Means

    Read requests include polling session status, reading agent output, checking checkpoints, and retrieving session state. 600/minute is a relatively generous limit — that’s 10 reads per second. For a monitoring dashboard polling 10 active sessions every second, you’d hit this. For most production monitoring patterns (checking status every 5-30 seconds per session), you’re well under the ceiling.

    The read limit becomes relevant in high-concurrency architectures where many sessions are running in parallel and all being polled aggressively. If you’re running 50 concurrent agents and checking each one every 2 seconds, that’s 25 reads/second — still within the 10 reads/second limit per second, but compressing toward it.

    The Limit That’s More Likely to Actually Stop You

    For most agent workloads, token throughput limits hit before request rate limits do. The reasoning: a long-running agent session processing significant context generates a lot of tokens. If you’re running many such sessions in parallel, you’ll hit your organization’s token-per-minute limit before you hit 60 sessions created per minute.

    Token limits depend on your API tier. Higher tiers have higher token throughput limits. Rate limit increases and custom limits for high-volume enterprise customers are negotiated with Anthropic’s sales team.

    Designing Around the 60 Create Limit

    Diagram comparing a long context window bar with a shorter output limit bar
    Designing around the 60 create limit.

    If your architecture genuinely needs more than 60 new sessions per minute, the primary design pattern is batching more work within each session rather than creating more sessions. A single Managed Agents session can handle sequential tasks — you don’t need a new session per task if your tasks can be queued and processed within one session’s lifecycle.

    The tradeoff: longer-running sessions accumulate more runtime charge ($0.08/hr active). For most workloads, the efficiency gains from batching outweigh the marginal runtime cost.

    The Agent Teams Implication

    Agent Teams — Managed Agents’ multi-agent coordination feature — coordinate multiple Claude instances with independent contexts. Each instance in an Agent Team is a separate entity from a context standpoint. How Agent Team member sessions count against the create rate limit is worth verifying against current documentation if you’re architecting a high-concurrency Agent Teams deployment.

    For Enterprise Workloads

    Desk with laptop, checklist notebook, and billing card ready before creating an Anthropic API key
    For enterprise workloads.

    If you’re evaluating Managed Agents for enterprise-scale deployment and the published limits don’t fit your volume requirements, contact Anthropic’s enterprise sales team. Rate limit increases for high-volume applications are a documented option — they’re negotiated, not self-serve.

    Contact: [email protected] or through the Claude Console.

    Related on Tygart Media: idle-time billing · managed agents review · Claude pricing.

    Frequently Asked Questions

    Does the 60 requests/minute limit apply to all API calls or just session creation?

    The 60/minute limit applies to create endpoints — session creation being the primary one. Read operations have a separate 600/minute limit. Standard Messages API calls are governed by your organization’s standard tier limits, not these Managed Agents-specific limits.

    Do subagents count against the create rate limit separately from the parent session?

    Subagents operate within the parent session’s context and report results upward — they’re architecturally different from new sessions. Verify current documentation for precise billing treatment of subagent creation calls vs. Agent Team session creation.

    What happens when I hit the rate limit?

    Standard API rate limit behavior applies — requests over the limit receive a 429 response. Implement exponential backoff in your session creation logic for any high-volume pattern that approaches the 60/minute ceiling.

    How does this compare to OpenAI’s Agents API limits?

    Rate limit structures differ by product and tier. Direct comparison requires checking both providers’ current documentation for your specific tier. The full comparison: Claude Managed Agents vs. OpenAI Agents API.

    Full pricing context including rate limits: Claude Managed Agents Complete Pricing Reference. All questions: Claude Managed Agents FAQ.

  • What Notion’s Claude Managed Agents Integration Actually Does

    What Notion’s Claude Managed Agents Integration Actually Does

    Tygart Media Strategy
    Volume Ⅰ · Issue 04Quarterly Position
    By Will Tygart Long-form Position Practitioner-grade

    When Anthropic launched Claude Managed Agents, Notion was one of four launch partners. That detail got buried in the announcement. Here’s what it actually means for people who use Notion for knowledge work, and why “Notion voice input desktop” keeps showing up as a query against a Managed Agents page.

    Short answer: Managed Agents in Notion is an ambient intelligence layer. It’s not a chatbot in a sidebar. It’s an agent that watches your workspace and acts — without you directing every step.

    What the Notion Integration Actually Does

    Four cards for content, ops, build, and knowledge work with Claude
    What the Notion integration actually does.

    Notion’s Claude Managed Agents integration runs as a persistent background agent with access to your workspace. The practical capabilities, as documented at launch:

    • Autonomous page updates: The agent can read, summarize, and rewrite Notion pages without manual triggers. You set a task; it works through it.
    • Cross-database synthesis: Pull data from multiple Notion databases, synthesize it, and write outputs to a target page or database entry
    • Meeting note processing: Ingest raw meeting notes and produce structured summaries, action items, and task entries in your project database
    • Workflow automation: Trigger actions based on database property changes — a status update in one database can kick off agent work in another

    The key difference from Notion AI (which Notion has had for some time): Notion AI is request-response. You ask it something; it answers. Managed Agents in Notion can be configured to run autonomously on a schedule or on trigger, keep working through multi-step tasks, and report back when done. It’s closer to a background employee than an on-demand assistant.

    Why This Showed Up in Search as “Notion Voice Input Desktop”

    This is worth explaining, because that query cluster is real and mildly interesting. The Managed Agents announcement included voice input functionality — the ability to interact with agents via voice in some contexts. People searching “notion voice input desktop” and “notion ai voice input desktop” were looking for whether this voice capability existed in the desktop client for Notion specifically.

    The honest answer as of April 2026: voice input capabilities are in preview or context-dependent. Verify current availability in Notion’s desktop client against their current documentation — this is an area that may have evolved since launch.

    The “Decoupled Brain and Hands” Model Applied to Notion

    Anthropic describes their Managed Agents architecture as decoupling the brain (Claude, the reasoning layer) from the hands (the sandboxed containers where actions execute). In Notion’s context, this maps cleanly:

    • The brain reads your Notion workspace, understands context, makes decisions about what to do
    • The hands execute — writing to pages, updating database entries, moving content between sections

    The brain and hands operate independently. The agent can reason about what your project needs without being tightly coupled to the specific API calls that will implement it. This matters because it means the agent can handle ambiguity — “clean up the Q2 notes and create action items” is a goal, not a procedure, and the agent figures out the procedure.

    What You Actually Configure

    Three stacked layers: chat UI, tools, agent runtime
    What you actually configure.

    To run Claude Managed Agents in Notion, you’re defining:

    • Task definition: What the agent is supposed to accomplish (in natural language or structured format)
    • Tool access: Which Notion databases, pages, and capabilities the agent can read and write
    • Guardrails: What the agent cannot do — pages it can’t modify, actions it must confirm before taking
    • Trigger: When the agent runs — on schedule, on database trigger, or on demand

    You don’t write the orchestration logic. Anthropic’s infrastructure handles session management, state persistence, and error recovery. If the agent hits an error mid-task, it checkpoints and recovers — you don’t lose progress.

    The Practical Cost of Running Notion Agents

    Using Managed Agents in Notion triggers the same billing as any Managed Agents session: standard token rates plus $0.08/session-hour of active runtime. For typical knowledge work tasks:

    • A daily meeting summary agent running 15 minutes of active execution: ~$0.02/day in runtime (~$0.60/month), plus token costs for the volume of notes processed
    • A weekly database synthesis task running 45 minutes: ~$0.06/run

    For most knowledge workers, the session runtime cost is negligible — the token costs (driven by how much content the agent reads and writes) are the actual variable to model. See the complete pricing reference for worked examples.

    Asana and the Broader Pattern

    Asana was also a Managed Agents launch partner, and the integration pattern is similar: an agent that can read project data, update task statuses, move cards, and generate project summaries without constant human direction. The launch partner list (Notion, Asana, Rakuten, Sentry) suggests Anthropic targeted three categories: knowledge management (Notion), project management (Asana), enterprise operations (Rakuten), and developer tools (Sentry).

    That’s a deliberate wedge. If agents can handle the administrative layer of these four categories, the surface area for autonomous business work expands significantly.

    What This Means for How You Work

    Desk with laptop, checklist notebook, and billing card ready before creating an Anthropic API key
    What this means for how you work.

    The honest use case for most people reading this: you have a Notion workspace with databases that need regular synthesis, and you’re currently doing that manually. Managed Agents is the path to automating that synthesis without building and maintaining a custom integration.

    The constraint worth naming: you’re running your workspace data through Anthropic’s infrastructure. That’s the trade-off. For most knowledge work, the data sensitivity concern is low. For anything involving client data, legal documents, or proprietary strategy — read Anthropic’s data handling terms before configuring access.

    For the full Managed Agents setup and pricing context: Claude Managed Agents: Every Question Answered. For the enterprise deployment pattern: How Rakuten Deployed 5 Enterprise Agents in a Week.

    Related on Tygart Media: managed agents review · Notion Command Center · managed agents memory use cases.

  • Claude Managed Agents — Every Question Answered (Complete FAQ 2026)

    Claude Managed Agents — Every Question Answered (Complete FAQ 2026)

    Tygart Media Strategy
    Volume Ⅰ · Issue 04Quarterly Position
    By Will Tygart Long-form Position Practitioner-grade

    Everything people actually ask about Claude Managed Agents, answered straight. No preamble about “the exciting world of AI agents.” If you’re here, you already know why this matters — you just need answers.

    This page covers pricing, setup, capabilities, limits, comparisons, and the specific questions that don’t have obvious homes in Anthropic’s documentation. It updates as the beta evolves.

    Context

    Claude Managed Agents launched April 8, 2026 as a public beta. All answers reflect current documentation as of April 2026. Beta details change — verify specifics at platform.claude.com/docs.

    Pricing Questions

    Workshop fuel gauge and metal tokens pouring into an API hopper, metaphor for pay-per-token pricing
    Pricing questions — stale-proof framing.

    What does Claude Managed Agents cost?

    Two charges: standard Claude API token rates (same as calling the Messages API directly) plus $0.08 per session-hour of active runtime. That’s the complete formula. See the complete pricing reference for worked examples by workload type.

    What exactly is a “session-hour” and when does it start billing?

    A session-hour is one hour of active session runtime — time when your session’s status is running. Billing is metered to the millisecond. It does not accrue during idle time, time waiting for your input, time waiting for tool confirmations, or after session termination.

    What’s included in the $0.08/session-hour charge?

    The session runtime charge covers Anthropic’s managed infrastructure: sandboxed code execution containers, state management, checkpointing, tool orchestration, error recovery, and scaling. You are not separately billed for container hours on top of session runtime.

    Does the $0.08/hr apply even if my agent is just waiting?

    No. Time spent waiting for your message, waiting for tool confirmations, or sitting idle does not accumulate runtime charges. Only active execution time counts.

    What does web search cost inside a Managed Agents session?

    $10 per 1,000 searches ($0.01 per search), billed separately from session runtime and token costs. This is the same rate as web search through the standard API.

    Are there volume discounts?

    Yes, negotiated case-by-case for high-volume users. Contact [email protected] or through the Claude Console.

    How does Managed Agents pricing compare to running my own agent infrastructure?

    The $0.08/session-hour is almost always cheaper than equivalent provisioned compute — but you trade infrastructure control and data locality for that simplicity. For a full comparison: Build vs. Buy: The Real Infrastructure Cost.

    What’s the real monthly cost if I run an agent 24/7?

    Maximum theoretical session runtime: 24 hrs × $0.08 × 30 days = $57.60/month. In practice, no production agent has zero idle time. Token costs become the dominant cost driver long before you hit the runtime ceiling. Detailed breakdown: The Real Monthly Cost of Running Claude Managed Agents 24/7.

    Setup and Access Questions

    Four-step loop: observe, remember, act, update for managed agents
    Setup and access questions.

    How do I get access to Claude Managed Agents?

    Available to all Anthropic API accounts in public beta — no separate signup. You need the managed-agents-2026-04-01 beta header in your API requests. The Claude SDK adds this header automatically.

    Does it work with my existing API key?

    Yes. Same API key you’re already using for the Messages API. Same authentication. The beta header is the only new requirement.

    What three ways can I access Managed Agents?

    Via the Claude SDK (recommended — handles the beta header automatically), via direct API calls with the beta header, or via the Claude Console’s new Managed Agents section for no-code agent configuration and session tracing.

    Can I use Managed Agents through AWS Bedrock or Google Vertex AI?

    Managed Agents runs on Anthropic-managed infrastructure. This is distinct from Bedrock and Vertex AI deployments. Check Anthropic’s current documentation for multi-cloud availability status — this is an area of active development.

    Capability Questions

    What can Claude Managed Agents actually do?

    Run long autonomous sessions with persistent state, execute code in sandboxed Linux containers, use tools including web search and MCP servers, coordinate multiple Claude instances via Agent Teams, and maintain checkpoints for crash recovery. The session can last minutes or hours without you staying in the loop.

    What’s the difference between Agent Teams and subagents?

    Agent Teams coordinate multiple Claude instances with independent contexts, direct agent-to-agent communication, and a shared task list — suited for complex parallel tasks. Subagents operate within the same session as the main agent and only report results upward — more economical for sequential targeted tasks but less capable of true parallelism.

    Does it support MCP servers?

    Yes. MCP servers can be integrated as tool sources in Managed Agents sessions, extending what the agent can access and act on.

    How long can a session run?

    Anthropic’s documentation currently references session durations of minutes to hours. Claude Code’s longest autonomous sessions have reached 45 minutes. Managed Agents is architected for longer-running work. Check current documentation for specific session duration limits as the beta matures.

    What happened to Claude Code — is it the same as Managed Agents?

    No. Claude Code is a separate local coding workflow product. Anthropic’s docs explicitly note partners should not conflate the two. Managed Agents is a hosted API runtime service. Claude Code is a developer tool. Different products, different use cases, different billing.

    Rate Limit Questions

    Infographic with three panels: protect the service, fair share, and cost control explaining rate limits
    Rate limit questions.

    What are the rate limits for Managed Agents?

    60 requests per minute for create endpoints; 600 requests per minute for read endpoints. Organization-level API limits still apply on top of these. For higher limits, contact Anthropic enterprise sales. Detailed breakdown: Claude Managed Agents Rate Limits Explained.

    Do standard Claude API rate limits still apply inside a session?

    Organization-level limits apply. The session runtime and create/read endpoint limits are Managed Agents-specific. If you’re running many parallel Agent Teams, model token throughput limits will become relevant.

    Comparison Questions

    How does Managed Agents compare to OpenAI’s Agents API?

    Both offer hosted agent infrastructure. Key differences: Managed Agents is Claude-native (no multi-model flexibility), sessions bill on runtime + tokens vs. OpenAI’s different pricing model, and lock-in dynamics differ. Full comparison: Claude Managed Agents vs. OpenAI Agents API.

    Should I use Managed Agents or the Claude Agent SDK?

    Use Managed Agents when you want Anthropic to host the runtime — less infrastructure work, faster to production. Use the SDK when you need tighter loop control, on-premise execution, or multi-cloud flexibility. Anthropic’s own migration docs draw this line clearly: SDK runs in your environment; Managed Agents runs in theirs.

    What companies are already using Managed Agents in production?

    Notion, Asana, Rakuten, Sentry, and Vibecode were launch partners. Rakuten deployed five enterprise agents within a week. Allianz is using Claude for insurance agent workflows. Anthropic’s run-rate from the agent developer segment exceeds $2.5 billion. How Rakuten did it in a week →

    Data and Security Questions

    Where does my data go when running in Managed Agents?

    Execution runs on Anthropic’s infrastructure. This is the explicit trade-off: you get managed infrastructure; they manage the compute. For companies with strict data sovereignty requirements, this is the key constraint to evaluate. On-premise or native multi-cloud deployment is not currently available.

    What are the sandboxing guarantees?

    Anthropic uses disposable Linux containers — “decoupled hands” in their terminology. Each container is a fresh sandboxed environment for code execution. State persistence is managed separately from the execution environment.

    Strategic Questions

    Is this a bet worth making?

    That depends on your switching cost tolerance. Lock-in is real: once your agents run on Anthropic’s infrastructure with their tools, session format, and sandboxing, switching providers isn’t trivial. The counter-argument: the infrastructure you’d otherwise build to match this is months of engineering. One developer’s reaction at launch was blunt: “there goes a whole YC batch.” That captures both the opportunity and the risk. Our take on why we’re staying our course →

    What does this mean for AI citation and visibility?

    Agents running on Anthropic’s infrastructure make decisions about what content to surface, cite, and synthesize. As agent workloads grow, being present in the knowledge sources agents draw from becomes a search strategy question in itself. What AI citation monitoring looks like →