[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-inflection":3,"mdc--wdh09y-key":36,"related-repo-openai-inflection":533,"related-org-openai-inflection":656},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"inflection","detect metric acceleration and deceleration inflections","Auto-detect biggest acceleration\u002Fdeceleration inflections across all metrics",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19,22],{"name":13,"slug":14,"type":15},"Finance","finance","tag",{"name":17,"slug":18,"type":15},"Data Analysis","data-analysis",{"name":20,"slug":21,"type":15},"Analytics","analytics",{"name":23,"slug":24,"type":15},"Statistics","statistics",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fdaloopa\u002Fskills\u002Finflection","---\nname: inflection\ndescription: Auto-detect biggest acceleration\u002Fdeceleration inflections across all\n  metrics\n---\n\nDetect the biggest financial and operating inflections for the company named in the user's request. If no ticker or company is provided, ask for one before proceeding.\n\n**Before starting, read `..\u002Fdata-access.md` for data access methods and `..\u002Fdesign-system.md` for formatting conventions.** Follow the data access detection logic and design system throughout this skill.\n\nFollow these steps:\n\n## 1. Company Lookup\nLook up the company by ticker using `discover_companies`. Capture:\n- `company_id`\n- `latest_calendar_quarter` — anchor for all period calculations below (see `..\u002Fdata-access.md` Section 1.5)\n- `latest_fiscal_quarter`\n- Firm name for report attribution (default: \"Daloopa\") — see `..\u002Fdata-access.md` Section 4.5\n\n## 2. Broad Series Discovery\nCast a wide net to discover ALL available series for this company. Search with multiple keyword sets to maximize coverage:\n- Financial: \"revenue\", \"income\", \"profit\", \"margin\", \"eps\", \"cash flow\"\n- Operating: \"subscriber\", \"user\", \"customer\", \"unit\", \"arpu\", \"retention\"\n- Segment: \"segment\", \"product\", \"service\", \"geographic\"\n- Balance sheet: \"debt\", \"asset\", \"equity\", \"cash\"\n- Other: \"backlog\", \"bookings\", \"pipeline\", \"store\", \"employee\"\n\nCollect all unique series IDs. The goal is comprehensiveness — capture every metric Daloopa tracks for this company.\n\n## 3. Pull 8 Quarters of Data\nCalculate 8 quarters backward from `latest_calendar_quarter`. Pull all discovered series for those periods. This gives enough history to compute both QoQ and YoY rates plus their second derivatives.\n\n## 4. Compute Growth Rates and Inflections\nFor each series with sufficient data (at least 5 quarters):\n\n**YoY Growth Rate** for each quarter:\n- growth_t = (value_t - value_{t-4}) \u002F |value_{t-4}|\n\n**YoY Acceleration (second derivative):**\n- accel_t = growth_t - growth_{t-1}\n- Positive = accelerating, Negative = decelerating\n\n**QoQ Sequential Growth** (for non-seasonal metrics):\n- seq_growth_t = (value_t - value_{t-1}) \u002F |value_{t-1}|\n\n**QoQ Acceleration:**\n- seq_accel_t = seq_growth_t - seq_growth_{t-1}\n\nSkip series where values are too small (\u003C 1% of revenue) or where data is sparse. For margin\u002Fratio series (values between 0-1 or percentages), compute change in basis points rather than % change.\n\n## 5. Rank Inflections\nRank all series by the magnitude of their most recent acceleration\u002Fdeceleration:\n\n**Top 10 Accelerating** — series with the largest positive acceleration in the most recent quarter. These are metrics that are improving faster than before.\n\n**Top 10 Decelerating** — series with the largest negative acceleration (or deceleration). These are metrics where momentum is fading.\n\nFor each inflection, note:\n- Series name\n- Most recent value (with Daloopa citation)\n- Current YoY growth rate\n- Prior-quarter YoY growth rate\n- Acceleration (the delta)\n- Whether this is a new trend (1Q) or sustained (2-3Q in same direction)\n\n## 6. Contextualize Key Inflections\nFor the top 5 most significant inflections (by magnitude and importance to the business):\n- Search SEC filings for context on what's driving the change\n- Try keywords related to the specific metric (e.g., if \"Services Revenue\" is accelerating, search for \"services\", \"subscription\", \"recurring\")\n- Extract management commentary explaining the inflection\n- Note whether the inflection aligns with or contradicts management guidance\n\n## 7. Synthesize\nIdentify the narrative:\n- Is the company broadly accelerating or decelerating?\n- Are there divergent trends (e.g., revenue accelerating but margins decelerating)?\n- Which inflections matter most for the investment case?\n- Are operating KPIs leading or lagging the financial inflections?\n\n**Critically assess sustainability:**\n- For positive inflections: Is this a durable trend change or a one-time comp effect? Will it persist next quarter when the base normalizes? Is it driven by organic strength or by pull-forward, price increases, or easy comps?\n- For negative inflections: Is this the beginning of a structural deterioration or a temporary blip? Is the company investing through it (good) or cutting to protect margins (potentially bad long-term)?\n- Flag any inflections where the magnitude seems too good\u002Fbad to be sustainable.\n\n## 8. Save Report\nSave to `reports\u002F{TICKER}_inflection.html` using the HTML report template from `..\u002Fdesign-system.md`. Write the full analysis as styled HTML with the design system CSS inlined. This is the final deliverable — no intermediate markdown step needed.\n\nStructure the report with these sections:\n\n```\n\u003Ch1>{Company Name} ({TICKER}) — Inflection Analysis\u003C\u002Fh1>\n\u003Cp>Generated: {date}\u003C\u002Fp>\n\n\u003Ch2>Summary\u003C\u002Fh2>\n{2-3 sentence overview: Is the company accelerating, decelerating, or mixed? What are the most important inflections?}\n\n\u003Ch2>Top Accelerating Metrics\u003C\u002Fh2>\n\u003Ctable>\n| Rank | Metric | Latest Value | YoY Growth | Prior YoY Growth | Acceleration | Trend |\n{table with Daloopa citations}\n\u003C\u002Ftable>\n\n\u003Ch2>Top Decelerating Metrics\u003C\u002Fh2>\n\u003Ctable>\n| Rank | Metric | Latest Value | YoY Growth | Prior YoY Growth | Deceleration | Trend |\n{table with Daloopa citations}\n\u003C\u002Ftable>\n\n\u003Ch2>Key Inflection Deep Dives\u003C\u002Fh2>\n\n\u003Ch3>1. {Metric Name} — {Accelerating\u002FDecelerating}\u003C\u002Fh3>\n{Context from filings, management commentary, what's driving it}\n\n\u003Ch3>2. {Metric Name} — {Accelerating\u002FDecelerating}\u003C\u002Fh3>\n{...}\n\n{repeat for top 5}\n\n\u003Ch2>Divergences & Signals\u003C\u002Fh2>\n{Analysis of divergent trends, leading indicators, and implications}\n\n\u003Ch2>Inflection Heatmap\u003C\u002Fh2>\n\u003Ctable>\n| Metric | Q(-3) YoY | Q(-2) YoY | Q(-1) YoY | Q(latest) YoY | Direction |\n{visual trend using labels: Accelerating \u002F Steady \u002F Decelerating}\n\u003C\u002Ftable>\n```\n\nAll financial figures must use Daloopa citation format: `\u003Ca href=\"https:\u002F\u002Fdaloopa.com\u002Fsrc\u002F{fundamental_id}\">$X.XX million\u003C\u002Fa>`\n\nTell the user where the HTML report was saved.\n\nHighlight the 2-3 most notable inflections and what they signal.\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,49,77,82,89,102,155,161,166,194,199,205,217,223,228,238,246,254,267,277,285,293,301,306,312,317,327,337,342,375,381,386,409,415,420,443,451,469,475,495,500,512,523,528],{"type":42,"tag":43,"props":44,"children":45},"element","p",{},[46],{"type":47,"value":48},"text","Detect the biggest financial and operating inflections for the company named in the user's request. If no ticker or company is provided, ask for one before proceeding.",{"type":42,"tag":43,"props":50,"children":51},{},[52,75],{"type":42,"tag":53,"props":54,"children":55},"strong",{},[56,58,65,67,73],{"type":47,"value":57},"Before starting, read ",{"type":42,"tag":59,"props":60,"children":62},"code",{"className":61},[],[63],{"type":47,"value":64},"..\u002Fdata-access.md",{"type":47,"value":66}," for data access methods and ",{"type":42,"tag":59,"props":68,"children":70},{"className":69},[],[71],{"type":47,"value":72},"..\u002Fdesign-system.md",{"type":47,"value":74}," for formatting conventions.",{"type":47,"value":76}," Follow the data access detection logic and design system throughout this skill.",{"type":42,"tag":43,"props":78,"children":79},{},[80],{"type":47,"value":81},"Follow these steps:",{"type":42,"tag":83,"props":84,"children":86},"h2",{"id":85},"_1-company-lookup",[87],{"type":47,"value":88},"1. Company Lookup",{"type":42,"tag":43,"props":90,"children":91},{},[92,94,100],{"type":47,"value":93},"Look up the company by ticker using ",{"type":42,"tag":59,"props":95,"children":97},{"className":96},[],[98],{"type":47,"value":99},"discover_companies",{"type":47,"value":101},". Capture:",{"type":42,"tag":103,"props":104,"children":105},"ul",{},[106,116,134,143],{"type":42,"tag":107,"props":108,"children":109},"li",{},[110],{"type":42,"tag":59,"props":111,"children":113},{"className":112},[],[114],{"type":47,"value":115},"company_id",{"type":42,"tag":107,"props":117,"children":118},{},[119,125,127,132],{"type":42,"tag":59,"props":120,"children":122},{"className":121},[],[123],{"type":47,"value":124},"latest_calendar_quarter",{"type":47,"value":126}," — anchor for all period calculations below (see ",{"type":42,"tag":59,"props":128,"children":130},{"className":129},[],[131],{"type":47,"value":64},{"type":47,"value":133}," Section 1.5)",{"type":42,"tag":107,"props":135,"children":136},{},[137],{"type":42,"tag":59,"props":138,"children":140},{"className":139},[],[141],{"type":47,"value":142},"latest_fiscal_quarter",{"type":42,"tag":107,"props":144,"children":145},{},[146,148,153],{"type":47,"value":147},"Firm name for report attribution (default: \"Daloopa\") — see ",{"type":42,"tag":59,"props":149,"children":151},{"className":150},[],[152],{"type":47,"value":64},{"type":47,"value":154}," Section 4.5",{"type":42,"tag":83,"props":156,"children":158},{"id":157},"_2-broad-series-discovery",[159],{"type":47,"value":160},"2. Broad Series Discovery",{"type":42,"tag":43,"props":162,"children":163},{},[164],{"type":47,"value":165},"Cast a wide net to discover ALL available series for this company. Search with multiple keyword sets to maximize coverage:",{"type":42,"tag":103,"props":167,"children":168},{},[169,174,179,184,189],{"type":42,"tag":107,"props":170,"children":171},{},[172],{"type":47,"value":173},"Financial: \"revenue\", \"income\", \"profit\", \"margin\", \"eps\", \"cash flow\"",{"type":42,"tag":107,"props":175,"children":176},{},[177],{"type":47,"value":178},"Operating: \"subscriber\", \"user\", \"customer\", \"unit\", \"arpu\", \"retention\"",{"type":42,"tag":107,"props":180,"children":181},{},[182],{"type":47,"value":183},"Segment: \"segment\", \"product\", \"service\", \"geographic\"",{"type":42,"tag":107,"props":185,"children":186},{},[187],{"type":47,"value":188},"Balance sheet: \"debt\", \"asset\", \"equity\", \"cash\"",{"type":42,"tag":107,"props":190,"children":191},{},[192],{"type":47,"value":193},"Other: \"backlog\", \"bookings\", \"pipeline\", \"store\", \"employee\"",{"type":42,"tag":43,"props":195,"children":196},{},[197],{"type":47,"value":198},"Collect all unique series IDs. The goal is comprehensiveness — capture every metric Daloopa tracks for this company.",{"type":42,"tag":83,"props":200,"children":202},{"id":201},"_3-pull-8-quarters-of-data",[203],{"type":47,"value":204},"3. Pull 8 Quarters of Data",{"type":42,"tag":43,"props":206,"children":207},{},[208,210,215],{"type":47,"value":209},"Calculate 8 quarters backward from ",{"type":42,"tag":59,"props":211,"children":213},{"className":212},[],[214],{"type":47,"value":124},{"type":47,"value":216},". Pull all discovered series for those periods. This gives enough history to compute both QoQ and YoY rates plus their second derivatives.",{"type":42,"tag":83,"props":218,"children":220},{"id":219},"_4-compute-growth-rates-and-inflections",[221],{"type":47,"value":222},"4. Compute Growth Rates and Inflections",{"type":42,"tag":43,"props":224,"children":225},{},[226],{"type":47,"value":227},"For each series with sufficient data (at least 5 quarters):",{"type":42,"tag":43,"props":229,"children":230},{},[231,236],{"type":42,"tag":53,"props":232,"children":233},{},[234],{"type":47,"value":235},"YoY Growth Rate",{"type":47,"value":237}," for each quarter:",{"type":42,"tag":103,"props":239,"children":240},{},[241],{"type":42,"tag":107,"props":242,"children":243},{},[244],{"type":47,"value":245},"growth_t = (value_t - value_) \u002F |value_|",{"type":42,"tag":43,"props":247,"children":248},{},[249],{"type":42,"tag":53,"props":250,"children":251},{},[252],{"type":47,"value":253},"YoY Acceleration (second derivative):",{"type":42,"tag":103,"props":255,"children":256},{},[257,262],{"type":42,"tag":107,"props":258,"children":259},{},[260],{"type":47,"value":261},"accel_t = growth_t - growth_",{"type":42,"tag":107,"props":263,"children":264},{},[265],{"type":47,"value":266},"Positive = accelerating, Negative = decelerating",{"type":42,"tag":43,"props":268,"children":269},{},[270,275],{"type":42,"tag":53,"props":271,"children":272},{},[273],{"type":47,"value":274},"QoQ Sequential Growth",{"type":47,"value":276}," (for non-seasonal metrics):",{"type":42,"tag":103,"props":278,"children":279},{},[280],{"type":42,"tag":107,"props":281,"children":282},{},[283],{"type":47,"value":284},"seq_growth_t = (value_t - value_) \u002F |value_|",{"type":42,"tag":43,"props":286,"children":287},{},[288],{"type":42,"tag":53,"props":289,"children":290},{},[291],{"type":47,"value":292},"QoQ Acceleration:",{"type":42,"tag":103,"props":294,"children":295},{},[296],{"type":42,"tag":107,"props":297,"children":298},{},[299],{"type":47,"value":300},"seq_accel_t = seq_growth_t - seq_growth_",{"type":42,"tag":43,"props":302,"children":303},{},[304],{"type":47,"value":305},"Skip series where values are too small (\u003C 1% of revenue) or where data is sparse. For margin\u002Fratio series (values between 0-1 or percentages), compute change in basis points rather than % change.",{"type":42,"tag":83,"props":307,"children":309},{"id":308},"_5-rank-inflections",[310],{"type":47,"value":311},"5. Rank Inflections",{"type":42,"tag":43,"props":313,"children":314},{},[315],{"type":47,"value":316},"Rank all series by the magnitude of their most recent acceleration\u002Fdeceleration:",{"type":42,"tag":43,"props":318,"children":319},{},[320,325],{"type":42,"tag":53,"props":321,"children":322},{},[323],{"type":47,"value":324},"Top 10 Accelerating",{"type":47,"value":326}," — series with the largest positive acceleration in the most recent quarter. These are metrics that are improving faster than before.",{"type":42,"tag":43,"props":328,"children":329},{},[330,335],{"type":42,"tag":53,"props":331,"children":332},{},[333],{"type":47,"value":334},"Top 10 Decelerating",{"type":47,"value":336}," — series with the largest negative acceleration (or deceleration). These are metrics where momentum is fading.",{"type":42,"tag":43,"props":338,"children":339},{},[340],{"type":47,"value":341},"For each inflection, note:",{"type":42,"tag":103,"props":343,"children":344},{},[345,350,355,360,365,370],{"type":42,"tag":107,"props":346,"children":347},{},[348],{"type":47,"value":349},"Series name",{"type":42,"tag":107,"props":351,"children":352},{},[353],{"type":47,"value":354},"Most recent value (with Daloopa citation)",{"type":42,"tag":107,"props":356,"children":357},{},[358],{"type":47,"value":359},"Current YoY growth rate",{"type":42,"tag":107,"props":361,"children":362},{},[363],{"type":47,"value":364},"Prior-quarter YoY growth rate",{"type":42,"tag":107,"props":366,"children":367},{},[368],{"type":47,"value":369},"Acceleration (the delta)",{"type":42,"tag":107,"props":371,"children":372},{},[373],{"type":47,"value":374},"Whether this is a new trend (1Q) or sustained (2-3Q in same direction)",{"type":42,"tag":83,"props":376,"children":378},{"id":377},"_6-contextualize-key-inflections",[379],{"type":47,"value":380},"6. Contextualize Key Inflections",{"type":42,"tag":43,"props":382,"children":383},{},[384],{"type":47,"value":385},"For the top 5 most significant inflections (by magnitude and importance to the business):",{"type":42,"tag":103,"props":387,"children":388},{},[389,394,399,404],{"type":42,"tag":107,"props":390,"children":391},{},[392],{"type":47,"value":393},"Search SEC filings for context on what's driving the change",{"type":42,"tag":107,"props":395,"children":396},{},[397],{"type":47,"value":398},"Try keywords related to the specific metric (e.g., if \"Services Revenue\" is accelerating, search for \"services\", \"subscription\", \"recurring\")",{"type":42,"tag":107,"props":400,"children":401},{},[402],{"type":47,"value":403},"Extract management commentary explaining the inflection",{"type":42,"tag":107,"props":405,"children":406},{},[407],{"type":47,"value":408},"Note whether the inflection aligns with or contradicts management guidance",{"type":42,"tag":83,"props":410,"children":412},{"id":411},"_7-synthesize",[413],{"type":47,"value":414},"7. Synthesize",{"type":42,"tag":43,"props":416,"children":417},{},[418],{"type":47,"value":419},"Identify the narrative:",{"type":42,"tag":103,"props":421,"children":422},{},[423,428,433,438],{"type":42,"tag":107,"props":424,"children":425},{},[426],{"type":47,"value":427},"Is the company broadly accelerating or decelerating?",{"type":42,"tag":107,"props":429,"children":430},{},[431],{"type":47,"value":432},"Are there divergent trends (e.g., revenue accelerating but margins decelerating)?",{"type":42,"tag":107,"props":434,"children":435},{},[436],{"type":47,"value":437},"Which inflections matter most for the investment case?",{"type":42,"tag":107,"props":439,"children":440},{},[441],{"type":47,"value":442},"Are operating KPIs leading or lagging the financial inflections?",{"type":42,"tag":43,"props":444,"children":445},{},[446],{"type":42,"tag":53,"props":447,"children":448},{},[449],{"type":47,"value":450},"Critically assess sustainability:",{"type":42,"tag":103,"props":452,"children":453},{},[454,459,464],{"type":42,"tag":107,"props":455,"children":456},{},[457],{"type":47,"value":458},"For positive inflections: Is this a durable trend change or a one-time comp effect? Will it persist next quarter when the base normalizes? Is it driven by organic strength or by pull-forward, price increases, or easy comps?",{"type":42,"tag":107,"props":460,"children":461},{},[462],{"type":47,"value":463},"For negative inflections: Is this the beginning of a structural deterioration or a temporary blip? Is the company investing through it (good) or cutting to protect margins (potentially bad long-term)?",{"type":42,"tag":107,"props":465,"children":466},{},[467],{"type":47,"value":468},"Flag any inflections where the magnitude seems too good\u002Fbad to be sustainable.",{"type":42,"tag":83,"props":470,"children":472},{"id":471},"_8-save-report",[473],{"type":47,"value":474},"8. Save Report",{"type":42,"tag":43,"props":476,"children":477},{},[478,480,486,488,493],{"type":47,"value":479},"Save to ",{"type":42,"tag":59,"props":481,"children":483},{"className":482},[],[484],{"type":47,"value":485},"reports\u002F{TICKER}_inflection.html",{"type":47,"value":487}," using the HTML report template from ",{"type":42,"tag":59,"props":489,"children":491},{"className":490},[],[492],{"type":47,"value":72},{"type":47,"value":494},". Write the full analysis as styled HTML with the design system CSS inlined. This is the final deliverable — no intermediate markdown step needed.",{"type":42,"tag":43,"props":496,"children":497},{},[498],{"type":47,"value":499},"Structure the report with these sections:",{"type":42,"tag":501,"props":502,"children":506},"pre",{"className":503,"code":505,"language":47},[504],"language-text","\u003Ch1>{Company Name} ({TICKER}) — Inflection Analysis\u003C\u002Fh1>\n\u003Cp>Generated: {date}\u003C\u002Fp>\n\n\u003Ch2>Summary\u003C\u002Fh2>\n{2-3 sentence overview: Is the company accelerating, decelerating, or mixed? What are the most important inflections?}\n\n\u003Ch2>Top Accelerating Metrics\u003C\u002Fh2>\n\u003Ctable>\n| Rank | Metric | Latest Value | YoY Growth | Prior YoY Growth | Acceleration | Trend |\n{table with Daloopa citations}\n\u003C\u002Ftable>\n\n\u003Ch2>Top Decelerating Metrics\u003C\u002Fh2>\n\u003Ctable>\n| Rank | Metric | Latest Value | YoY Growth | Prior YoY Growth | Deceleration | Trend |\n{table with Daloopa citations}\n\u003C\u002Ftable>\n\n\u003Ch2>Key Inflection Deep Dives\u003C\u002Fh2>\n\n\u003Ch3>1. {Metric Name} — {Accelerating\u002FDecelerating}\u003C\u002Fh3>\n{Context from filings, management commentary, what's driving it}\n\n\u003Ch3>2. {Metric Name} — {Accelerating\u002FDecelerating}\u003C\u002Fh3>\n{...}\n\n{repeat for top 5}\n\n\u003Ch2>Divergences & Signals\u003C\u002Fh2>\n{Analysis of divergent trends, leading indicators, and implications}\n\n\u003Ch2>Inflection Heatmap\u003C\u002Fh2>\n\u003Ctable>\n| Metric | Q(-3) YoY | Q(-2) YoY | Q(-1) YoY | Q(latest) YoY | Direction |\n{visual trend using labels: Accelerating \u002F Steady \u002F Decelerating}\n\u003C\u002Ftable>\n",[507],{"type":42,"tag":59,"props":508,"children":510},{"__ignoreMap":509},"",[511],{"type":47,"value":505},{"type":42,"tag":43,"props":513,"children":514},{},[515,517],{"type":47,"value":516},"All financial figures must use Daloopa citation format: ",{"type":42,"tag":59,"props":518,"children":520},{"className":519},[],[521],{"type":47,"value":522},"\u003Ca href=\"https:\u002F\u002Fdaloopa.com\u002Fsrc\u002F{fundamental_id}\">$X.XX million\u003C\u002Fa>",{"type":42,"tag":43,"props":524,"children":525},{},[526],{"type":47,"value":527},"Tell the user where the HTML report was saved.",{"type":42,"tag":43,"props":529,"children":530},{},[531],{"type":47,"value":532},"Highlight the 2-3 most notable inflections and what they signal.",{"items":534,"total":655},[535,553,569,581,601,623,643],{"slug":536,"name":536,"fn":537,"description":538,"org":539,"tags":540,"stars":25,"repoUrl":26,"updatedAt":27},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[541,544,547,550],{"name":542,"slug":543,"type":15},"Accessibility","accessibility",{"name":545,"slug":546,"type":15},"Charts","charts",{"name":548,"slug":549,"type":15},"Data Visualization","data-visualization",{"name":551,"slug":552,"type":15},"Design","design",{"slug":554,"name":554,"fn":555,"description":556,"org":557,"tags":558,"stars":25,"repoUrl":26,"updatedAt":568},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[559,562,565],{"name":560,"slug":561,"type":15},"Agents","agents",{"name":563,"slug":564,"type":15},"Browser Automation","browser-automation",{"name":566,"slug":567,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":570,"name":570,"fn":571,"description":572,"org":573,"tags":574,"stars":25,"repoUrl":26,"updatedAt":580},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[575,576,579],{"name":563,"slug":564,"type":15},{"name":577,"slug":578,"type":15},"Local Development","local-development",{"name":566,"slug":567,"type":15},"2026-04-06T18:41:17.526867",{"slug":582,"name":582,"fn":583,"description":584,"org":585,"tags":586,"stars":25,"repoUrl":26,"updatedAt":600},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[587,588,591,594,597],{"name":560,"slug":561,"type":15},{"name":589,"slug":590,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":592,"slug":593,"type":15},"SDK","sdk",{"name":595,"slug":596,"type":15},"Serverless","serverless",{"name":598,"slug":599,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":602,"name":602,"fn":603,"description":604,"org":605,"tags":606,"stars":25,"repoUrl":26,"updatedAt":622},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[607,610,613,616,619],{"name":608,"slug":609,"type":15},"Frontend","frontend",{"name":611,"slug":612,"type":15},"React","react",{"name":614,"slug":615,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":617,"slug":618,"type":15},"UI Components","ui-components",{"name":620,"slug":621,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":624,"name":624,"fn":625,"description":626,"org":627,"tags":628,"stars":25,"repoUrl":26,"updatedAt":642},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[629,632,635,638,641],{"name":630,"slug":631,"type":15},"AI Infrastructure","ai-infrastructure",{"name":633,"slug":634,"type":15},"Cost Optimization","cost-optimization",{"name":636,"slug":637,"type":15},"LLM","llm",{"name":639,"slug":640,"type":15},"Performance","performance",{"name":620,"slug":621,"type":15},"2026-04-06T18:40:44.377464",{"slug":644,"name":644,"fn":645,"description":646,"org":647,"tags":648,"stars":25,"repoUrl":26,"updatedAt":654},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[649,650,653],{"name":633,"slug":634,"type":15},{"name":651,"slug":652,"type":15},"Database","database",{"name":636,"slug":637,"type":15},"2026-04-06T18:41:08.513425",600,{"items":657,"total":854},[658,679,702,719,735,752,771,783,797,811,823,838],{"slug":659,"name":659,"fn":660,"description":661,"org":662,"tags":663,"stars":676,"repoUrl":677,"updatedAt":678},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[664,667,670,673],{"name":665,"slug":666,"type":15},"Documents","documents",{"name":668,"slug":669,"type":15},"Healthcare","healthcare",{"name":671,"slug":672,"type":15},"Insurance","insurance",{"name":674,"slug":675,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":680,"name":680,"fn":681,"description":682,"org":683,"tags":684,"stars":699,"repoUrl":700,"updatedAt":701},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[685,688,690,693,696],{"name":686,"slug":687,"type":15},".NET","dotnet",{"name":689,"slug":680,"type":15},"ASP.NET Core",{"name":691,"slug":692,"type":15},"Blazor","blazor",{"name":694,"slug":695,"type":15},"C#","csharp",{"name":697,"slug":698,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":703,"name":703,"fn":704,"description":705,"org":706,"tags":707,"stars":699,"repoUrl":700,"updatedAt":718},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[708,711,714,717],{"name":709,"slug":710,"type":15},"Apps SDK","apps-sdk",{"name":712,"slug":713,"type":15},"ChatGPT","chatgpt",{"name":715,"slug":716,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":720,"name":720,"fn":721,"description":722,"org":723,"tags":724,"stars":699,"repoUrl":700,"updatedAt":734},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[725,728,731],{"name":726,"slug":727,"type":15},"API Development","api-development",{"name":729,"slug":730,"type":15},"CLI","cli",{"name":732,"slug":733,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":736,"name":736,"fn":737,"description":738,"org":739,"tags":740,"stars":699,"repoUrl":700,"updatedAt":751},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[741,744,747,748],{"name":742,"slug":743,"type":15},"Cloudflare","cloudflare",{"name":745,"slug":746,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":589,"slug":590,"type":15},{"name":749,"slug":750,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":753,"name":753,"fn":754,"description":755,"org":756,"tags":757,"stars":699,"repoUrl":700,"updatedAt":770},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[758,761,764,767],{"name":759,"slug":760,"type":15},"Productivity","productivity",{"name":762,"slug":763,"type":15},"Project Management","project-management",{"name":765,"slug":766,"type":15},"Strategy","strategy",{"name":768,"slug":769,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":772,"name":772,"fn":773,"description":774,"org":775,"tags":776,"stars":699,"repoUrl":700,"updatedAt":782},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[777,778,780,781],{"name":551,"slug":552,"type":15},{"name":779,"slug":772,"type":15},"Figma",{"name":608,"slug":609,"type":15},{"name":715,"slug":716,"type":15},"2026-04-12T05:06:47.939943",{"slug":784,"name":784,"fn":785,"description":786,"org":787,"tags":788,"stars":699,"repoUrl":700,"updatedAt":796},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[789,790,793,794,795],{"name":551,"slug":552,"type":15},{"name":791,"slug":792,"type":15},"Design System","design-system",{"name":779,"slug":772,"type":15},{"name":608,"slug":609,"type":15},{"name":617,"slug":618,"type":15},"2026-05-10T05:59:52.971881",{"slug":798,"name":798,"fn":799,"description":800,"org":801,"tags":802,"stars":699,"repoUrl":700,"updatedAt":810},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[803,804,805,808,809],{"name":551,"slug":552,"type":15},{"name":791,"slug":792,"type":15},{"name":806,"slug":807,"type":15},"Documentation","documentation",{"name":779,"slug":772,"type":15},{"name":608,"slug":609,"type":15},"2026-05-16T06:07:47.821474",{"slug":812,"name":812,"fn":813,"description":814,"org":815,"tags":816,"stars":699,"repoUrl":700,"updatedAt":822},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[817,818,819,820,821],{"name":551,"slug":552,"type":15},{"name":779,"slug":772,"type":15},{"name":608,"slug":609,"type":15},{"name":617,"slug":618,"type":15},{"name":697,"slug":698,"type":15},"2026-05-16T06:07:40.583615",{"slug":824,"name":824,"fn":825,"description":826,"org":827,"tags":828,"stars":699,"repoUrl":700,"updatedAt":837},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[829,832,833,836],{"name":830,"slug":831,"type":15},"Animation","animation",{"name":732,"slug":733,"type":15},{"name":834,"slug":835,"type":15},"Creative","creative",{"name":551,"slug":552,"type":15},"2026-05-02T05:31:48.48485",{"slug":839,"name":839,"fn":840,"description":841,"org":842,"tags":843,"stars":699,"repoUrl":700,"updatedAt":853},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[844,845,846,849,852],{"name":834,"slug":835,"type":15},{"name":551,"slug":552,"type":15},{"name":847,"slug":848,"type":15},"Image Generation","image-generation",{"name":850,"slug":851,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675]