[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"summary-5222620e53f77ee7-claude-code-leak-12-primitives-for-production-agen-summary":3,"summaries-facets-categories":173,"summary-related-5222620e53f77ee7-claude-code-leak-12-primitives-for-production-agen-summary":3742},{"id":4,"title":5,"ai":6,"body":13,"categories":148,"created_at":150,"date_modified":150,"description":151,"extension":152,"faq":150,"featured":153,"kicker_label":150,"meta":154,"navigation":155,"path":156,"published_at":157,"question":150,"scraped_at":158,"seo":159,"sitemap":160,"source_id":161,"source_name":162,"source_type":163,"source_url":164,"stem":165,"tags":166,"thumbnail_url":150,"tldr":170,"tweet":150,"unknown_tags":171,"__hash__":172},"summaries\u002Fsummaries\u002F5222620e53f77ee7-claude-code-leak-12-primitives-for-production-agen-summary.md","Claude Code Leak: 12 Primitives for Production Agents",{"provider":7,"model":8,"input_tokens":9,"output_tokens":10,"processing_time_ms":11,"cost_usd":12},"openrouter","x-ai\u002Fgrok-4.1-fast",7851,2045,17726,0.00257005,{"type":14,"value":15,"toc":138},"minimark",[16,21,25,28,32,35,38,41,49,53,56,59,62,65,69,72,75,78,81,85,88,91,94,97,100,104],[17,18,20],"h2",{"id":19},"velocity-risks-exposed-by-leaks-demand-boring-primitives","Velocity Risks Exposed by Leaks Demand Boring Primitives",[22,23,24],"p",{},"Anthropic's back-to-back leaks—a draft on Claude Mythos and the full Claude Code repo—highlight a core tension in AI development: shipping velocity outpacing operational safeguards. The Claude Code leak, stemming from a build config error (possibly AI-assisted), exposed a $2.5B run-rate product's architecture. While hype focuses on upcoming features, the real value lies in 12 primitives sustaining production agents. These aren't flashy; they're \"boring\" basics like build validation and publish steps that prevent leaks. Anthropic writes 90% of its code with AI, shipping 5 releases per engineer daily, amplifying config drift risks. Lesson: High-velocity teams must harden primitives without slowing cadence.",[22,26,27],{},"\"This is the second significant leak from Anthropic in the last few days and it's worth asking ourselves why... is your development velocity outrunning your operational discipline?\" – Nate B. Jones, framing leaks as a symptom of unchecked speed in AI-assisted dev.",[17,29,31],{"id":30},"tool-and-permission-foundations-prevent-demo-only-agents","Tool and Permission Foundations Prevent Demo-Only Agents",[22,33,34],{},"Claude Code starts with structural metadata over inference. A dual-registry system—207 user-facing commands and 184 model-facing tools—defines capabilities as dictionaries with names, sources, and descriptions. Implementations load on-demand, enabling runtime filtering and introspection without side effects. No registry means orchestration breaks on every new tool.",[22,36,37],{},"Permissions tier risks: built-in (high trust, always-on), plugins (medium, disableable), skills\u002Fuser-defined (low trust). The bash tool alone has 18 security modules: pre-approved patterns, destructive warnings, sandboxing. Classify actions (read\u002Fmutate\u002Fdestructive), log decisions, add domain checks. Without this, agents can't safely act in production—it's demo territory.",[22,39,40],{},"\"If your agent can take actions in the world... and you don't have a permissions layer, you have just a demo right you don't have a product.\" – Jones, distinguishing safe systems from notebooks.",[22,42,43,44,48],{},"For your stack: Build ",[45,46,47],"code",{},"list_tools()"," returning metadata first. Pre-classify risks; audit trails for replays.",[17,50,52],{"id":51},"state-persistence-and-budgeting-ensure-crash-resilient-workflows","State Persistence and Budgeting Ensure Crash-Resilient Workflows",[22,54,55],{},"Agents crash constantly—tabs close, connections drop. Claude persists full sessions as JSON: ID, messages, tokens, permissions, config. Resume reconstructs the query engine entirely. Separate workflow state tracks steps (planned, awaiting approval, executing), preventing duplicates on retry.",[22,57,58],{},"Token budgets enforce hard limits: max turns, projected usage halts before API calls with structured stops. Compaction thresholds trim history, prioritizing recent entries. This avoids runaway costs, building trust like Amazon's returns policy.",[22,60,61],{},"\"Anthropic being a really responsible citizen here and saying 'We don't want you to have runaway budget spending that you do not clearly intend it's the same way that Amazon enables returns which may not be good for Amazon in the short term but increase customer trust.'\" – Jones, on why self-imposed limits pay off long-term.",[22,63,64],{},"Your implementation: Persist post-events, not just shutdown. Model workflows explicitly; checkpoint states like 90s savegames. Track input\u002Foutput tokens with projections.",[17,66,68],{"id":67},"streaming-logging-and-verification-build-observability","Streaming, Logging, and Verification Build Observability",[22,70,71],{},"Structured streaming turns every event into user insight: message start, tool match, token counts, crash reasons (black-box style). Users intervene mid-thought via streams. System logs capture non-conversational actions: context loads, routing, permissions—categorized for enterprise audits.",[22,73,74],{},"Verification doubles up: agent self-checks post-run, plus harness tests (e.g., destructive tools need approval? Graceful token halts?). Evolving harnesses demand guardrail regressions.",[22,76,77],{},"\"The conversational transcript needs to tell the user what the agent did not just what it said.\" – Jones, on why event logs are enterprise-essential.",[22,79,80],{},"Apply: Emit typed events (tool deliberations, crashes). Log actions separately; test harness changes against named guardrails.",[17,82,84],{"id":83},"scaling-patterns-dynamic-pools-and-agent-typing","Scaling Patterns: Dynamic Pools and Agent Typing",[22,86,87],{},"Operational maturity shines in tool pool assemblies: From 184 tools, assemble session-specific subsets via flags\u002Fdenylists for efficiency. Transcript compaction auto-trims after turns, preserving instructions.",[22,89,90],{},"Permissions as queryable objects serve contexts: interactive (human-in-loop), coordinator (multi-agent), swarm (autonomous). Six agent types—explore, plan, verify, guide, general, status—each with prompts\u002Ftools\u002Fconstraints.",[22,92,93],{},"\"Claude Code defines six built-in agent types... each of these agent types comes with its own prompt its own allowed tools its own behavioral constraints.\" – Jones, revealing typed specialization unseen before.",[22,95,96],{},"For general agents: Dynamic subsets over hardcodes. Multi-context handlers. Type agents for reuse.",[22,98,99],{},"Author releases two skills: Generic agent assessor (gap-analysis vs. primitives), Claude Code-tuned for cross-pollination.",[17,101,103],{"id":102},"key-takeaways","Key Takeaways",[105,106,107,111,114,117,120,123,126,129,132,135],"ul",{},[108,109,110],"li",{},"Define tools in metadata registries (name\u002Fdesc\u002Fsource) before code; enable filtering\u002Fintrospection.",[108,112,113],{},"Tier permissions (high\u002Fmedium\u002Flow trust) with 18-module security for risky tools like shell exec.",[108,115,116],{},"Persist full sessions (msgs\u002Ftokens\u002Fpermissions\u002Fconfig) and separate workflow states for crash recovery.",[108,118,119],{},"Enforce token budgets with projections\u002Fhalts; auto-compact transcripts post-threshold.",[108,121,122],{},"Stream typed events (tools\u002Ftokens\u002Fcrashes); log system actions for audits.",[108,124,125],{},"Verify agent runs and harness changes via guardrail tests.",[108,127,128],{},"Assemble dynamic tool pools per session; type agents (explore\u002Fplan\u002Fetc.) for specialization.",[108,130,131],{},"Audit permissions as state objects across contexts (interactive\u002Fmulti-agent\u002Fautonomous).",[108,133,134],{},"Harden ops primitives (build validation) to match AI dev velocity.",[108,136,137],{},"Use leaks like this for primitives, not hype—sustains $2.5B-scale agents.",{"title":139,"searchDepth":140,"depth":140,"links":141},"",2,[142,143,144,145,146,147],{"id":19,"depth":140,"text":20},{"id":30,"depth":140,"text":31},{"id":51,"depth":140,"text":52},{"id":67,"depth":140,"text":68},{"id":83,"depth":140,"text":84},{"id":102,"depth":140,"text":103},[149],"AI & LLMs",null,"My site: https:\u002F\u002Fnatebjones.com\nFull Story w\u002F Prompts and Skill: https:\u002F\u002Fnatesnewsletter.substack.com\u002Fp\u002Fyour-agent-has-12-blind-spots-you?r=1z4sm5&utm_campaign=post&utm_medium=web&showWelcomeOnShare=true\n___________________\nWhat's really happening inside the $2.5 billion run rate product when Anthropic accidentally leaks the entire Claude Code architecture?\n\nThe common story is that the leak reveals upcoming features — but the reality is that the secret sauce is 12 boring primitives that make agents actually work at scale, and most teams skip half of them.\n\nIn this video, I share the inside scoop on what Claude Code teaches us about building production agents:\n\n • Why tool registries with metadata-first design are day one non-negotiables\n • How an 18-module security architecture protects a single bash tool\n • What session persistence and workflow state actually need to capture\n • Where most agentic projects die from premature complexity\n\nBuilders who keep chasing the glamorous AI parts will keep shipping demos that crash — the leak proves that successful agents are 80% plumbing and 20% model.\n\nChapters\n00:00 Anthropic accidentally leaked Claude Code\n02:30 Two leaks in one week — velocity vs discipline\n05:00 Twelve primitives in three tiers\n07:00 Primitive 1: Tool registry with metadata-first design\n09:00 Primitive 2: Permission system and trust tiers\n11:30 Primitive 3: Session persistence that survives crashes\n13:30 Primitive 4: Workflow state vs conversation state\n15:30 Primitive 5: Token budget tracking with pre-turn checks\n17:00 Primitives 6-8: Streaming events, logging, verification\n20:00 Advanced: Tool pool assembly and compaction\n22:30 Claude Code's six built-in agent types\n24:30 The agentic harness skill I'm releasing\n26:00 Building agents is 80% plumbing\n\nSubscribe for daily AI strategy and news.\nFor deeper playbooks and analysis: https:\u002F\u002Fnatesnewsletter.substack.com\u002F\n\nListen to this video as a podcast.\n- Spotify: https:\u002F\u002Fopen.spotify.com\u002Fshow\u002F0gkFdjd1wptEKJKLu9LbZ4\n- Apple Podcasts: https:\u002F\u002Fpodcasts.apple.com\u002Fus\u002Fpodcast\u002Fai-news-strategy-daily-with-nate-b-jones\u002Fid1877109372","md",false,{},true,"\u002Fsummaries\u002F5222620e53f77ee7-claude-code-leak-12-primitives-for-production-agen-summary","2026-04-03 14:00:32","2026-04-03 21:11:38",{"title":5,"description":151},{"loc":156},"5222620e53f77ee7","AI News & Strategy Daily | Nate B Jones","video","https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=FtCdYhspm7w","summaries\u002F5222620e53f77ee7-claude-code-leak-12-primitives-for-production-agen-summary",[167,168,169],"agents","llm","ai-automation","Anthropic's leaked Claude Code repo reveals 12 infrastructural primitives—tool registries, permissions, state persistence, and more—that enable reliable, $2.5B-scale agentic systems. Build these to match their operational maturity.",[169],"Pbg15JsSU-bEbxuwVJPxl_esDcvbOAMvcVrFSmC8vvk",[174,177,180,182,185,188,190,192,194,196,198,200,203,205,207,209,211,213,215,217,219,221,224,227,229,231,234,236,238,241,243,245,247,249,251,253,255,257,259,261,263,265,267,269,271,273,275,277,279,281,283,285,287,289,291,293,295,297,299,301,303,305,307,309,311,313,315,317,319,321,323,325,327,329,331,333,335,337,339,341,343,345,347,349,351,353,355,357,359,361,363,365,367,369,371,373,375,377,379,381,383,385,387,389,391,393,395,397,399,401,403,405,407,409,411,413,415,417,419,421,423,425,427,429,431,433,435,437,439,441,443,445,447,449,451,453,455,457,459,461,463,465,467,469,471,473,475,477,479,481,483,485,487,489,491,493,496,498,500,502,504,506,508,510,512,514,516,518,520,522,524,526,528,530,532,534,536,538,540,542,544,546,548,550,552,554,556,558,560,562,564,566,568,570,572,574,576,578,580,582,584,586,588,590,592,594,596,598,600,602,604,606,608,610,612,614,616,618,620,622,624,626,628,630,632,634,636,638,640,642,644,646,648,650,652,654,656,658,660,662,664,666,668,670,672,674,676,678,680,682,684,686,688,690,692,694,696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734,736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798,800,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862,864,866,868,870,872,874,876,878,880,882,884,886,888,890,892,894,896,898,900,902,904,906,908,910,912,914,916,918,920,922,924,926,928,930,932,934,936,938,940,942,944,946,948,950,952,954,956,958,960,962,964,966,968,970,972,974,976,978,980,982,984,986,988,990,992,994,996,998,1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998,3000,3002,3004,3006,3008,3010,3012,3014,3016,3018,3020,3022,3024,3026,3028,3030,3032,3034,3036,3038,3040,3042,3044,3046,3048,3050,3052,3054,3056,3058,3060,3062,3064,3066,3068,3070,3072,3074,3076,3078,3080,3082,3084,3086,3088,3090,3092,3094,3096,3098,3100,3102,3104,3106,3108,3110,3112,3114,3116,3118,3120,3122,3124,3126,3128,3130,3132,3134,3136,3138,3140,3142,3144,3146,3148,3150,3152,3154,3156,3158,3160,3162,3164,3166,3168,3170,3172,3174,3176,3178,3180,3182,3184,3186,3188,3190,3192,3194,3196,3198,3200,3202,3204,3206,3208,3210,3212,3214,3216,3218,3220,3222,3224,3226,3228,3230,3232,3234,3236,3238,3240,3242,3244,3246,3248,3250,3252,3254,3256,3258,3260,3262,3264,3266,3268,3270,3272,3274,3276,3278,3280,3282,3284,3286,3288,3290,3292,3294,3296,3298,3300,3302,3304,3306,3308,3310,3312,3314,3316,3318,3320,3322,3324,3326,3328,3330,3332,3334,3336,3338,3340,3342,3344,3346,3348,3350,3352,3354,3356,3358,3360,3362,3364,3366,3368,3370,3372,3374,3376,3378,3380,3382,3384,3386,3388,3390,3392,3394,3396,3398,3400,3402,3404,3406,3408,3410,3412,3414,3416,3418,3420,3422,3424,3426,3428,3430,3432,3434,3436,3438,3440,3442,3444,3446,3448,3450,3452,3454,3456,3458,3460,3462,3464,3466,3468,3470,3472,3474,3476,3478,3480,3482,3484,3486,3488,3490,3492,3494,3496,3498,3500,3502,3504,3506,3508,3510,3512,3514,3516,3518,3520,3522,3524,3526,3528,3530,3532,3534,3536,3538,3540,3542,3544,3546,3548,3550,3552,3554,3556,3558,3560,3562,3564,3566,3568,3570,3572,3574,3576,3578,3580,3582,3584,3586,3588,3590,3592,3594,3596,3598,3600,3602,3604,3606,3608,3610,3612,3614,3616,3618,3620,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3648,3650,3652,3654,3656,3658,3660,3662,3664,3666,3668,3670,3672,3674,3676,3678,3680,3682,3684,3686,3688,3690,3692,3694,3696,3698,3700,3702,3704,3706,3708,3710,3712,3714,3716,3718,3720,3722,3724,3726,3728,3730,3732,3734,3736,3738,3740],{"categories":175},[176],"Developer Productivity",{"categories":178},[179],"Business & SaaS",{"categories":181},[149],{"categories":183},[184],"AI Automation",{"categories":186},[187],"Product Strategy",{"categories":189},[149],{"categories":191},[176],{"categories":193},[179],{"categories":195},[],{"categories":197},[149],{"categories":199},[],{"categories":201},[202],"AI News & Trends",{"categories":204},[184],{"categories":206},[202],{"categories":208},[184],{"categories":210},[184],{"categories":212},[149],{"categories":214},[149],{"categories":216},[202],{"categories":218},[149],{"categories":220},[],{"categories":222},[223],"Design & Frontend",{"categories":225},[226],"Data Science & Visualization",{"categories":228},[202],{"categories":230},[],{"categories":232},[233],"Software Engineering",{"categories":235},[149],{"categories":237},[184],{"categories":239},[240],"Marketing & Growth",{"categories":242},[149],{"categories":244},[184],{"categories":246},[],{"categories":248},[],{"categories":250},[223],{"categories":252},[184],{"categories":254},[176],{"categories":256},[223],{"categories":258},[149],{"categories":260},[184],{"categories":262},[202],{"categories":264},[],{"categories":266},[],{"categories":268},[184],{"categories":270},[233],{"categories":272},[],{"categories":274},[179],{"categories":276},[],{"categories":278},[],{"categories":280},[184],{"categories":282},[184],{"categories":284},[149],{"categories":286},[],{"categories":288},[233],{"categories":290},[],{"categories":292},[],{"categories":294},[],{"categories":296},[149],{"categories":298},[240],{"categories":300},[223],{"categories":302},[223],{"categories":304},[149],{"categories":306},[184],{"categories":308},[149],{"categories":310},[149],{"categories":312},[184],{"categories":314},[184],{"categories":316},[226],{"categories":318},[202],{"categories":320},[184],{"categories":322},[240],{"categories":324},[184],{"categories":326},[187],{"categories":328},[],{"categories":330},[184],{"categories":332},[],{"categories":334},[184],{"categories":336},[233],{"categories":338},[223],{"categories":340},[149],{"categories":342},[],{"categories":344},[],{"categories":346},[184],{"categories":348},[],{"categories":350},[149],{"categories":352},[],{"categories":354},[176],{"categories":356},[233],{"categories":358},[179],{"categories":360},[202],{"categories":362},[149],{"categories":364},[],{"categories":366},[149],{"categories":368},[],{"categories":370},[233],{"categories":372},[226],{"categories":374},[],{"categories":376},[149],{"categories":378},[223],{"categories":380},[],{"categories":382},[223],{"categories":384},[184],{"categories":386},[],{"categories":388},[184],{"categories":390},[202],{"categories":392},[149],{"categories":394},[],{"categories":396},[184],{"categories":398},[149],{"categories":400},[187],{"categories":402},[],{"categories":404},[149],{"categories":406},[184],{"categories":408},[184],{"categories":410},[],{"categories":412},[226],{"categories":414},[149],{"categories":416},[],{"categories":418},[176],{"categories":420},[179],{"categories":422},[149],{"categories":424},[184],{"categories":426},[233],{"categories":428},[149],{"categories":430},[],{"categories":432},[],{"categories":434},[149],{"categories":436},[],{"categories":438},[223],{"categories":440},[],{"categories":442},[149],{"categories":444},[],{"categories":446},[184],{"categories":448},[149],{"categories":450},[223],{"categories":452},[],{"categories":454},[149],{"categories":456},[149],{"categories":458},[179],{"categories":460},[184],{"categories":462},[149],{"categories":464},[223],{"categories":466},[184],{"categories":468},[],{"categories":470},[],{"categories":472},[202],{"categories":474},[],{"categories":476},[149],{"categories":478},[179,240],{"categories":480},[],{"categories":482},[149],{"categories":484},[],{"categories":486},[],{"categories":488},[149],{"categories":490},[],{"categories":492},[149],{"categories":494},[495],"DevOps & Cloud",{"categories":497},[],{"categories":499},[202],{"categories":501},[223],{"categories":503},[],{"categories":505},[202],{"categories":507},[202],{"categories":509},[149],{"categories":511},[240],{"categories":513},[],{"categories":515},[179],{"categories":517},[],{"categories":519},[149,495],{"categories":521},[149],{"categories":523},[149],{"categories":525},[184],{"categories":527},[149,233],{"categories":529},[226],{"categories":531},[149],{"categories":533},[240],{"categories":535},[184],{"categories":537},[184],{"categories":539},[],{"categories":541},[184],{"categories":543},[149,179],{"categories":545},[],{"categories":547},[223],{"categories":549},[223],{"categories":551},[],{"categories":553},[],{"categories":555},[202],{"categories":557},[],{"categories":559},[176],{"categories":561},[233],{"categories":563},[149],{"categories":565},[223],{"categories":567},[184],{"categories":569},[233],{"categories":571},[202],{"categories":573},[223],{"categories":575},[],{"categories":577},[149],{"categories":579},[149],{"categories":581},[149],{"categories":583},[202],{"categories":585},[176],{"categories":587},[149],{"categories":589},[184],{"categories":591},[495],{"categories":593},[223],{"categories":595},[184],{"categories":597},[],{"categories":599},[],{"categories":601},[223],{"categories":603},[202],{"categories":605},[226],{"categories":607},[],{"categories":609},[149],{"categories":611},[149],{"categories":613},[179],{"categories":615},[149],{"categories":617},[149],{"categories":619},[202],{"categories":621},[],{"categories":623},[184],{"categories":625},[233],{"categories":627},[],{"categories":629},[149],{"categories":631},[149],{"categories":633},[184],{"categories":635},[],{"categories":637},[],{"categories":639},[149],{"categories":641},[],{"categories":643},[179],{"categories":645},[184],{"categories":647},[],{"categories":649},[176],{"categories":651},[149],{"categories":653},[179],{"categories":655},[202],{"categories":657},[],{"categories":659},[],{"categories":661},[],{"categories":663},[202],{"categories":665},[202],{"categories":667},[],{"categories":669},[],{"categories":671},[179],{"categories":673},[],{"categories":675},[],{"categories":677},[176],{"categories":679},[],{"categories":681},[240],{"categories":683},[184],{"categories":685},[179],{"categories":687},[184],{"categories":689},[],{"categories":691},[187],{"categories":693},[223],{"categories":695},[233],{"categories":697},[149],{"categories":699},[184],{"categories":701},[179],{"categories":703},[149],{"categories":705},[],{"categories":707},[],{"categories":709},[233],{"categories":711},[226],{"categories":713},[187],{"categories":715},[184],{"categories":717},[149],{"categories":719},[],{"categories":721},[495],{"categories":723},[],{"categories":725},[184],{"categories":727},[],{"categories":729},[],{"categories":731},[149],{"categories":733},[223],{"categories":735},[240],{"categories":737},[184],{"categories":739},[],{"categories":741},[176],{"categories":743},[],{"categories":745},[202],{"categories":747},[149,495],{"categories":749},[202],{"categories":751},[149],{"categories":753},[179],{"categories":755},[149],{"categories":757},[],{"categories":759},[179],{"categories":761},[],{"categories":763},[233],{"categories":765},[223],{"categories":767},[202],{"categories":769},[226],{"categories":771},[176],{"categories":773},[149],{"categories":775},[233],{"categories":777},[],{"categories":779},[],{"categories":781},[187],{"categories":783},[],{"categories":785},[149],{"categories":787},[],{"categories":789},[223],{"categories":791},[223],{"categories":793},[223],{"categories":795},[],{"categories":797},[],{"categories":799},[202],{"categories":801},[184],{"categories":803},[149],{"categories":805},[149],{"categories":807},[149],{"categories":809},[179],{"categories":811},[149],{"categories":813},[],{"categories":815},[233],{"categories":817},[233],{"categories":819},[179],{"categories":821},[],{"categories":823},[149],{"categories":825},[149],{"categories":827},[179],{"categories":829},[202],{"categories":831},[240],{"categories":833},[184],{"categories":835},[],{"categories":837},[223],{"categories":839},[],{"categories":841},[149],{"categories":843},[],{"categories":845},[179],{"categories":847},[184],{"categories":849},[],{"categories":851},[495],{"categories":853},[226],{"categories":855},[233],{"categories":857},[240],{"categories":859},[233],{"categories":861},[184],{"categories":863},[],{"categories":865},[],{"categories":867},[184],{"categories":869},[176],{"categories":871},[184],{"categories":873},[187],{"categories":875},[179],{"categories":877},[],{"categories":879},[149],{"categories":881},[187],{"categories":883},[149],{"categories":885},[149],{"categories":887},[240],{"categories":889},[223],{"categories":891},[184],{"categories":893},[],{"categories":895},[],{"categories":897},[495],{"categories":899},[233],{"categories":901},[],{"categories":903},[184],{"categories":905},[149],{"categories":907},[223,149],{"categories":909},[176],{"categories":911},[],{"categories":913},[149],{"categories":915},[176],{"categories":917},[223],{"categories":919},[184],{"categories":921},[233],{"categories":923},[],{"categories":925},[149],{"categories":927},[],{"categories":929},[176],{"categories":931},[],{"categories":933},[184],{"categories":935},[187],{"categories":937},[149],{"categories":939},[149],{"categories":941},[223],{"categories":943},[184],{"categories":945},[495],{"categories":947},[223],{"categories":949},[184],{"categories":951},[149],{"categories":953},[149],{"categories":955},[149],{"categories":957},[202],{"categories":959},[],{"categories":961},[187],{"categories":963},[184],{"categories":965},[223],{"categories":967},[184],{"categories":969},[233],{"categories":971},[223],{"categories":973},[184],{"categories":975},[202],{"categories":977},[],{"categories":979},[149],{"categories":981},[223],{"categories":983},[149],{"categories":985},[176],{"categories":987},[202],{"categories":989},[149],{"categories":991},[240],{"categories":993},[149],{"categories":995},[149],{"categories":997},[184],{"categories":999},[184],{"categories":1001},[149],{"categories":1003},[184],{"categories":1005},[223],{"categories":1007},[149],{"categories":1009},[],{"categories":1011},[],{"categories":1013},[233],{"categories":1015},[],{"categories":1017},[176],{"categories":1019},[495],{"categories":1021},[],{"categories":1023},[176],{"categories":1025},[179],{"categories":1027},[240],{"categories":1029},[],{"categories":1031},[179],{"categories":1033},[],{"categories":1035},[],{"categories":1037},[],{"categories":1039},[],{"categories":1041},[],{"categories":1043},[149],{"categories":1045},[184],{"categories":1047},[495],{"categories":1049},[176],{"categories":1051},[149],{"categories":1053},[233],{"categories":1055},[187],{"categories":1057},[149],{"categories":1059},[240],{"categories":1061},[149],{"categories":1063},[149],{"categories":1065},[149],{"categories":1067},[149,176],{"categories":1069},[233],{"categories":1071},[233],{"categories":1073},[223],{"categories":1075},[149],{"categories":1077},[],{"categories":1079},[],{"categories":1081},[],{"categories":1083},[233],{"categories":1085},[226],{"categories":1087},[202],{"categories":1089},[223],{"categories":1091},[],{"categories":1093},[149],{"categories":1095},[149],{"categories":1097},[],{"categories":1099},[],{"categories":1101},[184],{"categories":1103},[149],{"categories":1105},[179],{"categories":1107},[],{"categories":1109},[176],{"categories":1111},[149],{"categories":1113},[176],{"categories":1115},[149],{"categories":1117},[233],{"categories":1119},[240],{"categories":1121},[149,223],{"categories":1123},[202],{"categories":1125},[223],{"categories":1127},[],{"categories":1129},[495],{"categories":1131},[223],{"categories":1133},[184],{"categories":1135},[],{"categories":1137},[],{"categories":1139},[],{"categories":1141},[],{"categories":1143},[233],{"categories":1145},[184],{"categories":1147},[184],{"categories":1149},[149],{"categories":1151},[149],{"categories":1153},[],{"categories":1155},[223],{"categories":1157},[],{"categories":1159},[],{"categories":1161},[184],{"categories":1163},[],{"categories":1165},[],{"categories":1167},[240],{"categories":1169},[240],{"categories":1171},[184],{"categories":1173},[],{"categories":1175},[149],{"categories":1177},[149],{"categories":1179},[233],{"categories":1181},[223],{"categories":1183},[223],{"categories":1185},[184],{"categories":1187},[176],{"categories":1189},[149],{"categories":1191},[223],{"categories":1193},[223],{"categories":1195},[184],{"categories":1197},[184],{"categories":1199},[149],{"categories":1201},[],{"categories":1203},[],{"categories":1205},[149],{"categories":1207},[184],{"categories":1209},[202],{"categories":1211},[233],{"categories":1213},[176],{"categories":1215},[149],{"categories":1217},[],{"categories":1219},[184],{"categories":1221},[184],{"categories":1223},[],{"categories":1225},[176],{"categories":1227},[149],{"categories":1229},[176],{"categories":1231},[176],{"categories":1233},[],{"categories":1235},[],{"categories":1237},[184],{"categories":1239},[184],{"categories":1241},[149],{"categories":1243},[149],{"categories":1245},[202],{"categories":1247},[226],{"categories":1249},[187],{"categories":1251},[202],{"categories":1253},[223],{"categories":1255},[],{"categories":1257},[202],{"categories":1259},[],{"categories":1261},[],{"categories":1263},[],{"categories":1265},[],{"categories":1267},[233],{"categories":1269},[226],{"categories":1271},[],{"categories":1273},[149],{"categories":1275},[149],{"categories":1277},[226],{"categories":1279},[233],{"categories":1281},[],{"categories":1283},[],{"categories":1285},[184],{"categories":1287},[202],{"categories":1289},[202],{"categories":1291},[184],{"categories":1293},[176],{"categories":1295},[149,495],{"categories":1297},[],{"categories":1299},[223],{"categories":1301},[176],{"categories":1303},[184],{"categories":1305},[223],{"categories":1307},[],{"categories":1309},[184],{"categories":1311},[184],{"categories":1313},[149],{"categories":1315},[240],{"categories":1317},[233],{"categories":1319},[223],{"categories":1321},[],{"categories":1323},[184],{"categories":1325},[149],{"categories":1327},[184],{"categories":1329},[184],{"categories":1331},[184],{"categories":1333},[240],{"categories":1335},[184],{"categories":1337},[149],{"categories":1339},[],{"categories":1341},[240],{"categories":1343},[202],{"categories":1345},[184],{"categories":1347},[],{"categories":1349},[],{"categories":1351},[149],{"categories":1353},[184],{"categories":1355},[202],{"categories":1357},[184],{"categories":1359},[],{"categories":1361},[],{"categories":1363},[],{"categories":1365},[184],{"categories":1367},[],{"categories":1369},[],{"categories":1371},[226],{"categories":1373},[149],{"categories":1375},[226],{"categories":1377},[202],{"categories":1379},[149],{"categories":1381},[149],{"categories":1383},[184],{"categories":1385},[149],{"categories":1387},[],{"categories":1389},[],{"categories":1391},[495],{"categories":1393},[],{"categories":1395},[],{"categories":1397},[176],{"categories":1399},[],{"categories":1401},[],{"categories":1403},[],{"categories":1405},[],{"categories":1407},[233],{"categories":1409},[202],{"categories":1411},[240],{"categories":1413},[179],{"categories":1415},[149],{"categories":1417},[149],{"categories":1419},[179],{"categories":1421},[],{"categories":1423},[223],{"categories":1425},[184],{"categories":1427},[179],{"categories":1429},[149],{"categories":1431},[149],{"categories":1433},[176],{"categories":1435},[],{"categories":1437},[176],{"categories":1439},[149],{"categories":1441},[240],{"categories":1443},[184],{"categories":1445},[202],{"categories":1447},[179],{"categories":1449},[149],{"categories":1451},[184],{"categories":1453},[],{"categories":1455},[149],{"categories":1457},[176],{"categories":1459},[149],{"categories":1461},[],{"categories":1463},[202],{"categories":1465},[149],{"categories":1467},[],{"categories":1469},[179],{"categories":1471},[149],{"categories":1473},[],{"categories":1475},[],{"categories":1477},[],{"categories":1479},[149],{"categories":1481},[],{"categories":1483},[495],{"categories":1485},[149],{"categories":1487},[],{"categories":1489},[149],{"categories":1491},[149],{"categories":1493},[149],{"categories":1495},[149,495],{"categories":1497},[149],{"categories":1499},[149],{"categories":1501},[223],{"categories":1503},[184],{"categories":1505},[],{"categories":1507},[184],{"categories":1509},[149],{"categories":1511},[149],{"categories":1513},[149],{"categories":1515},[176],{"categories":1517},[176],{"categories":1519},[233],{"categories":1521},[223],{"categories":1523},[184],{"categories":1525},[],{"categories":1527},[149],{"categories":1529},[202],{"categories":1531},[149],{"categories":1533},[179],{"categories":1535},[],{"categories":1537},[495],{"categories":1539},[223],{"categories":1541},[223],{"categories":1543},[184],{"categories":1545},[202],{"categories":1547},[184],{"categories":1549},[149],{"categories":1551},[],{"categories":1553},[149],{"categories":1555},[],{"categories":1557},[],{"categories":1559},[149],{"categories":1561},[149],{"categories":1563},[149],{"categories":1565},[184],{"categories":1567},[149],{"categories":1569},[],{"categories":1571},[226],{"categories":1573},[184],{"categories":1575},[],{"categories":1577},[149],{"categories":1579},[202],{"categories":1581},[],{"categories":1583},[223],{"categories":1585},[495],{"categories":1587},[202],{"categories":1589},[233],{"categories":1591},[233],{"categories":1593},[202],{"categories":1595},[202],{"categories":1597},[495],{"categories":1599},[],{"categories":1601},[202],{"categories":1603},[149],{"categories":1605},[176],{"categories":1607},[202],{"categories":1609},[],{"categories":1611},[226],{"categories":1613},[202],{"categories":1615},[233],{"categories":1617},[202],{"categories":1619},[495],{"categories":1621},[149],{"categories":1623},[149],{"categories":1625},[],{"categories":1627},[179],{"categories":1629},[],{"categories":1631},[],{"categories":1633},[149],{"categories":1635},[149],{"categories":1637},[149],{"categories":1639},[149],{"categories":1641},[],{"categories":1643},[226],{"categories":1645},[176],{"categories":1647},[],{"categories":1649},[149],{"categories":1651},[149],{"categories":1653},[495],{"categories":1655},[495],{"categories":1657},[],{"categories":1659},[184],{"categories":1661},[202],{"categories":1663},[202],{"categories":1665},[149],{"categories":1667},[184],{"categories":1669},[],{"categories":1671},[223],{"categories":1673},[149],{"categories":1675},[149],{"categories":1677},[],{"categories":1679},[],{"categories":1681},[495],{"categories":1683},[149],{"categories":1685},[233],{"categories":1687},[179],{"categories":1689},[149],{"categories":1691},[],{"categories":1693},[184],{"categories":1695},[176],{"categories":1697},[176],{"categories":1699},[],{"categories":1701},[149],{"categories":1703},[223],{"categories":1705},[184],{"categories":1707},[],{"categories":1709},[149],{"categories":1711},[149],{"categories":1713},[184],{"categories":1715},[],{"categories":1717},[184],{"categories":1719},[233],{"categories":1721},[],{"categories":1723},[149],{"categories":1725},[],{"categories":1727},[149],{"categories":1729},[],{"categories":1731},[149],{"categories":1733},[149],{"categories":1735},[],{"categories":1737},[149],{"categories":1739},[202],{"categories":1741},[149],{"categories":1743},[149],{"categories":1745},[176],{"categories":1747},[149],{"categories":1749},[202],{"categories":1751},[184],{"categories":1753},[],{"categories":1755},[149],{"categories":1757},[240],{"categories":1759},[],{"categories":1761},[],{"categories":1763},[],{"categories":1765},[176],{"categories":1767},[202],{"categories":1769},[184],{"categories":1771},[149],{"categories":1773},[223],{"categories":1775},[184],{"categories":1777},[],{"categories":1779},[184],{"categories":1781},[],{"categories":1783},[149],{"categories":1785},[184],{"categories":1787},[149],{"categories":1789},[],{"categories":1791},[149],{"categories":1793},[149],{"categories":1795},[202],{"categories":1797},[223],{"categories":1799},[184],{"categories":1801},[223],{"categories":1803},[179],{"categories":1805},[],{"categories":1807},[],{"categories":1809},[149],{"categories":1811},[176],{"categories":1813},[202],{"categories":1815},[],{"categories":1817},[],{"categories":1819},[233],{"categories":1821},[223],{"categories":1823},[],{"categories":1825},[149],{"categories":1827},[],{"categories":1829},[240],{"categories":1831},[149],{"categories":1833},[495],{"categories":1835},[233],{"categories":1837},[],{"categories":1839},[184],{"categories":1841},[149],{"categories":1843},[184],{"categories":1845},[184],{"categories":1847},[149],{"categories":1849},[],{"categories":1851},[176],{"categories":1853},[149],{"categories":1855},[179],{"categories":1857},[233],{"categories":1859},[223],{"categories":1861},[],{"categories":1863},[],{"categories":1865},[],{"categories":1867},[184],{"categories":1869},[223],{"categories":1871},[202],{"categories":1873},[149],{"categories":1875},[202],{"categories":1877},[223],{"categories":1879},[],{"categories":1881},[223],{"categories":1883},[202],{"categories":1885},[179],{"categories":1887},[149],{"categories":1889},[202],{"categories":1891},[240],{"categories":1893},[],{"categories":1895},[],{"categories":1897},[226],{"categories":1899},[149,233],{"categories":1901},[202],{"categories":1903},[149],{"categories":1905},[184],{"categories":1907},[184],{"categories":1909},[149],{"categories":1911},[],{"categories":1913},[233],{"categories":1915},[149],{"categories":1917},[226],{"categories":1919},[184],{"categories":1921},[240],{"categories":1923},[495],{"categories":1925},[],{"categories":1927},[176],{"categories":1929},[184],{"categories":1931},[184],{"categories":1933},[233],{"categories":1935},[149],{"categories":1937},[149],{"categories":1939},[],{"categories":1941},[],{"categories":1943},[],{"categories":1945},[495],{"categories":1947},[202],{"categories":1949},[149],{"categories":1951},[149],{"categories":1953},[149],{"categories":1955},[],{"categories":1957},[226],{"categories":1959},[179],{"categories":1961},[],{"categories":1963},[184],{"categories":1965},[495],{"categories":1967},[],{"categories":1969},[223],{"categories":1971},[223],{"categories":1973},[],{"categories":1975},[233],{"categories":1977},[223],{"categories":1979},[149],{"categories":1981},[],{"categories":1983},[202],{"categories":1985},[149],{"categories":1987},[223],{"categories":1989},[184],{"categories":1991},[202],{"categories":1993},[],{"categories":1995},[184],{"categories":1997},[223],{"categories":1999},[149],{"categories":2001},[],{"categories":2003},[149],{"categories":2005},[149],{"categories":2007},[495],{"categories":2009},[202],{"categories":2011},[226],{"categories":2013},[226],{"categories":2015},[],{"categories":2017},[],{"categories":2019},[],{"categories":2021},[184],{"categories":2023},[233],{"categories":2025},[233],{"categories":2027},[],{"categories":2029},[],{"categories":2031},[149],{"categories":2033},[],{"categories":2035},[184],{"categories":2037},[149],{"categories":2039},[],{"categories":2041},[149],{"categories":2043},[179],{"categories":2045},[149],{"categories":2047},[240],{"categories":2049},[184],{"categories":2051},[149],{"categories":2053},[233],{"categories":2055},[202],{"categories":2057},[184],{"categories":2059},[],{"categories":2061},[202],{"categories":2063},[184],{"categories":2065},[184],{"categories":2067},[],{"categories":2069},[179],{"categories":2071},[184],{"categories":2073},[],{"categories":2075},[149],{"categories":2077},[176],{"categories":2079},[202],{"categories":2081},[495],{"categories":2083},[184],{"categories":2085},[184],{"categories":2087},[176],{"categories":2089},[149],{"categories":2091},[],{"categories":2093},[],{"categories":2095},[223],{"categories":2097},[149,179],{"categories":2099},[],{"categories":2101},[176],{"categories":2103},[226],{"categories":2105},[149],{"categories":2107},[233],{"categories":2109},[149],{"categories":2111},[184],{"categories":2113},[149],{"categories":2115},[149],{"categories":2117},[202],{"categories":2119},[184],{"categories":2121},[],{"categories":2123},[],{"categories":2125},[184],{"categories":2127},[149],{"categories":2129},[495],{"categories":2131},[],{"categories":2133},[149],{"categories":2135},[184],{"categories":2137},[],{"categories":2139},[149],{"categories":2141},[240],{"categories":2143},[226],{"categories":2145},[184],{"categories":2147},[149],{"categories":2149},[495],{"categories":2151},[],{"categories":2153},[149],{"categories":2155},[240],{"categories":2157},[223],{"categories":2159},[149],{"categories":2161},[],{"categories":2163},[240],{"categories":2165},[202],{"categories":2167},[149],{"categories":2169},[149],{"categories":2171},[176],{"categories":2173},[],{"categories":2175},[],{"categories":2177},[223],{"categories":2179},[149],{"categories":2181},[226],{"categories":2183},[240],{"categories":2185},[240],{"categories":2187},[202],{"categories":2189},[],{"categories":2191},[],{"categories":2193},[149],{"categories":2195},[],{"categories":2197},[149,233],{"categories":2199},[202],{"categories":2201},[184],{"categories":2203},[233],{"categories":2205},[149],{"categories":2207},[176],{"categories":2209},[],{"categories":2211},[],{"categories":2213},[176],{"categories":2215},[240],{"categories":2217},[149],{"categories":2219},[],{"categories":2221},[223,149],{"categories":2223},[495],{"categories":2225},[176],{"categories":2227},[],{"categories":2229},[179],{"categories":2231},[179],{"categories":2233},[149],{"categories":2235},[233],{"categories":2237},[184],{"categories":2239},[202],{"categories":2241},[240],{"categories":2243},[223],{"categories":2245},[149],{"categories":2247},[149],{"categories":2249},[149],{"categories":2251},[176],{"categories":2253},[149],{"categories":2255},[184],{"categories":2257},[202],{"categories":2259},[],{"categories":2261},[],{"categories":2263},[226],{"categories":2265},[233],{"categories":2267},[149],{"categories":2269},[223],{"categories":2271},[226],{"categories":2273},[149],{"categories":2275},[149],{"categories":2277},[184],{"categories":2279},[184],{"categories":2281},[149,179],{"categories":2283},[],{"categories":2285},[223],{"categories":2287},[],{"categories":2289},[149],{"categories":2291},[202],{"categories":2293},[176],{"categories":2295},[176],{"categories":2297},[184],{"categories":2299},[149],{"categories":2301},[179],{"categories":2303},[233],{"categories":2305},[240],{"categories":2307},[],{"categories":2309},[202],{"categories":2311},[149],{"categories":2313},[149],{"categories":2315},[202],{"categories":2317},[233],{"categories":2319},[149],{"categories":2321},[184],{"categories":2323},[202],{"categories":2325},[149],{"categories":2327},[223],{"categories":2329},[149],{"categories":2331},[149],{"categories":2333},[495],{"categories":2335},[187],{"categories":2337},[184],{"categories":2339},[149],{"categories":2341},[202],{"categories":2343},[184],{"categories":2345},[240],{"categories":2347},[149],{"categories":2349},[],{"categories":2351},[149],{"categories":2353},[],{"categories":2355},[],{"categories":2357},[],{"categories":2359},[179],{"categories":2361},[149],{"categories":2363},[184],{"categories":2365},[202],{"categories":2367},[202],{"categories":2369},[202],{"categories":2371},[202],{"categories":2373},[],{"categories":2375},[176],{"categories":2377},[184],{"categories":2379},[202],{"categories":2381},[176],{"categories":2383},[184],{"categories":2385},[149],{"categories":2387},[149,184],{"categories":2389},[184],{"categories":2391},[495],{"categories":2393},[202],{"categories":2395},[202],{"categories":2397},[184],{"categories":2399},[149],{"categories":2401},[],{"categories":2403},[202],{"categories":2405},[240],{"categories":2407},[176],{"categories":2409},[149],{"categories":2411},[149],{"categories":2413},[],{"categories":2415},[233],{"categories":2417},[],{"categories":2419},[176],{"categories":2421},[184],{"categories":2423},[202],{"categories":2425},[149],{"categories":2427},[202],{"categories":2429},[176],{"categories":2431},[202],{"categories":2433},[202],{"categories":2435},[],{"categories":2437},[179],{"categories":2439},[184],{"categories":2441},[202],{"categories":2443},[202],{"categories":2445},[202],{"categories":2447},[202],{"categories":2449},[202],{"categories":2451},[202],{"categories":2453},[202],{"categories":2455},[202],{"categories":2457},[202],{"categories":2459},[202],{"categories":2461},[226],{"categories":2463},[176],{"categories":2465},[149],{"categories":2467},[149],{"categories":2469},[],{"categories":2471},[149,176],{"categories":2473},[],{"categories":2475},[184],{"categories":2477},[202],{"categories":2479},[184],{"categories":2481},[149],{"categories":2483},[149],{"categories":2485},[149],{"categories":2487},[149],{"categories":2489},[149],{"categories":2491},[184],{"categories":2493},[179],{"categories":2495},[223],{"categories":2497},[202],{"categories":2499},[149],{"categories":2501},[],{"categories":2503},[],{"categories":2505},[184],{"categories":2507},[223],{"categories":2509},[149],{"categories":2511},[],{"categories":2513},[],{"categories":2515},[240],{"categories":2517},[149],{"categories":2519},[],{"categories":2521},[],{"categories":2523},[176],{"categories":2525},[179],{"categories":2527},[149],{"categories":2529},[179],{"categories":2531},[223],{"categories":2533},[],{"categories":2535},[202],{"categories":2537},[],{"categories":2539},[223],{"categories":2541},[149],{"categories":2543},[240],{"categories":2545},[],{"categories":2547},[240],{"categories":2549},[],{"categories":2551},[],{"categories":2553},[184],{"categories":2555},[],{"categories":2557},[179],{"categories":2559},[176],{"categories":2561},[223],{"categories":2563},[233],{"categories":2565},[],{"categories":2567},[],{"categories":2569},[149],{"categories":2571},[176],{"categories":2573},[240],{"categories":2575},[],{"categories":2577},[184],{"categories":2579},[184],{"categories":2581},[202],{"categories":2583},[149],{"categories":2585},[184],{"categories":2587},[149],{"categories":2589},[184],{"categories":2591},[149],{"categories":2593},[187],{"categories":2595},[202],{"categories":2597},[],{"categories":2599},[240],{"categories":2601},[233],{"categories":2603},[184],{"categories":2605},[],{"categories":2607},[149],{"categories":2609},[184],{"categories":2611},[179],{"categories":2613},[176],{"categories":2615},[149],{"categories":2617},[223],{"categories":2619},[233],{"categories":2621},[233],{"categories":2623},[149],{"categories":2625},[226],{"categories":2627},[149],{"categories":2629},[184],{"categories":2631},[179],{"categories":2633},[184],{"categories":2635},[149],{"categories":2637},[149],{"categories":2639},[184],{"categories":2641},[202],{"categories":2643},[],{"categories":2645},[176],{"categories":2647},[149],{"categories":2649},[184],{"categories":2651},[149],{"categories":2653},[149],{"categories":2655},[],{"categories":2657},[223],{"categories":2659},[179],{"categories":2661},[202],{"categories":2663},[149],{"categories":2665},[149],{"categories":2667},[223],{"categories":2669},[240],{"categories":2671},[226],{"categories":2673},[149],{"categories":2675},[202],{"categories":2677},[149],{"categories":2679},[184],{"categories":2681},[495],{"categories":2683},[149],{"categories":2685},[184],{"categories":2687},[226],{"categories":2689},[],{"categories":2691},[184],{"categories":2693},[233],{"categories":2695},[223],{"categories":2697},[149],{"categories":2699},[176],{"categories":2701},[179],{"categories":2703},[233],{"categories":2705},[],{"categories":2707},[184],{"categories":2709},[149],{"categories":2711},[],{"categories":2713},[202],{"categories":2715},[],{"categories":2717},[202],{"categories":2719},[149],{"categories":2721},[184],{"categories":2723},[184],{"categories":2725},[184],{"categories":2727},[],{"categories":2729},[],{"categories":2731},[149],{"categories":2733},[149],{"categories":2735},[],{"categories":2737},[223],{"categories":2739},[184],{"categories":2741},[240],{"categories":2743},[176],{"categories":2745},[],{"categories":2747},[],{"categories":2749},[202],{"categories":2751},[233],{"categories":2753},[149],{"categories":2755},[149],{"categories":2757},[149],{"categories":2759},[233],{"categories":2761},[202],{"categories":2763},[223],{"categories":2765},[149],{"categories":2767},[149],{"categories":2769},[149],{"categories":2771},[202],{"categories":2773},[149],{"categories":2775},[202],{"categories":2777},[184],{"categories":2779},[184],{"categories":2781},[233],{"categories":2783},[184],{"categories":2785},[149],{"categories":2787},[233],{"categories":2789},[223],{"categories":2791},[],{"categories":2793},[184],{"categories":2795},[],{"categories":2797},[],{"categories":2799},[179],{"categories":2801},[149],{"categories":2803},[184],{"categories":2805},[176],{"categories":2807},[184],{"categories":2809},[240],{"categories":2811},[],{"categories":2813},[184],{"categories":2815},[],{"categories":2817},[176],{"categories":2819},[184],{"categories":2821},[],{"categories":2823},[184],{"categories":2825},[149],{"categories":2827},[202],{"categories":2829},[149],{"categories":2831},[184],{"categories":2833},[202],{"categories":2835},[184],{"categories":2837},[233],{"categories":2839},[223],{"categories":2841},[176],{"categories":2843},[],{"categories":2845},[184],{"categories":2847},[223],{"categories":2849},[202],{"categories":2851},[149],{"categories":2853},[223],{"categories":2855},[176],{"categories":2857},[],{"categories":2859},[184],{"categories":2861},[184],{"categories":2863},[149],{"categories":2865},[],{"categories":2867},[184],{"categories":2869},[187],{"categories":2871},[202],{"categories":2873},[184],{"categories":2875},[179],{"categories":2877},[],{"categories":2879},[149],{"categories":2881},[187],{"categories":2883},[149],{"categories":2885},[184],{"categories":2887},[202],{"categories":2889},[176],{"categories":2891},[495],{"categories":2893},[149],{"categories":2895},[149],{"categories":2897},[149],{"categories":2899},[202],{"categories":2901},[179],{"categories":2903},[149],{"categories":2905},[223],{"categories":2907},[202],{"categories":2909},[495],{"categories":2911},[149],{"categories":2913},[],{"categories":2915},[],{"categories":2917},[495],{"categories":2919},[226],{"categories":2921},[184],{"categories":2923},[184],{"categories":2925},[202],{"categories":2927},[149],{"categories":2929},[176],{"categories":2931},[223],{"categories":2933},[184],{"categories":2935},[149],{"categories":2937},[240],{"categories":2939},[149],{"categories":2941},[184],{"categories":2943},[],{"categories":2945},[149],{"categories":2947},[149],{"categories":2949},[202],{"categories":2951},[176],{"categories":2953},[],{"categories":2955},[149],{"categories":2957},[149],{"categories":2959},[233],{"categories":2961},[223],{"categories":2963},[149,184],{"categories":2965},[240,179],{"categories":2967},[149],{"categories":2969},[],{"categories":2971},[184],{"categories":2973},[],{"categories":2975},[233],{"categories":2977},[149],{"categories":2979},[202],{"categories":2981},[],{"categories":2983},[184],{"categories":2985},[],{"categories":2987},[184],{"categories":2989},[176],{"categories":2991},[184],{"categories":2993},[149],{"categories":2995},[495],{"categories":2997},[240],{"categories":2999},[179],{"categories":3001},[179],{"categories":3003},[176],{"categories":3005},[176],{"categories":3007},[149],{"categories":3009},[184],{"categories":3011},[149],{"categories":3013},[149],{"categories":3015},[176],{"categories":3017},[149],{"categories":3019},[240],{"categories":3021},[202],{"categories":3023},[149],{"categories":3025},[184],{"categories":3027},[149],{"categories":3029},[],{"categories":3031},[233],{"categories":3033},[],{"categories":3035},[184],{"categories":3037},[176],{"categories":3039},[],{"categories":3041},[495],{"categories":3043},[149],{"categories":3045},[],{"categories":3047},[202],{"categories":3049},[184],{"categories":3051},[233],{"categories":3053},[149],{"categories":3055},[184],{"categories":3057},[233],{"categories":3059},[184],{"categories":3061},[202],{"categories":3063},[176],{"categories":3065},[202],{"categories":3067},[233],{"categories":3069},[149],{"categories":3071},[223],{"categories":3073},[149],{"categories":3075},[149],{"categories":3077},[149],{"categories":3079},[149],{"categories":3081},[184],{"categories":3083},[149],{"categories":3085},[184],{"categories":3087},[149],{"categories":3089},[176],{"categories":3091},[149],{"categories":3093},[184],{"categories":3095},[223],{"categories":3097},[176],{"categories":3099},[184],{"categories":3101},[223],{"categories":3103},[],{"categories":3105},[149],{"categories":3107},[149],{"categories":3109},[233],{"categories":3111},[],{"categories":3113},[184],{"categories":3115},[240],{"categories":3117},[149],{"categories":3119},[202],{"categories":3121},[240],{"categories":3123},[184],{"categories":3125},[179],{"categories":3127},[179],{"categories":3129},[149],{"categories":3131},[176],{"categories":3133},[],{"categories":3135},[149],{"categories":3137},[],{"categories":3139},[176],{"categories":3141},[149],{"categories":3143},[184],{"categories":3145},[184],{"categories":3147},[],{"categories":3149},[233],{"categories":3151},[233],{"categories":3153},[240],{"categories":3155},[223],{"categories":3157},[],{"categories":3159},[149],{"categories":3161},[176],{"categories":3163},[149],{"categories":3165},[233],{"categories":3167},[176],{"categories":3169},[202],{"categories":3171},[202],{"categories":3173},[],{"categories":3175},[202],{"categories":3177},[184],{"categories":3179},[223],{"categories":3181},[226],{"categories":3183},[149],{"categories":3185},[],{"categories":3187},[202],{"categories":3189},[233],{"categories":3191},[179],{"categories":3193},[149],{"categories":3195},[176],{"categories":3197},[495],{"categories":3199},[176],{"categories":3201},[],{"categories":3203},[],{"categories":3205},[202],{"categories":3207},[],{"categories":3209},[184],{"categories":3211},[184],{"categories":3213},[184],{"categories":3215},[],{"categories":3217},[149],{"categories":3219},[],{"categories":3221},[202],{"categories":3223},[176],{"categories":3225},[223],{"categories":3227},[149],{"categories":3229},[202],{"categories":3231},[202],{"categories":3233},[],{"categories":3235},[202],{"categories":3237},[176],{"categories":3239},[149],{"categories":3241},[],{"categories":3243},[184],{"categories":3245},[184],{"categories":3247},[176],{"categories":3249},[],{"categories":3251},[],{"categories":3253},[],{"categories":3255},[223],{"categories":3257},[184],{"categories":3259},[149],{"categories":3261},[],{"categories":3263},[],{"categories":3265},[],{"categories":3267},[223],{"categories":3269},[],{"categories":3271},[176],{"categories":3273},[],{"categories":3275},[],{"categories":3277},[223],{"categories":3279},[149],{"categories":3281},[202],{"categories":3283},[],{"categories":3285},[240],{"categories":3287},[202],{"categories":3289},[240],{"categories":3291},[149],{"categories":3293},[],{"categories":3295},[],{"categories":3297},[184],{"categories":3299},[],{"categories":3301},[],{"categories":3303},[184],{"categories":3305},[149],{"categories":3307},[],{"categories":3309},[184],{"categories":3311},[202],{"categories":3313},[240],{"categories":3315},[226],{"categories":3317},[184],{"categories":3319},[184],{"categories":3321},[],{"categories":3323},[],{"categories":3325},[],{"categories":3327},[202],{"categories":3329},[],{"categories":3331},[],{"categories":3333},[223],{"categories":3335},[176],{"categories":3337},[],{"categories":3339},[179],{"categories":3341},[240],{"categories":3343},[149],{"categories":3345},[233],{"categories":3347},[176],{"categories":3349},[226],{"categories":3351},[179],{"categories":3353},[233],{"categories":3355},[],{"categories":3357},[],{"categories":3359},[184],{"categories":3361},[176],{"categories":3363},[223],{"categories":3365},[176],{"categories":3367},[184],{"categories":3369},[495],{"categories":3371},[184],{"categories":3373},[],{"categories":3375},[149],{"categories":3377},[202],{"categories":3379},[233],{"categories":3381},[],{"categories":3383},[223],{"categories":3385},[202],{"categories":3387},[176],{"categories":3389},[184],{"categories":3391},[149],{"categories":3393},[179],{"categories":3395},[184,495],{"categories":3397},[184],{"categories":3399},[233],{"categories":3401},[149],{"categories":3403},[226],{"categories":3405},[240],{"categories":3407},[184],{"categories":3409},[],{"categories":3411},[184],{"categories":3413},[149],{"categories":3415},[179],{"categories":3417},[],{"categories":3419},[],{"categories":3421},[149],{"categories":3423},[226],{"categories":3425},[149],{"categories":3427},[],{"categories":3429},[202],{"categories":3431},[],{"categories":3433},[202],{"categories":3435},[233],{"categories":3437},[184],{"categories":3439},[149],{"categories":3441},[240],{"categories":3443},[233],{"categories":3445},[],{"categories":3447},[202],{"categories":3449},[149],{"categories":3451},[],{"categories":3453},[149],{"categories":3455},[184],{"categories":3457},[149],{"categories":3459},[184],{"categories":3461},[149],{"categories":3463},[149],{"categories":3465},[149],{"categories":3467},[149],{"categories":3469},[179],{"categories":3471},[],{"categories":3473},[187],{"categories":3475},[202],{"categories":3477},[149],{"categories":3479},[],{"categories":3481},[233],{"categories":3483},[149],{"categories":3485},[149],{"categories":3487},[184],{"categories":3489},[202],{"categories":3491},[149],{"categories":3493},[149],{"categories":3495},[179],{"categories":3497},[184],{"categories":3499},[223],{"categories":3501},[],{"categories":3503},[226],{"categories":3505},[149],{"categories":3507},[],{"categories":3509},[202],{"categories":3511},[240],{"categories":3513},[],{"categories":3515},[],{"categories":3517},[202],{"categories":3519},[202],{"categories":3521},[240],{"categories":3523},[176],{"categories":3525},[184],{"categories":3527},[184],{"categories":3529},[149],{"categories":3531},[179],{"categories":3533},[],{"categories":3535},[],{"categories":3537},[202],{"categories":3539},[226],{"categories":3541},[233],{"categories":3543},[184],{"categories":3545},[223],{"categories":3547},[226],{"categories":3549},[226],{"categories":3551},[],{"categories":3553},[202],{"categories":3555},[149],{"categories":3557},[149],{"categories":3559},[233],{"categories":3561},[],{"categories":3563},[202],{"categories":3565},[202],{"categories":3567},[202],{"categories":3569},[],{"categories":3571},[184],{"categories":3573},[149],{"categories":3575},[],{"categories":3577},[176],{"categories":3579},[179],{"categories":3581},[],{"categories":3583},[149],{"categories":3585},[149],{"categories":3587},[],{"categories":3589},[233],{"categories":3591},[],{"categories":3593},[],{"categories":3595},[],{"categories":3597},[],{"categories":3599},[149],{"categories":3601},[202],{"categories":3603},[],{"categories":3605},[],{"categories":3607},[149],{"categories":3609},[149],{"categories":3611},[149],{"categories":3613},[226],{"categories":3615},[149],{"categories":3617},[226],{"categories":3619},[],{"categories":3621},[226],{"categories":3623},[226],{"categories":3625},[495],{"categories":3627},[184],{"categories":3629},[233],{"categories":3631},[],{"categories":3633},[],{"categories":3635},[226],{"categories":3637},[233],{"categories":3639},[233],{"categories":3641},[233],{"categories":3643},[],{"categories":3645},[176],{"categories":3647},[233],{"categories":3649},[233],{"categories":3651},[176],{"categories":3653},[233],{"categories":3655},[179],{"categories":3657},[233],{"categories":3659},[233],{"categories":3661},[233],{"categories":3663},[226],{"categories":3665},[202],{"categories":3667},[202],{"categories":3669},[149],{"categories":3671},[233],{"categories":3673},[226],{"categories":3675},[495],{"categories":3677},[226],{"categories":3679},[226],{"categories":3681},[226],{"categories":3683},[],{"categories":3685},[179],{"categories":3687},[],{"categories":3689},[495],{"categories":3691},[233],{"categories":3693},[233],{"categories":3695},[233],{"categories":3697},[184],{"categories":3699},[202,179],{"categories":3701},[226],{"categories":3703},[],{"categories":3705},[],{"categories":3707},[226],{"categories":3709},[],{"categories":3711},[226],{"categories":3713},[202],{"categories":3715},[184],{"categories":3717},[],{"categories":3719},[233],{"categories":3721},[149],{"categories":3723},[223],{"categories":3725},[],{"categories":3727},[149],{"categories":3729},[],{"categories":3731},[202],{"categories":3733},[176],{"categories":3735},[226],{"categories":3737},[],{"categories":3739},[233],{"categories":3741},[202],[3743,3904,3966,4228],{"id":3744,"title":3745,"ai":3746,"body":3751,"categories":3872,"created_at":150,"date_modified":150,"description":139,"extension":152,"faq":150,"featured":153,"kicker_label":150,"meta":3873,"navigation":155,"path":3889,"published_at":3890,"question":150,"scraped_at":3891,"seo":3892,"sitemap":3893,"source_id":3894,"source_name":3895,"source_type":3896,"source_url":3897,"stem":3898,"tags":3899,"thumbnail_url":150,"tldr":3900,"tweet":3901,"unknown_tags":3902,"__hash__":3903},"summaries\u002Fsummaries\u002Fd87c61d87b0d275f-claude-managed-agents-scalable-path-to-production--summary.md","Claude Managed Agents: Scalable Path to Production AI Agents",{"provider":7,"model":8,"input_tokens":3747,"output_tokens":3748,"processing_time_ms":3749,"cost_usd":3750},8361,2128,38425,0.00271355,{"type":14,"value":3752,"toc":3863},[3753,3757,3760,3763,3767,3770,3773,3777,3780,3783,3787,3790,3793,3797,3800,3804,3807,3810,3812,3838,3841],[17,3754,3756],{"id":3755},"platform-evolution-mirrors-model-autonomy","Platform Evolution Mirrors Model Autonomy",[22,3758,3759],{},"Angela Jiang, head of product for the Claude platform, traces the shift from basic completion endpoints in the GPT-3 era to stateful sessions, tool calling, and now Claude Managed Agents—a full cloud computer with memory, file systems, and persistent state. This progression chases better outcomes as Claude grows more autonomous. Early APIs enabled exploration, but production builders demanded out-of-the-box reliability for agents. \"We've moved more and more towards a slightly more stateful world... to make sure that the performance of the model is better and better,\" Jiang explains. Internally, Anthropic iterated on its own agent infrastructure enough times to productize it, sparing others the pain of Mac Minis and thousand-line Python loops, as host Dan Shipper describes Every.to's setup.",[22,3761,3762],{},"Katelyn Lesse, head of engineering, emphasizes primitives like the Messages API, built-in tools (code execution in sandboxes, web search), and skills. Managed Agents harness these into a scalable unit, handling 24\u002F7 runs without custom servers. Shipper probes the build-vs-buy tension: custom setups offer flexibility but infrastructure \"sucks,\" echoing why Anthropic built this once for everyone.",[17,3764,3766],{"id":3765},"tight-harness-model-pairing-beats-generic-swapping","Tight Harness-Model Pairing Beats Generic Swapping",[22,3768,3769],{},"Lesse argues against generic harnesses hot-swapping models like GPT-4o or Gemini. Newer models demand tailored architectures—Claude excels with file systems and skills, not arbitrary tools. \"The harness and the model get very paired... there's a lot of alpha in that construct,\" she says, citing internal evals where harness tweaks drastically boosted memory performance. Path dependencies lock in behaviors: choosing file systems shapes Claude's strengths, potentially creating model \"lanes.\"",[22,3771,3772],{},"Shipper raises lock-in fears—easy model swaps in playgrounds vs. Managed Agents. Jiang counters that Anthropic's internal products use the same APIs, minimizing divergence. Reference implementations and blog posts let builders align or extend. For edge experimentation, pair redundancy at the agent level (harness + model), not below. Lesse notes even competitors like Cursor likely harness-engineer per model to squeeze performance.",[17,3774,3776],{"id":3775},"infrastructure-wall-crushes-most-agent-projects","Infrastructure Wall Crushes Most Agent Projects",[22,3778,3779],{},"Production scaling kills agents: spinning servers, managing state, ensuring reliability. Managed Agents abstracts this—modular yet opinionated on Claude-friendly primitives. Jiang: \"Infrastructure sucks... we're doing it once in a way that's going to really work.\" For Every.to's customer-facing agents, this means no more Mac Minis; scale seamlessly.",[22,3781,3782],{},"Flexibility comes via open APIs for custom tools, though Anthropic pushes file systems and skills. Undoable path dependencies? Lesse admits primitives evolve, hitting local maxima requiring rethinking, but careful choices like computer-use focus avoid over-optimizing reasoning alone.",[17,3784,3786],{"id":3785},"team-agents-reshape-workflows-beyond-solo-tools","Team Agents Reshape Workflows Beyond Solo Tools",[22,3788,3789],{},"Managed Agents target two users: internal automators (e.g., full software dev platforms) and product builders embedding agents for customers. Quick-start chats educate on primitives, enabling non-technical setups like Shipper's Code Interpreter-driven Slackbot. Anthropic's legal team runs an agent reviewing marketing copy—autonomous, persistent, no reimplemented memory.",[22,3791,3792],{},"Team agents differ from individual tools: they orchestrate multi-agents for advisor strategies, adversarial testing, or swarms. Jiang highlights end-to-end processes where engineers focus on outcomes, not infra tweaks.",[17,3794,3796],{"id":3795},"success-metrics-outcome-budget-not-step-counting","Success Metrics: Outcome + Budget, Not Step-Counting",[22,3798,3799],{},"Measure agents by goal achievement within budget, not loop iterations. Future platforms let you specify outcome + budget; Claude handles the rest. Lesse: \"In the future, you’ll be able to accomplish a goal by just giving Claude an outcome and a budget.\"",[17,3801,3803],{"id":3802},"self-evolving-agents-claude-writes-its-own-code","Self-Evolving Agents: Claude Writes Its Own Code",[22,3805,3806],{},"One year out: Claude self-optimizes—picks models, spins sub-agents, writes harnesses on-the-fly. \"Claude actually gets so good at understanding itself it figures out what model you should be using... Claude is able to understand itself enough that it can write itself,\" Jiang envisions. Platform scales to match dynamic needs, minimizing human architecture decisions.",[22,3808,3809],{},"\"How close are we to Claude making me a billion dollars? That's really what I'm asking,\" Shipper jokes, capturing builder excitement.",[17,3811,103],{"id":102},[105,3813,3814,3817,3820,3823,3826,3829,3832,3835],{},[108,3815,3816],{},"Build on Managed Agents primitives (Messages API, file systems, skills) for Claude-tuned performance; generic harnesses underperform newer models.",[108,3818,3819],{},"Skip custom infra—use Anthropic's scalable cloud to avoid the \"infrastructure wall\" that kills 90% of agent projects.",[108,3821,3822],{},"Pair harness tightly with model; swap at agent level for redundancy, not below.",[108,3824,3825],{},"Target team-scale use cases like legal review or dev platforms; quick-starts accelerate prototyping.",[108,3827,3828],{},"Measure by outcome + budget; future agents self-architect via meta-understanding.",[108,3830,3831],{},"Follow Anthropic blogs for reference harnesses to align custom builds.",[108,3833,3834],{},"Internal convergence ensures playground features flow to production tools quickly.",[108,3836,3837],{},"Opinionated primitives create path dependencies—choose file systems early for Claude's strengths.",[22,3839,3840],{},"Notable quotes:",[105,3842,3843,3846,3849,3852,3860],{},[108,3844,3845],{},"\"Infrastructure sucks so much... we're doing it once.\" — Angela Jiang, on why Managed Agents exist.",[108,3847,3848],{},"\"The harness and the model are becoming a single unit... a lot of alpha in harness engineering.\" — Katelyn Lesse, on model-specific optimization.",[108,3850,3851],{},"\"In a year... Claude writes its own harness on the fly.\" — Angela Jiang, future vision.",[108,3853,3854,3855,3859],{},"\"Path dependence... such a small footnote ",[3856,3857,3858],"span",{},"but"," becomes very big.\" — Dan Shipper, on primitives shaping models.",[108,3861,3862],{},"\"Get the best outcomes out of Claude... as easy as possible.\" — Angela Jiang, platform philosophy.",{"title":139,"searchDepth":140,"depth":140,"links":3864},[3865,3866,3867,3868,3869,3870,3871],{"id":3755,"depth":140,"text":3756},{"id":3765,"depth":140,"text":3766},{"id":3775,"depth":140,"text":3776},{"id":3785,"depth":140,"text":3786},{"id":3795,"depth":140,"text":3796},{"id":3802,"depth":140,"text":3803},{"id":102,"depth":140,"text":103},[149],{"content_references":3874,"triage":3884},[3875,3879,3882],{"type":3876,"title":3877,"context":3878},"event","Code with Claude developer event","mentioned",{"type":3880,"title":3881,"context":3878},"tool","Claude Managed Agents",{"type":3880,"title":3883,"context":3878},"Claude Code",{"relevance":3885,"novelty":3886,"quality":3886,"actionability":3886,"composite":3887,"reasoning":3888},5,4,4.35,"Category: AI & LLMs. The article discusses Claude Managed Agents, which directly addresses the needs of product builders looking to implement scalable AI agents in production. It provides insights into the evolution of AI infrastructure and practical considerations for using managed agents, making it highly relevant and actionable.","\u002Fsummaries\u002Fd87c61d87b0d275f-claude-managed-agents-scalable-path-to-production-summary","2026-05-08 20:22:38","2026-05-09 15:15:18",{"title":3745,"description":139},{"loc":3889},"8e426f7005afa70c","Every","article","https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=lLypHkIVLqc","summaries\u002Fd87c61d87b0d275f-claude-managed-agents-scalable-path-to-production--summary",[167,168,169],"Anthropic's Claude Managed Agents bundle model, harness, and cloud infra to solve production scaling pains, pairing tightly with Claude for optimal outcomes over generic model swapping.","Interview with Anthropic's Claude platform leads Angela Jiang and Katelyn Lesse on the new Managed Agents: how it evolved from basic APIs to cloud-wrapped, scalable agents with file systems, skills, and tools like code execution; production hurdles; internal uses; and visions for self-writing harnesses. Follow-up to their Code with Claude event announcement.",[169],"67a22luBBdINPpPtbA7aIuhigLe643j6QFX2vsmj5gM",{"id":3905,"title":3906,"ai":3907,"body":3912,"categories":3940,"created_at":150,"date_modified":150,"description":139,"extension":152,"faq":150,"featured":153,"kicker_label":150,"meta":3941,"navigation":155,"path":3953,"published_at":3954,"question":150,"scraped_at":3955,"seo":3956,"sitemap":3957,"source_id":3958,"source_name":3959,"source_type":3896,"source_url":3960,"stem":3961,"tags":3962,"thumbnail_url":150,"tldr":3963,"tweet":150,"unknown_tags":3964,"__hash__":3965},"summaries\u002Fsummaries\u002F4aedf925f119dc46-memento-agent-llms-learn-from-past-failures-summary.md","Memento Agent: LLMs Learn from Past Failures",{"provider":7,"model":8,"input_tokens":3908,"output_tokens":3909,"processing_time_ms":3910,"cost_usd":3911},4412,1417,26100,0.0015684,{"type":14,"value":3913,"toc":3935},[3914,3918,3921,3925,3928,3932],[17,3915,3917],{"id":3916},"semantic-memory-storage-for-contextual-recall","Semantic Memory Storage for Contextual Recall",[22,3919,3920],{},"Transform raw task data—thoughts, actions, observations—into vectors using the all-MiniLM-L6-v2 embedding model. Structure as Trajectories to capture full causality chains, not just outcomes. Retrieve relevant memories via cosine similarity on embeddings, matching conceptually similar experiences despite wording differences. This replaces vague logging with precise, vector-based recall, allowing the agent to reference exact failure paths like deprecated API_V1 errors.",[17,3922,3924],{"id":3923},"decoupled-planner-executor-loop-for-adaptive-planning","Decoupled Planner-Executor Loop for Adaptive Planning",[22,3926,3927],{},"Separate planning from execution: the Planner (powered by Grok-4.1-fast-reasoning or GPT-4.1) ingests the current task plus top retrieved successful strategies and past mistakes. It synthesizes improved plans, e.g., switching to API_V2 after reviewing a prior failure trajectory. The Executor interfaces with the environment, returning deterministic feedback (success\u002Ferror) to log new trajectories. This decoupling ensures planning evolves based on execution outcomes without contaminating the reasoning model itself.",[17,3929,3931],{"id":3930},"failure-driven-optimization-reduces-steps-to-success","Failure-Driven Optimization Reduces Steps to Success",[22,3933,3934],{},"Force an initial failure (e.g., API_V1 call) to populate memory, then observe how retrieved failure data guides the Planner to correct actions on similar tasks. Without this, static LLMs repeat errors if training data ambiguates options; with Memento, agents learn experientially, dropping average steps to success from multiple trials to one. In industrial settings, this enforces accountability by preventing repeat documented failures, enabling sovereign AI with private, persistent intelligence. Full Python implementation in MEMENTO_GROK.ipynb demonstrates the loop end-to-end.",{"title":139,"searchDepth":140,"depth":140,"links":3936},[3937,3938,3939],{"id":3916,"depth":140,"text":3917},{"id":3923,"depth":140,"text":3924},{"id":3930,"depth":140,"text":3931},[149],{"content_references":3942,"triage":3951},[3943,3947,3949],{"type":3944,"title":3945,"url":3946,"context":3878},"other","MEMENTO_GROK.ipynb","https:\u002F\u002Fgithub.com\u002Ffrank-morales2020\u002FCloud_curious\u002Fblob\u002Fmaster\u002FMEMENTO_GROK.ipynb",{"type":3880,"title":3948,"context":3878},"all-MiniLM-L6-v2",{"type":3880,"title":3950,"context":3878},"Grok-4.1-fast-reasoning",{"relevance":3885,"novelty":3886,"quality":3886,"actionability":3886,"composite":3887,"reasoning":3952},"Category: AI & LLMs. The article provides a detailed exploration of a novel approach to enhancing LLMs through experiential learning, addressing a specific pain point of improving AI performance by learning from past failures. It includes practical implementation details, such as using semantic embeddings and a decoupled planner-executor loop, which can be directly applied by developers building AI-powered products.","\u002Fsummaries\u002F4aedf925f119dc46-memento-agent-llms-learn-from-past-failures-summary","2026-05-08 18:30:55","2026-05-09 15:36:56",{"title":3906,"description":139},{"loc":3953},"4aedf925f119dc46","AI Simplified in Plain English","https:\u002F\u002Fmedium.com\u002Fai-simplified-in-plain-english\u002Fthe-memento-style-agent-implementing-experiential-learning-in-autonomous-systems-c74bd9a3c92d?source=rss----f37ab7d4e76b---4","summaries\u002F4aedf925f119dc46-memento-agent-llms-learn-from-past-failures-summary",[167,168,169],"Store task trajectories as semantic embeddings to enable agents to retrieve similar past experiences via cosine similarity, avoiding repeated errors and achieving deterministic success in one step after initial failure.",[169],"WclyRkFCn3vtk011IlLHTuEHpcDUIzVMIw6jp2luHIg",{"id":3967,"title":3968,"ai":3969,"body":3974,"categories":4195,"created_at":150,"date_modified":150,"description":139,"extension":152,"faq":150,"featured":153,"kicker_label":150,"meta":4196,"navigation":155,"path":4215,"published_at":4216,"question":150,"scraped_at":4217,"seo":4218,"sitemap":4219,"source_id":4220,"source_name":4221,"source_type":3896,"source_url":4222,"stem":4223,"tags":4224,"thumbnail_url":150,"tldr":4225,"tweet":150,"unknown_tags":4226,"__hash__":4227},"summaries\u002Fsummaries\u002Faf9f66e396aa16a3-build-knowledge-bases-from-agent-failures-summary.md","Build Knowledge Bases from Agent Failures",{"provider":7,"model":8,"input_tokens":3970,"output_tokens":3971,"processing_time_ms":3972,"cost_usd":3973},8610,2337,50002,0.002868,{"type":14,"value":3975,"toc":4188},[3976,3980,3983,3991,3998,4002,4005,4019,4022,4027,4054,4057,4063,4068,4079,4084,4088,4091,4111,4117,4120,4125,4129,4132,4140,4143,4149,4155,4160,4162],[17,3977,3979],{"id":3978},"why-enterprise-ai-fails-despite-hype","Why Enterprise AI Fails Despite Hype",[22,3981,3982],{},"AI excels at reasoning, code generation, and benchmarks, but stalls on Jira tickets and business delivery because it lacks institutional knowledge—tribal, undocumented domain specifics. Enterprises dump Confluence, Jira, GitHub into RAG or MCP servers (10-20 per team), assuming retrieval fixes it. Reality: 40% tribal knowledge, 20% outdated\u002Funreliable\u002Fduplicated. Output is undeterministic, untested; no evals mean you're data-entering gaps yourself. McKinsey stat: 88% companies use AI, only 6% see value. Push strategies (build everything upfront) exhaust you; agents become knowledge consumers, not managers.",[22,3984,3985,3986,3990],{},"Relate to ",[3987,3988,3989],"em",{},"Memento",": Agent has 15-minute memory, tattoos notes to persist. Same for AI—great at computation, terrible at retaining enterprise context without structured help.",[22,3992,3993,3997],{},[3994,3995,3996],"strong",{},"Quote:"," \"Why do my Jira tickets not moving? Because that defines the business delivery and ROI.\"",[17,3999,4001],{"id":4000},"demand-driven-context-pull-from-failures-like-tdd","Demand-Driven Context: Pull from Failures Like TDD",[22,4003,4004],{},"Flip to pull strategy: Treat agents like new hires. Give problems (Jira\u002Fincidents), let them fail, surface gaps, fill as domain expert, have agent curate into reusable Markdown blocks. Analogies:",[105,4006,4007,4010,4013,4016],{},[108,4008,4009],{},"Monolith → Microservices: Break knowledge into agent-usable chunks.",[108,4011,4012],{},"Waterfall → Agile: Iterative cycles.",[108,4014,4015],{},"New hire onboarding: Assign tasks, they ask\u002Ffill docs.",[108,4017,4018],{},"TDD: Write failing tests (problems), implement to pass (fill gaps), refactor (curate).",[22,4020,4021],{},"Preprint proves it: arXiv paper on demand-driven context shows accuracy jumps with cycles.",[22,4023,4024],{},[3994,4025,4026],{},"Core Cycle (Repeat per Problem):",[4028,4029,4030,4036,4042,4048],"ol",{},[108,4031,4032,4035],{},[3994,4033,4034],{},"Assign Problem",": Real ticket\u002Fincident (e.g., root cause analysis). Agent retrieves from monolith (Confluence\u002FSlack\u002FGitHub sim via files\u002FMCP).",[108,4037,4038,4041],{},[3994,4039,4040],{},"Agent Fails & Demands",": Outputs checklist of missing info (terminologies, business logic). Scores confidence (1-5), flags critical gaps. Discovers undocumented entities.",[108,4043,4044,4047],{},[3994,4045,4046],{},"Human Fills",": Provide exact knowledge (prepped answers in demo).",[108,4049,4050,4053],{},[3994,4051,4052],{},"Agent Curates",": Updates knowledge base—discovers related entities, structures in Markdown (entities grow from 56 to 70+ per cycle). Persistence: Files for demo, but plug MCP\u002FConfluence.",[22,4055,4056],{},"After 14 incidents: Confidence from 1.4 (all critical) to 4.4. Agent evolves from consumer to curator.",[22,4058,4059,4062],{},[3994,4060,4061],{},"Principles:"," Agents must reason post-retrieval (missing in basic RAG). Gaps surface only via problems—can't guess tribal knowledge. No one fixes your monolith; LLM providers chase models, retrieval market ($9B) ignores it.",[22,4064,4065],{},[3994,4066,4067],{},"Common Mistakes Avoided:",[105,4069,4070,4073,4076],{},[108,4071,4072],{},"No evals: Check value, not just output.",[108,4074,4075],{},"Overbuild RAGs on junk data.",[108,4077,4078],{},"Manual exhaustion: Automate later.",[22,4080,4081,4083],{},[3994,4082,3996],{}," \"Unless we break down that monolith knowledge base into context blocks useful for agents, it won't work.\"",[17,4085,4087],{"id":4086},"hands-on-implementation-agentic-framework","Hands-On Implementation: Agentic Framework",[22,4089,4090],{},"Uses any agent framework (Claude demo for crowd, Copilot at IKEA). Components:",[105,4092,4093,4099,4105],{},[108,4094,4095,4098],{},[3994,4096,4097],{},"Skills\u002FRules\u002FAgents\u002FHooks",": Custom for failure analysis, gap checklist, curation.",[108,4100,4101,4104],{},[3994,4102,4103],{},"Knowledge Base",": Markdown files (entities as sections). Live updates visible.",[108,4106,4107,4110],{},[3994,4108,4109],{},"Retrieval First",": Fetches monolith, then gap-finds if low confidence.",[22,4112,4113,4116],{},[3994,4114,4115],{},"Demo Flow (Terminal\u002FClaude):"," Incident: \"Root cause high latency in service X.\" Agent scans monolith, lists 6 missing entities (e.g., notification logic). Provide info → Agent adds 5-6 more discovered entities. Re-run: Succeeds.",[22,4118,4119],{},"Scale manually painful after 1-2 cycles. Quality criteria: Confidence >4, zero critical gaps, full task completion.",[22,4121,4122,4124],{},[3994,4123,3996],{}," \"One problem surfaced six entities never documented... it discovers gaps, stores new info.\"",[17,4126,4128],{"id":4127},"automate-at-scale-batch-historical-tickets","Automate at Scale: Batch Historical Tickets",[22,4130,4131],{},"Grab archived Jira\u002Fincidents (JSON\u002FMD with descriptions\u002Fcomments). Platform Ops Agent validates batch (20 incidents) against knowledge base:",[105,4133,4134,4137],{},[108,4135,4136],{},"Per ticket: Retrieve, score docs (trustworthy\u002Foutdated\u002Fmissing).",[108,4138,4139],{},"Aggregate: Surfaces enterprise-wide gaps.",[22,4141,4142],{},"Run cycles on history → Builds base before live use. Agents handle knowledge management autonomously.",[22,4144,4145,4148],{},[3994,4146,4147],{},"Trade-offs:"," Initial failures expected (design goal). Requires domain experts briefly. Works on cloud\u002Flocal. At IKEA (100+ eng, 6 product teams): Powers delivery services.",[22,4150,4151,4154],{},[3994,4152,4153],{},"Exercise:"," Pick 5 real tickets. Run cycle in your agent (Claude\u002FCopilot). Track entity growth, confidence. Prerequisites: Agent familiarity, engineering background, Markdown for docs.",[22,4156,4157,4159],{},[3994,4158,3996],{}," \"We move agent from consumer to knowledge manager... the whole knowledge management is your job.\"",[17,4161,103],{"id":102},[105,4163,4164,4167,4170,4173,4176,4179,4182,4185],{},[108,4165,4166],{},"Start with real problems, not curated context—failures pinpoint exact gaps.",[108,4168,4169],{},"One cycle: Problem → Retrieve → Gap checklist → Fill → Curate Markdown blocks.",[108,4171,4172],{},"Repeat 10-15x on incidents: Confidence scales 1.4 → 4.4+; base self-improves.",[108,4174,4175],{},"Automate batch validation on historical tickets for enterprise scale.",[108,4177,4178],{},"Eval by task completion\u002FROI (Jira velocity), not output existence.",[108,4180,4181],{},"Tools: Claude\u002FCopilot + hooks; persist via MCP\u002FConfluence.",[108,4183,4184],{},"Avoid: RAG spam on tribal knowledge—demand-driven wins.",[108,4186,4187],{},"Fits broader workflow: Pre-agentic cleanup for production autonomy.",{"title":139,"searchDepth":140,"depth":140,"links":4189},[4190,4191,4192,4193,4194],{"id":3978,"depth":140,"text":3979},{"id":4000,"depth":140,"text":4001},{"id":4086,"depth":140,"text":4087},{"id":4127,"depth":140,"text":4128},{"id":102,"depth":140,"text":103},[149,184],{"content_references":4197,"triage":4213},[4198,4203,4208,4209,4211],{"type":4199,"title":4200,"author":4201,"publisher":4202,"context":3878},"paper","Demand-Driven Context","Raj Navakoti","arXiv",{"type":4204,"title":4205,"author":4206,"context":4207},"report","AI Value Creation","McKinsey","cited",{"type":3944,"title":3989,"context":3878},{"type":3880,"title":4210,"context":3878},"Claude",{"type":3880,"title":4212,"context":3878},"Copilot",{"relevance":3885,"novelty":3886,"quality":3886,"actionability":3886,"composite":3887,"reasoning":4214},"Category: AI Automation. The article provides a practical framework for improving AI agents' performance by addressing knowledge gaps through iterative learning from failures, which directly addresses the audience's need for actionable insights in AI product development. It presents a novel approach by comparing the process to TDD and Agile methodologies, enhancing its relevance and applicability.","\u002Fsummaries\u002Faf9f66e396aa16a3-build-knowledge-bases-from-agent-failures-summary","2026-05-05 13:00:06","2026-05-05 16:04:23",{"title":3968,"description":139},{"loc":4215},"0d47bf4474e015b1","AI Engineer","https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=_QAVExf_1uw","summaries\u002Faf9f66e396aa16a3-build-knowledge-bases-from-agent-failures-summary",[167,168,169],"Assign real enterprise problems to AI agents; their failures reveal exact knowledge gaps. Fill them iteratively to create a demand-driven context base that makes agents semi-autonomous—far better than dumping uncurated RAG data.",[169],"lkkxNgonHbe1jTzHeQQOb__eyspMzd8MY1_XhZv0ZJM",{"id":4229,"title":4230,"ai":4231,"body":4236,"categories":4264,"created_at":150,"date_modified":150,"description":139,"extension":152,"faq":150,"featured":153,"kicker_label":150,"meta":4265,"navigation":155,"path":4276,"published_at":4277,"question":150,"scraped_at":4278,"seo":4279,"sitemap":4280,"source_id":4281,"source_name":4282,"source_type":3896,"source_url":4283,"stem":4284,"tags":4285,"thumbnail_url":150,"tldr":4286,"tweet":150,"unknown_tags":4287,"__hash__":4288},"summaries\u002Fsummaries\u002Fd954c8a65c048e0d-6-agentic-patterns-from-claude-design-for-vertical-summary.md","6 Agentic Patterns from Claude Design for Vertical Apps",{"provider":7,"model":8,"input_tokens":4232,"output_tokens":4233,"processing_time_ms":4234,"cost_usd":4235},6491,1608,24012,0.00207955,{"type":14,"value":4237,"toc":4259},[4238,4242,4245,4249,4252,4256],[17,4239,4241],{"id":4240},"ground-context-dynamically-before-generating","Ground Context Dynamically Before Generating",[22,4243,4244],{},"Never generate blindly—always ground your agent in user-specific data via progressive disclosure RAG. Claude Design forces users to build a detailed design system upfront (brand context, colors, fonts, HTML for buttons\u002Fcards), then the agent selectively pulls relevant chunks into its window per task, avoiding context bloat. Extend this: for sales agents, RAG over CRM data before outreach; for legal, load templated contracts before drafting. First output isn't the deliverable—it's a structured memory artifact (markdown, HTML\u002FCSS, or JSON) that persists across sessions and downstream agents. This memory boosts speed\u002Fquality on repeats since models now parse these formats natively. Trade-off: initial setup time, but it crushes static system prompts, which most enterprise agents still misuse.",[17,4246,4248],{"id":4247},"iterate-with-multimodal-ux-and-self-critique","Iterate with Multimodal UX and Self-Critique",[22,4250,4251],{},"Ditch chatbot-only interfaces; let the agent generate task-specific controls (sliders for email aggressiveness, layout tweaks) from its own tokens, rendered dynamically. Claude Design handles 5+ inputs—chat, voice, DOM hovers, sketches, screenshots—for natural refinement loops. After output, run a self-QA: render (e.g., screenshot), feed back to vision model (needs strong one like Opus 4.7), critique\u002Fiterate until it matches intent. Burns tokens but yields production quality before user sees it—apply to emails, contracts, PDFs, UIs. This fixes where most agents fail: rigid UX and unpolished drafts.",[17,4253,4255],{"id":4254},"generate-variations-proactively-and-handoff-seamlessly","Generate Variations Proactively and Handoff Seamlessly",[22,4257,4258],{},"Surface decisions hierarchically with multi-variation: output 2-3 options upfront (e.g., layouts > typography > colors), letting users pick axes like sales tone (warm vs. direct). Beats clarifying questions by showing trade-offs concretely, reducing back-and-forth. Finalize with handoff: export to portable formats (HTML\u002FCSS, PDF, PowerPoint) for tools like Figma, Canva, Claude Code, or other agents. Avoid proprietary traps—markdown\u002FJSON works everywhere. In multi-agent futures, this enables ecosystems; today, it matches user workflows. Stack all patterns (especially grounding + memory) for qualitative leaps—most deployments lack this dynamic harness.",{"title":139,"searchDepth":140,"depth":140,"links":4260},[4261,4262,4263],{"id":4240,"depth":140,"text":4241},{"id":4247,"depth":140,"text":4248},{"id":4254,"depth":140,"text":4255},[149],{"content_references":4266,"triage":4273},[4267,4270],{"type":3944,"title":4268,"url":4269,"context":4207},"Claude Design Launch Blog","https:\u002F\u002Fwww.anthropic.com\u002Fnews\u002Fclaude-design-anthropic-labs",{"type":3880,"title":4271,"url":4272,"context":3878},"llm-tutorials","https:\u002F\u002Fgithub.com\u002Fsamwit\u002Fllm-tutorials",{"relevance":3885,"novelty":3886,"quality":3886,"actionability":3885,"composite":4274,"reasoning":4275},4.55,"Category: AI Automation. The article provides a detailed framework for building AI agents using specific patterns that can be directly applied to various vertical applications, addressing the audience's need for practical, actionable content. It outlines concrete steps like grounding agents in user data and iterating with multimodal UX, which are immediately actionable for product builders.","\u002Fsummaries\u002Fd954c8a65c048e0d-6-agentic-patterns-from-claude-design-for-vertical-summary","2026-05-01 16:35:00","2026-05-03 16:51:24",{"title":4230,"description":139},{"loc":4276},"5cddd7260212b0ec","Sam Witteveen","https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=V-djAkt0t-M","summaries\u002Fd954c8a65c048e0d-6-agentic-patterns-from-claude-design-for-vertical-summary",[167,168,169],"Claude Design's edge comes from stacking 6 patterns—context grounding, structured memory, iterative multimodal refinement, self-QA, multi-variation generation, handoff—around a strong LLM like Opus 4.7. Build your legal, sales, or medical agents the same way: ground in user data first, then iterate with quality checks.",[169],"n3uXvaNagGSyL1X9ut5T7S8MZAsHzxmuChlPhnf-d4c"]