[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-create-viz":3,"mdc-qxxwc-key":37,"related-org-anthropic-create-viz":933,"related-repo-anthropic-create-viz":1122},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":26,"repoUrl":27,"updatedAt":28,"license":29,"forks":30,"topics":31,"repo":32,"sourceUrl":35,"mdContent":36},"create-viz","create publication-quality visualizations","Create publication-quality visualizations with Python. Use when turning query results or a DataFrame into a chart, selecting the right chart type for a trend or comparison, generating a plot for a report or presentation, or needing an interactive chart with hover and zoom.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"anthropic","Anthropic","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fanthropic.png","anthropics",[13,17,20,23],{"name":14,"slug":15,"type":16},"Data Visualization","data-visualization","tag",{"name":18,"slug":19,"type":16},"Python","python",{"name":21,"slug":22,"type":16},"Charts","charts",{"name":24,"slug":25,"type":16},"Analytics","analytics",22885,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins","2026-04-06T17:57:22.828723",null,2736,[],{"repoUrl":27,"stars":26,"forks":30,"topics":33,"description":34},[],"Open source repository of plugins primarily intended for knowledge workers to use in Claude Cowork","https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins\u002Ftree\u002FHEAD\u002Fdata\u002Fskills\u002Fcreate-viz","---\nname: create-viz\ndescription: Create publication-quality visualizations with Python. Use when turning query results or a DataFrame into a chart, selecting the right chart type for a trend or comparison, generating a plot for a report or presentation, or needing an interactive chart with hover and zoom.\nargument-hint: \"\u003Cdata source> [chart type]\"\n---\n\n# \u002Fcreate-viz - Create Visualizations\n\n> If you see unfamiliar placeholders or need to check which tools are connected, see [CONNECTORS.md](..\u002F..\u002FCONNECTORS.md).\n\nCreate publication-quality data visualizations using Python. Generates charts from data with best practices for clarity, accuracy, and design.\n\n## Usage\n\n```\n\u002Fcreate-viz \u003Cdata source> [chart type] [additional instructions]\n```\n\n## Workflow\n\n### 1. Understand the Request\n\nDetermine:\n\n- **Data source**: Query results, pasted data, CSV\u002FExcel file, or data to be queried\n- **Chart type**: Explicitly requested or needs to be recommended\n- **Purpose**: Exploration, presentation, report, dashboard component\n- **Audience**: Technical team, executives, external stakeholders\n\n### 2. Get the Data\n\n**If data warehouse is connected and data needs querying:**\n1. Write and execute the query\n2. Load results into a pandas DataFrame\n\n**If data is pasted or uploaded:**\n1. Parse the data into a pandas DataFrame\n2. Clean and prepare as needed (type conversions, null handling)\n\n**If data is from a previous analysis in the conversation:**\n1. Reference the existing data\n\n### 3. Select Chart Type\n\nIf the user didn't specify a chart type, recommend one based on the data and question:\n\n| Data Relationship | Recommended Chart |\n|---|---|\n| Trend over time | Line chart |\n| Comparison across categories | Bar chart (horizontal if many categories) |\n| Part-to-whole composition | Stacked bar or area chart (avoid pie charts unless \u003C6 categories) |\n| Distribution of values | Histogram or box plot |\n| Correlation between two variables | Scatter plot |\n| Two-variable comparison over time | Dual-axis line or grouped bar |\n| Geographic data | Choropleth map |\n| Ranking | Horizontal bar chart |\n| Flow or process | Sankey diagram |\n| Matrix of relationships | Heatmap |\n\nExplain the recommendation briefly if the user didn't specify.\n\n### 4. Generate the Visualization\n\nWrite Python code using one of these libraries based on the need:\n\n- **matplotlib + seaborn**: Best for static, publication-quality charts. Default choice.\n- **plotly**: Best for interactive charts or when the user requests interactivity.\n\n**Code requirements:**\n\n```python\nimport matplotlib.pyplot as plt\nimport seaborn as sns\nimport pandas as pd\n\n# Set professional style\nplt.style.use('seaborn-v0_8-whitegrid')\nsns.set_palette(\"husl\")\n\n# Create figure with appropriate size\nfig, ax = plt.subplots(figsize=(10, 6))\n\n# [chart-specific code]\n\n# Always include:\nax.set_title('Clear, Descriptive Title', fontsize=14, fontweight='bold')\nax.set_xlabel('X-Axis Label', fontsize=11)\nax.set_ylabel('Y-Axis Label', fontsize=11)\n\n# Format numbers appropriately\n# - Percentages: '45.2%' not '0.452'\n# - Currency: '$1.2M' not '1200000'\n# - Large numbers: '2.3K' or '1.5M' not '2300' or '1500000'\n\n# Remove chart junk\nax.spines['top'].set_visible(False)\nax.spines['right'].set_visible(False)\n\nplt.tight_layout()\nplt.savefig('chart_name.png', dpi=150, bbox_inches='tight')\nplt.show()\n```\n\n### 5. Apply Design Best Practices\n\n**Color:**\n- Use a consistent, colorblind-friendly palette\n- Use color meaningfully (not decoratively)\n- Highlight the key data point or trend with a contrasting color\n- Grey out less important reference data\n\n**Typography:**\n- Descriptive title that states the insight, not just the metric (e.g., \"Revenue grew 23% YoY\" not \"Revenue by Month\")\n- Readable axis labels (not rotated 90 degrees if avoidable)\n- Data labels on key points when they add clarity\n\n**Layout:**\n- Appropriate whitespace and margins\n- Legend placement that doesn't obscure data\n- Sorted categories by value (not alphabetically) unless there's a natural order\n\n**Accuracy:**\n- Y-axis starts at zero for bar charts\n- No misleading axis breaks without clear notation\n- Consistent scales when comparing panels\n- Appropriate precision (don't show 10 decimal places)\n\n### 6. Save and Present\n\n1. Save the chart as a PNG file with descriptive name\n2. Display the chart to the user\n3. Provide the code used so they can modify it\n4. Suggest variations (different chart type, different grouping, zoomed time range)\n\n## Examples\n\n```\n\u002Fcreate-viz Show monthly revenue for the last 12 months as a line chart with the trend highlighted\n```\n\n```\n\u002Fcreate-viz Here's our NPS data by product: [pastes data]. Create a horizontal bar chart ranking products by score.\n```\n\n```\n\u002Fcreate-viz Query the orders table and create a heatmap of order volume by day-of-week and hour\n```\n\n## Tips\n\n- If you want interactive charts (hover, zoom, filter), mention \"interactive\" and Claude will use plotly\n- Specify \"presentation\" if you need larger fonts and higher contrast\n- You can request multiple charts at once (e.g., \"create a 2x2 grid of charts showing...\")\n- Charts are saved to your current directory as PNG files\n",{"data":38,"body":40},{"name":4,"description":6,"argument-hint":39},"\u003Cdata source> [chart type]",{"type":41,"children":42},"root",[43,52,71,76,83,96,102,109,114,160,166,174,188,196,209,217,225,231,236,394,399,405,410,433,441,716,722,730,753,761,779,787,805,813,836,842,865,871,880,889,898,904,927],{"type":44,"tag":45,"props":46,"children":48},"element","h1",{"id":47},"create-viz-create-visualizations",[49],{"type":50,"value":51},"text","\u002Fcreate-viz - Create Visualizations",{"type":44,"tag":53,"props":54,"children":55},"blockquote",{},[56],{"type":44,"tag":57,"props":58,"children":59},"p",{},[60,62,69],{"type":50,"value":61},"If you see unfamiliar placeholders or need to check which tools are connected, see ",{"type":44,"tag":63,"props":64,"children":66},"a",{"href":65},"..\u002F..\u002FCONNECTORS.md",[67],{"type":50,"value":68},"CONNECTORS.md",{"type":50,"value":70},".",{"type":44,"tag":57,"props":72,"children":73},{},[74],{"type":50,"value":75},"Create publication-quality data visualizations using Python. Generates charts from data with best practices for clarity, accuracy, and design.",{"type":44,"tag":77,"props":78,"children":80},"h2",{"id":79},"usage",[81],{"type":50,"value":82},"Usage",{"type":44,"tag":84,"props":85,"children":89},"pre",{"className":86,"code":88,"language":50},[87],"language-text","\u002Fcreate-viz \u003Cdata source> [chart type] [additional instructions]\n",[90],{"type":44,"tag":91,"props":92,"children":94},"code",{"__ignoreMap":93},"",[95],{"type":50,"value":88},{"type":44,"tag":77,"props":97,"children":99},{"id":98},"workflow",[100],{"type":50,"value":101},"Workflow",{"type":44,"tag":103,"props":104,"children":106},"h3",{"id":105},"_1-understand-the-request",[107],{"type":50,"value":108},"1. Understand the Request",{"type":44,"tag":57,"props":110,"children":111},{},[112],{"type":50,"value":113},"Determine:",{"type":44,"tag":115,"props":116,"children":117},"ul",{},[118,130,140,150],{"type":44,"tag":119,"props":120,"children":121},"li",{},[122,128],{"type":44,"tag":123,"props":124,"children":125},"strong",{},[126],{"type":50,"value":127},"Data source",{"type":50,"value":129},": Query results, pasted data, CSV\u002FExcel file, or data to be queried",{"type":44,"tag":119,"props":131,"children":132},{},[133,138],{"type":44,"tag":123,"props":134,"children":135},{},[136],{"type":50,"value":137},"Chart type",{"type":50,"value":139},": Explicitly requested or needs to be recommended",{"type":44,"tag":119,"props":141,"children":142},{},[143,148],{"type":44,"tag":123,"props":144,"children":145},{},[146],{"type":50,"value":147},"Purpose",{"type":50,"value":149},": Exploration, presentation, report, dashboard component",{"type":44,"tag":119,"props":151,"children":152},{},[153,158],{"type":44,"tag":123,"props":154,"children":155},{},[156],{"type":50,"value":157},"Audience",{"type":50,"value":159},": Technical team, executives, external stakeholders",{"type":44,"tag":103,"props":161,"children":163},{"id":162},"_2-get-the-data",[164],{"type":50,"value":165},"2. Get the Data",{"type":44,"tag":57,"props":167,"children":168},{},[169],{"type":44,"tag":123,"props":170,"children":171},{},[172],{"type":50,"value":173},"If data warehouse is connected and data needs querying:",{"type":44,"tag":175,"props":176,"children":177},"ol",{},[178,183],{"type":44,"tag":119,"props":179,"children":180},{},[181],{"type":50,"value":182},"Write and execute the query",{"type":44,"tag":119,"props":184,"children":185},{},[186],{"type":50,"value":187},"Load results into a pandas DataFrame",{"type":44,"tag":57,"props":189,"children":190},{},[191],{"type":44,"tag":123,"props":192,"children":193},{},[194],{"type":50,"value":195},"If data is pasted or uploaded:",{"type":44,"tag":175,"props":197,"children":198},{},[199,204],{"type":44,"tag":119,"props":200,"children":201},{},[202],{"type":50,"value":203},"Parse the data into a pandas DataFrame",{"type":44,"tag":119,"props":205,"children":206},{},[207],{"type":50,"value":208},"Clean and prepare as needed (type conversions, null handling)",{"type":44,"tag":57,"props":210,"children":211},{},[212],{"type":44,"tag":123,"props":213,"children":214},{},[215],{"type":50,"value":216},"If data is from a previous analysis in the conversation:",{"type":44,"tag":175,"props":218,"children":219},{},[220],{"type":44,"tag":119,"props":221,"children":222},{},[223],{"type":50,"value":224},"Reference the existing data",{"type":44,"tag":103,"props":226,"children":228},{"id":227},"_3-select-chart-type",[229],{"type":50,"value":230},"3. Select Chart Type",{"type":44,"tag":57,"props":232,"children":233},{},[234],{"type":50,"value":235},"If the user didn't specify a chart type, recommend one based on the data and question:",{"type":44,"tag":237,"props":238,"children":239},"table",{},[240,259],{"type":44,"tag":241,"props":242,"children":243},"thead",{},[244],{"type":44,"tag":245,"props":246,"children":247},"tr",{},[248,254],{"type":44,"tag":249,"props":250,"children":251},"th",{},[252],{"type":50,"value":253},"Data Relationship",{"type":44,"tag":249,"props":255,"children":256},{},[257],{"type":50,"value":258},"Recommended Chart",{"type":44,"tag":260,"props":261,"children":262},"tbody",{},[263,277,290,303,316,329,342,355,368,381],{"type":44,"tag":245,"props":264,"children":265},{},[266,272],{"type":44,"tag":267,"props":268,"children":269},"td",{},[270],{"type":50,"value":271},"Trend over time",{"type":44,"tag":267,"props":273,"children":274},{},[275],{"type":50,"value":276},"Line chart",{"type":44,"tag":245,"props":278,"children":279},{},[280,285],{"type":44,"tag":267,"props":281,"children":282},{},[283],{"type":50,"value":284},"Comparison across categories",{"type":44,"tag":267,"props":286,"children":287},{},[288],{"type":50,"value":289},"Bar chart (horizontal if many categories)",{"type":44,"tag":245,"props":291,"children":292},{},[293,298],{"type":44,"tag":267,"props":294,"children":295},{},[296],{"type":50,"value":297},"Part-to-whole composition",{"type":44,"tag":267,"props":299,"children":300},{},[301],{"type":50,"value":302},"Stacked bar or area chart (avoid pie charts unless \u003C6 categories)",{"type":44,"tag":245,"props":304,"children":305},{},[306,311],{"type":44,"tag":267,"props":307,"children":308},{},[309],{"type":50,"value":310},"Distribution of values",{"type":44,"tag":267,"props":312,"children":313},{},[314],{"type":50,"value":315},"Histogram or box plot",{"type":44,"tag":245,"props":317,"children":318},{},[319,324],{"type":44,"tag":267,"props":320,"children":321},{},[322],{"type":50,"value":323},"Correlation between two variables",{"type":44,"tag":267,"props":325,"children":326},{},[327],{"type":50,"value":328},"Scatter plot",{"type":44,"tag":245,"props":330,"children":331},{},[332,337],{"type":44,"tag":267,"props":333,"children":334},{},[335],{"type":50,"value":336},"Two-variable comparison over time",{"type":44,"tag":267,"props":338,"children":339},{},[340],{"type":50,"value":341},"Dual-axis line or grouped bar",{"type":44,"tag":245,"props":343,"children":344},{},[345,350],{"type":44,"tag":267,"props":346,"children":347},{},[348],{"type":50,"value":349},"Geographic data",{"type":44,"tag":267,"props":351,"children":352},{},[353],{"type":50,"value":354},"Choropleth map",{"type":44,"tag":245,"props":356,"children":357},{},[358,363],{"type":44,"tag":267,"props":359,"children":360},{},[361],{"type":50,"value":362},"Ranking",{"type":44,"tag":267,"props":364,"children":365},{},[366],{"type":50,"value":367},"Horizontal bar chart",{"type":44,"tag":245,"props":369,"children":370},{},[371,376],{"type":44,"tag":267,"props":372,"children":373},{},[374],{"type":50,"value":375},"Flow or process",{"type":44,"tag":267,"props":377,"children":378},{},[379],{"type":50,"value":380},"Sankey diagram",{"type":44,"tag":245,"props":382,"children":383},{},[384,389],{"type":44,"tag":267,"props":385,"children":386},{},[387],{"type":50,"value":388},"Matrix of relationships",{"type":44,"tag":267,"props":390,"children":391},{},[392],{"type":50,"value":393},"Heatmap",{"type":44,"tag":57,"props":395,"children":396},{},[397],{"type":50,"value":398},"Explain the recommendation briefly if the user didn't specify.",{"type":44,"tag":103,"props":400,"children":402},{"id":401},"_4-generate-the-visualization",[403],{"type":50,"value":404},"4. Generate the Visualization",{"type":44,"tag":57,"props":406,"children":407},{},[408],{"type":50,"value":409},"Write Python code using one of these libraries based on the need:",{"type":44,"tag":115,"props":411,"children":412},{},[413,423],{"type":44,"tag":119,"props":414,"children":415},{},[416,421],{"type":44,"tag":123,"props":417,"children":418},{},[419],{"type":50,"value":420},"matplotlib + seaborn",{"type":50,"value":422},": Best for static, publication-quality charts. Default choice.",{"type":44,"tag":119,"props":424,"children":425},{},[426,431],{"type":44,"tag":123,"props":427,"children":428},{},[429],{"type":50,"value":430},"plotly",{"type":50,"value":432},": Best for interactive charts or when the user requests interactivity.",{"type":44,"tag":57,"props":434,"children":435},{},[436],{"type":44,"tag":123,"props":437,"children":438},{},[439],{"type":50,"value":440},"Code requirements:",{"type":44,"tag":84,"props":442,"children":445},{"className":443,"code":444,"language":19,"meta":93,"style":93},"language-python shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import matplotlib.pyplot as plt\nimport seaborn as sns\nimport pandas as pd\n\n# Set professional style\nplt.style.use('seaborn-v0_8-whitegrid')\nsns.set_palette(\"husl\")\n\n# Create figure with appropriate size\nfig, ax = plt.subplots(figsize=(10, 6))\n\n# [chart-specific code]\n\n# Always include:\nax.set_title('Clear, Descriptive Title', fontsize=14, fontweight='bold')\nax.set_xlabel('X-Axis Label', fontsize=11)\nax.set_ylabel('Y-Axis Label', fontsize=11)\n\n# Format numbers appropriately\n# - Percentages: '45.2%' not '0.452'\n# - Currency: '$1.2M' not '1200000'\n# - Large numbers: '2.3K' or '1.5M' not '2300' or '1500000'\n\n# Remove chart junk\nax.spines['top'].set_visible(False)\nax.spines['right'].set_visible(False)\n\nplt.tight_layout()\nplt.savefig('chart_name.png', dpi=150, bbox_inches='tight')\nplt.show()\n",[446],{"type":44,"tag":91,"props":447,"children":448},{"__ignoreMap":93},[449,460,469,478,488,497,506,515,523,532,541,549,558,566,575,584,593,602,610,619,628,637,646,654,663,672,681,689,698,707],{"type":44,"tag":450,"props":451,"children":454},"span",{"class":452,"line":453},"line",1,[455],{"type":44,"tag":450,"props":456,"children":457},{},[458],{"type":50,"value":459},"import matplotlib.pyplot as plt\n",{"type":44,"tag":450,"props":461,"children":463},{"class":452,"line":462},2,[464],{"type":44,"tag":450,"props":465,"children":466},{},[467],{"type":50,"value":468},"import seaborn as sns\n",{"type":44,"tag":450,"props":470,"children":472},{"class":452,"line":471},3,[473],{"type":44,"tag":450,"props":474,"children":475},{},[476],{"type":50,"value":477},"import pandas as pd\n",{"type":44,"tag":450,"props":479,"children":481},{"class":452,"line":480},4,[482],{"type":44,"tag":450,"props":483,"children":485},{"emptyLinePlaceholder":484},true,[486],{"type":50,"value":487},"\n",{"type":44,"tag":450,"props":489,"children":491},{"class":452,"line":490},5,[492],{"type":44,"tag":450,"props":493,"children":494},{},[495],{"type":50,"value":496},"# Set professional style\n",{"type":44,"tag":450,"props":498,"children":500},{"class":452,"line":499},6,[501],{"type":44,"tag":450,"props":502,"children":503},{},[504],{"type":50,"value":505},"plt.style.use('seaborn-v0_8-whitegrid')\n",{"type":44,"tag":450,"props":507,"children":509},{"class":452,"line":508},7,[510],{"type":44,"tag":450,"props":511,"children":512},{},[513],{"type":50,"value":514},"sns.set_palette(\"husl\")\n",{"type":44,"tag":450,"props":516,"children":518},{"class":452,"line":517},8,[519],{"type":44,"tag":450,"props":520,"children":521},{"emptyLinePlaceholder":484},[522],{"type":50,"value":487},{"type":44,"tag":450,"props":524,"children":526},{"class":452,"line":525},9,[527],{"type":44,"tag":450,"props":528,"children":529},{},[530],{"type":50,"value":531},"# Create figure with appropriate size\n",{"type":44,"tag":450,"props":533,"children":535},{"class":452,"line":534},10,[536],{"type":44,"tag":450,"props":537,"children":538},{},[539],{"type":50,"value":540},"fig, ax = plt.subplots(figsize=(10, 6))\n",{"type":44,"tag":450,"props":542,"children":544},{"class":452,"line":543},11,[545],{"type":44,"tag":450,"props":546,"children":547},{"emptyLinePlaceholder":484},[548],{"type":50,"value":487},{"type":44,"tag":450,"props":550,"children":552},{"class":452,"line":551},12,[553],{"type":44,"tag":450,"props":554,"children":555},{},[556],{"type":50,"value":557},"# [chart-specific code]\n",{"type":44,"tag":450,"props":559,"children":561},{"class":452,"line":560},13,[562],{"type":44,"tag":450,"props":563,"children":564},{"emptyLinePlaceholder":484},[565],{"type":50,"value":487},{"type":44,"tag":450,"props":567,"children":569},{"class":452,"line":568},14,[570],{"type":44,"tag":450,"props":571,"children":572},{},[573],{"type":50,"value":574},"# Always include:\n",{"type":44,"tag":450,"props":576,"children":578},{"class":452,"line":577},15,[579],{"type":44,"tag":450,"props":580,"children":581},{},[582],{"type":50,"value":583},"ax.set_title('Clear, Descriptive Title', fontsize=14, fontweight='bold')\n",{"type":44,"tag":450,"props":585,"children":587},{"class":452,"line":586},16,[588],{"type":44,"tag":450,"props":589,"children":590},{},[591],{"type":50,"value":592},"ax.set_xlabel('X-Axis Label', fontsize=11)\n",{"type":44,"tag":450,"props":594,"children":596},{"class":452,"line":595},17,[597],{"type":44,"tag":450,"props":598,"children":599},{},[600],{"type":50,"value":601},"ax.set_ylabel('Y-Axis Label', fontsize=11)\n",{"type":44,"tag":450,"props":603,"children":605},{"class":452,"line":604},18,[606],{"type":44,"tag":450,"props":607,"children":608},{"emptyLinePlaceholder":484},[609],{"type":50,"value":487},{"type":44,"tag":450,"props":611,"children":613},{"class":452,"line":612},19,[614],{"type":44,"tag":450,"props":615,"children":616},{},[617],{"type":50,"value":618},"# Format numbers appropriately\n",{"type":44,"tag":450,"props":620,"children":622},{"class":452,"line":621},20,[623],{"type":44,"tag":450,"props":624,"children":625},{},[626],{"type":50,"value":627},"# - Percentages: '45.2%' not '0.452'\n",{"type":44,"tag":450,"props":629,"children":631},{"class":452,"line":630},21,[632],{"type":44,"tag":450,"props":633,"children":634},{},[635],{"type":50,"value":636},"# - Currency: '$1.2M' not '1200000'\n",{"type":44,"tag":450,"props":638,"children":640},{"class":452,"line":639},22,[641],{"type":44,"tag":450,"props":642,"children":643},{},[644],{"type":50,"value":645},"# - Large numbers: '2.3K' or '1.5M' not '2300' or '1500000'\n",{"type":44,"tag":450,"props":647,"children":649},{"class":452,"line":648},23,[650],{"type":44,"tag":450,"props":651,"children":652},{"emptyLinePlaceholder":484},[653],{"type":50,"value":487},{"type":44,"tag":450,"props":655,"children":657},{"class":452,"line":656},24,[658],{"type":44,"tag":450,"props":659,"children":660},{},[661],{"type":50,"value":662},"# Remove chart junk\n",{"type":44,"tag":450,"props":664,"children":666},{"class":452,"line":665},25,[667],{"type":44,"tag":450,"props":668,"children":669},{},[670],{"type":50,"value":671},"ax.spines['top'].set_visible(False)\n",{"type":44,"tag":450,"props":673,"children":675},{"class":452,"line":674},26,[676],{"type":44,"tag":450,"props":677,"children":678},{},[679],{"type":50,"value":680},"ax.spines['right'].set_visible(False)\n",{"type":44,"tag":450,"props":682,"children":684},{"class":452,"line":683},27,[685],{"type":44,"tag":450,"props":686,"children":687},{"emptyLinePlaceholder":484},[688],{"type":50,"value":487},{"type":44,"tag":450,"props":690,"children":692},{"class":452,"line":691},28,[693],{"type":44,"tag":450,"props":694,"children":695},{},[696],{"type":50,"value":697},"plt.tight_layout()\n",{"type":44,"tag":450,"props":699,"children":701},{"class":452,"line":700},29,[702],{"type":44,"tag":450,"props":703,"children":704},{},[705],{"type":50,"value":706},"plt.savefig('chart_name.png', dpi=150, bbox_inches='tight')\n",{"type":44,"tag":450,"props":708,"children":710},{"class":452,"line":709},30,[711],{"type":44,"tag":450,"props":712,"children":713},{},[714],{"type":50,"value":715},"plt.show()\n",{"type":44,"tag":103,"props":717,"children":719},{"id":718},"_5-apply-design-best-practices",[720],{"type":50,"value":721},"5. Apply Design Best Practices",{"type":44,"tag":57,"props":723,"children":724},{},[725],{"type":44,"tag":123,"props":726,"children":727},{},[728],{"type":50,"value":729},"Color:",{"type":44,"tag":115,"props":731,"children":732},{},[733,738,743,748],{"type":44,"tag":119,"props":734,"children":735},{},[736],{"type":50,"value":737},"Use a consistent, colorblind-friendly palette",{"type":44,"tag":119,"props":739,"children":740},{},[741],{"type":50,"value":742},"Use color meaningfully (not decoratively)",{"type":44,"tag":119,"props":744,"children":745},{},[746],{"type":50,"value":747},"Highlight the key data point or trend with a contrasting color",{"type":44,"tag":119,"props":749,"children":750},{},[751],{"type":50,"value":752},"Grey out less important reference data",{"type":44,"tag":57,"props":754,"children":755},{},[756],{"type":44,"tag":123,"props":757,"children":758},{},[759],{"type":50,"value":760},"Typography:",{"type":44,"tag":115,"props":762,"children":763},{},[764,769,774],{"type":44,"tag":119,"props":765,"children":766},{},[767],{"type":50,"value":768},"Descriptive title that states the insight, not just the metric (e.g., \"Revenue grew 23% YoY\" not \"Revenue by Month\")",{"type":44,"tag":119,"props":770,"children":771},{},[772],{"type":50,"value":773},"Readable axis labels (not rotated 90 degrees if avoidable)",{"type":44,"tag":119,"props":775,"children":776},{},[777],{"type":50,"value":778},"Data labels on key points when they add clarity",{"type":44,"tag":57,"props":780,"children":781},{},[782],{"type":44,"tag":123,"props":783,"children":784},{},[785],{"type":50,"value":786},"Layout:",{"type":44,"tag":115,"props":788,"children":789},{},[790,795,800],{"type":44,"tag":119,"props":791,"children":792},{},[793],{"type":50,"value":794},"Appropriate whitespace and margins",{"type":44,"tag":119,"props":796,"children":797},{},[798],{"type":50,"value":799},"Legend placement that doesn't obscure data",{"type":44,"tag":119,"props":801,"children":802},{},[803],{"type":50,"value":804},"Sorted categories by value (not alphabetically) unless there's a natural order",{"type":44,"tag":57,"props":806,"children":807},{},[808],{"type":44,"tag":123,"props":809,"children":810},{},[811],{"type":50,"value":812},"Accuracy:",{"type":44,"tag":115,"props":814,"children":815},{},[816,821,826,831],{"type":44,"tag":119,"props":817,"children":818},{},[819],{"type":50,"value":820},"Y-axis starts at zero for bar charts",{"type":44,"tag":119,"props":822,"children":823},{},[824],{"type":50,"value":825},"No misleading axis breaks without clear notation",{"type":44,"tag":119,"props":827,"children":828},{},[829],{"type":50,"value":830},"Consistent scales when comparing panels",{"type":44,"tag":119,"props":832,"children":833},{},[834],{"type":50,"value":835},"Appropriate precision (don't show 10 decimal places)",{"type":44,"tag":103,"props":837,"children":839},{"id":838},"_6-save-and-present",[840],{"type":50,"value":841},"6. Save and Present",{"type":44,"tag":175,"props":843,"children":844},{},[845,850,855,860],{"type":44,"tag":119,"props":846,"children":847},{},[848],{"type":50,"value":849},"Save the chart as a PNG file with descriptive name",{"type":44,"tag":119,"props":851,"children":852},{},[853],{"type":50,"value":854},"Display the chart to the user",{"type":44,"tag":119,"props":856,"children":857},{},[858],{"type":50,"value":859},"Provide the code used so they can modify it",{"type":44,"tag":119,"props":861,"children":862},{},[863],{"type":50,"value":864},"Suggest variations (different chart type, different grouping, zoomed time range)",{"type":44,"tag":77,"props":866,"children":868},{"id":867},"examples",[869],{"type":50,"value":870},"Examples",{"type":44,"tag":84,"props":872,"children":875},{"className":873,"code":874,"language":50},[87],"\u002Fcreate-viz Show monthly revenue for the last 12 months as a line chart with the trend highlighted\n",[876],{"type":44,"tag":91,"props":877,"children":878},{"__ignoreMap":93},[879],{"type":50,"value":874},{"type":44,"tag":84,"props":881,"children":884},{"className":882,"code":883,"language":50},[87],"\u002Fcreate-viz Here's our NPS data by product: [pastes data]. Create a horizontal bar chart ranking products by score.\n",[885],{"type":44,"tag":91,"props":886,"children":887},{"__ignoreMap":93},[888],{"type":50,"value":883},{"type":44,"tag":84,"props":890,"children":893},{"className":891,"code":892,"language":50},[87],"\u002Fcreate-viz Query the orders table and create a heatmap of order volume by day-of-week and hour\n",[894],{"type":44,"tag":91,"props":895,"children":896},{"__ignoreMap":93},[897],{"type":50,"value":892},{"type":44,"tag":77,"props":899,"children":901},{"id":900},"tips",[902],{"type":50,"value":903},"Tips",{"type":44,"tag":115,"props":905,"children":906},{},[907,912,917,922],{"type":44,"tag":119,"props":908,"children":909},{},[910],{"type":50,"value":911},"If you want interactive charts (hover, zoom, filter), mention \"interactive\" and Claude will use plotly",{"type":44,"tag":119,"props":913,"children":914},{},[915],{"type":50,"value":916},"Specify \"presentation\" if you need larger fonts and higher contrast",{"type":44,"tag":119,"props":918,"children":919},{},[920],{"type":50,"value":921},"You can request multiple charts at once (e.g., \"create a 2x2 grid of charts showing...\")",{"type":44,"tag":119,"props":923,"children":924},{},[925],{"type":50,"value":926},"Charts are saved to your current directory as PNG files",{"type":44,"tag":928,"props":929,"children":930},"style",{},[931],{"type":50,"value":932},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":934,"total":1121},[935,956,970,982,1001,1014,1035,1055,1069,1084,1092,1105],{"slug":936,"name":936,"fn":937,"description":938,"org":939,"tags":940,"stars":953,"repoUrl":954,"updatedAt":955},"algorithmic-art","create algorithmic art with p5.js","Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[941,944,947,950],{"name":942,"slug":943,"type":16},"Creative","creative",{"name":945,"slug":946,"type":16},"Design","design",{"name":948,"slug":949,"type":16},"Generative Art","generative-art",{"name":951,"slug":952,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":957,"name":957,"fn":958,"description":959,"org":960,"tags":961,"stars":953,"repoUrl":954,"updatedAt":969},"brand-guidelines","apply Anthropic brand colors and typography","Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[962,965,966],{"name":963,"slug":964,"type":16},"Branding","branding",{"name":945,"slug":946,"type":16},{"name":967,"slug":968,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":971,"name":971,"fn":972,"description":973,"org":974,"tags":975,"stars":953,"repoUrl":954,"updatedAt":981},"canvas-design","create posters and visual art as PNG or PDF","Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[976,977,978],{"name":942,"slug":943,"type":16},{"name":945,"slug":946,"type":16},{"name":979,"slug":980,"type":16},"PDF","pdf","2026-04-06T17:56:03.794732",{"slug":983,"name":983,"fn":984,"description":985,"org":986,"tags":987,"stars":953,"repoUrl":954,"updatedAt":1000},"claude-api","build apps with the Claude API","Reference for the Claude API \u002F Anthropic SDK — model ids, pricing, params, streaming, tool use, MCP, agents, caching, token counting, model migration.\nTRIGGER — read BEFORE opening the target file; don't skip because it \"looks like a one-liner\" — whenever: the prompt names Claude\u002FAnthropic in any form (Claude, Anthropic, Fable, Opus, Sonnet, Haiku, `anthropic`, `@anthropic-ai`, `claude-*`, `us.anthropic.*`, `[1m]`); the user asks about an LLM (pricing\u002Fmodel choice\u002Flimits\u002Fcaching) — never answer from memory; OR the task is LLM-shaped with provider unstated (agent\u002FMCP\u002Ftool-definition\u002Fmulti-agent\u002FRAG\u002FLLM-judge\u002Fcomputer-use; generate\u002Fsummarize\u002Fextract\u002Fclassify\u002Frewrite\u002Fconverse over NL; debugging refusals\u002Fcutoffs\u002Fstreaming\u002Ftool-calls\u002Ftokens).\nSKIP only when another provider is being worked on (overrides all triggers): OpenAI\u002FGPT\u002FGemini\u002FLlama\u002FMistral\u002FCohere\u002FOllama named in the query; OR `grep -rE 'openai|langchain_openai|google.generativeai|genai|mistralai|cohere|ollama'` over the project hits (run this grep FIRST if no provider named — don't Read the file).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[988,991,992,995,997],{"name":989,"slug":990,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":993,"slug":994,"type":16},"Anthropic SDK","anthropic-sdk",{"name":996,"slug":983,"type":16},"Claude API",{"name":998,"slug":999,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":1002,"name":1002,"fn":1003,"description":1004,"org":1005,"tags":1006,"stars":953,"repoUrl":954,"updatedAt":1013},"doc-coauthoring","co-author documentation and technical specs","Guide users through a structured workflow for co-authoring documentation. Use when user wants to write documentation, proposals, technical specs, decision docs, or similar structured content. This workflow helps users efficiently transfer context, refine content through iteration, and verify the doc works for readers. Trigger when user mentions writing docs, creating proposals, drafting specs, or similar documentation tasks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1007,1010],{"name":1008,"slug":1009,"type":16},"Documentation","documentation",{"name":1011,"slug":1012,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":1015,"name":1015,"fn":1016,"description":1017,"org":1018,"tags":1019,"stars":953,"repoUrl":954,"updatedAt":1034},"docx","create and edit Word documents","Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files) or Word templates (.dotx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', '.dotx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when extracting or reorganizing content from .docx or .dotx files, inserting or replacing images in documents, performing find-and-replace in Word files, working with tracked changes or comments, or converting content into a polished Word document. If the user asks for a 'report', 'memo', 'letter', 'template', or similar deliverable as a Word or .docx file, use this skill. Do NOT use for PDFs, spreadsheets, Google Docs, or general coding tasks unrelated to document generation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1020,1023,1025,1028,1031],{"name":1021,"slug":1022,"type":16},"Documents","documents",{"name":1024,"slug":1015,"type":16},"DOCX",{"name":1026,"slug":1027,"type":16},"Office","office",{"name":1029,"slug":1030,"type":16},"Templates","templates",{"name":1032,"slug":1033,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":1036,"name":1036,"fn":1037,"description":1038,"org":1039,"tags":1040,"stars":953,"repoUrl":954,"updatedAt":1054},"frontend-design","design production-grade frontend interfaces","Guidance for distinctive, intentional visual design when building new UI or reshaping an existing one. Helps with aesthetic direction, typography, and making choices that don't read as templated defaults.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1041,1042,1045,1048,1051],{"name":945,"slug":946,"type":16},{"name":1043,"slug":1044,"type":16},"Frontend","frontend",{"name":1046,"slug":1047,"type":16},"React","react",{"name":1049,"slug":1050,"type":16},"Tailwind CSS","tailwind-css",{"name":1052,"slug":1053,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":1056,"name":1056,"fn":1057,"description":1058,"org":1059,"tags":1060,"stars":953,"repoUrl":954,"updatedAt":1068},"internal-comms","write internal company communications","A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1061,1064,1065],{"name":1062,"slug":1063,"type":16},"Communications","communications",{"name":1029,"slug":1030,"type":16},{"name":1066,"slug":1067,"type":16},"Writing","writing","2026-04-06T17:56:20.695522",{"slug":1070,"name":1070,"fn":1071,"description":1072,"org":1073,"tags":1074,"stars":953,"repoUrl":954,"updatedAt":1083},"mcp-builder","build MCP servers","Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node\u002FTypeScript (MCP SDK).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1075,1076,1079,1080],{"name":989,"slug":990,"type":16},{"name":1077,"slug":1078,"type":16},"API Development","api-development",{"name":998,"slug":999,"type":16},{"name":1081,"slug":1082,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":980,"name":980,"fn":1085,"description":1086,"org":1087,"tags":1088,"stars":953,"repoUrl":954,"updatedAt":1091},"read edit and manipulate PDF files","Use this skill whenever the user wants to do anything with PDF files. This includes reading or extracting text\u002Ftables from PDFs, combining or merging multiple PDFs into one, splitting PDFs apart, rotating pages, adding watermarks, creating new PDFs, filling PDF forms, encrypting\u002Fdecrypting PDFs, extracting images, and OCR on scanned PDFs to make them searchable. If the user mentions a .pdf file or asks to produce one, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1089,1090],{"name":1021,"slug":1022,"type":16},{"name":979,"slug":980,"type":16},"2026-04-06T17:56:02.483316",{"slug":1093,"name":1093,"fn":1094,"description":1095,"org":1096,"tags":1097,"stars":953,"repoUrl":954,"updatedAt":1104},"pptx","create and edit PowerPoint presentations","Use this skill any time a .pptx or .potx file is involved in any way — as input, output, or both. This includes: creating slide decks, pitch decks, or presentations; reading, parsing, or extracting text from any .pptx or .potx file (even if the extracted content will be used elsewhere, like in an email or summary); editing, modifying, or updating existing presentations; combining or splitting slide files; working with templates (.potx), layouts, speaker notes, or comments. Trigger whenever the user mentions \"deck,\" \"slides,\" \"presentation,\" or references a .pptx or .potx filename, regardless of what they plan to do with the content afterward. If a .pptx or .potx file needs to be opened, created, or touched, use this skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1098,1101],{"name":1099,"slug":1100,"type":16},"PowerPoint","powerpoint",{"name":1102,"slug":1103,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":1106,"name":1106,"fn":1107,"description":1108,"org":1109,"tags":1110,"stars":953,"repoUrl":954,"updatedAt":1120},"skill-creator","create and optimize agent skills","Create new skills, modify and improve existing skills, and measure skill performance. Use when users want to create a skill from scratch, edit, or optimize an existing skill, run evals to test a skill, benchmark skill performance with variance analysis, or optimize a skill's description for better triggering accuracy.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1111,1112,1113,1116,1119],{"name":989,"slug":990,"type":16},{"name":1008,"slug":1009,"type":16},{"name":1114,"slug":1115,"type":16},"Evals","evals",{"name":1117,"slug":1118,"type":16},"Performance","performance",{"name":1011,"slug":1012,"type":16},"2026-04-19T06:45:40.804",490,{"items":1123,"total":1228},[1124,1138,1154,1168,1184,1203,1215],{"slug":1125,"name":1125,"fn":1126,"description":1127,"org":1128,"tags":1129,"stars":26,"repoUrl":27,"updatedAt":1137},"accessibility-review","run WCAG accessibility audits","Run a WCAG 2.1 AA accessibility audit on a design or page. Trigger with \"audit accessibility\", \"check a11y\", \"is this accessible?\", or when reviewing a design for color contrast, keyboard navigation, touch target size, or screen reader behavior before handoff.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1130,1133,1134],{"name":1131,"slug":1132,"type":16},"Accessibility","accessibility",{"name":945,"slug":946,"type":16},{"name":1135,"slug":1136,"type":16},"WCAG","wcag","2026-04-06T17:58:05.682394",{"slug":1139,"name":1139,"fn":1140,"description":1141,"org":1142,"tags":1143,"stars":26,"repoUrl":27,"updatedAt":1153},"account-research","research accounts for sales intel","Research a company or person and get actionable sales intel. Works standalone with web search, supercharged when you connect enrichment tools or your CRM. Trigger with \"research [company]\", \"look up [person]\", \"intel on [prospect]\", \"who is [name] at [company]\", or \"tell me about [company]\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1144,1147,1150],{"name":1145,"slug":1146,"type":16},"CRM","crm",{"name":1148,"slug":1149,"type":16},"Research","research",{"name":1151,"slug":1152,"type":16},"Sales","sales","2026-04-06T17:56:41.410418",{"slug":1155,"name":1155,"fn":1156,"description":1157,"org":1158,"tags":1159,"stars":26,"repoUrl":27,"updatedAt":1167},"analyze","answer data questions and run analyses","Answer data questions -- from quick lookups to full analyses. Use when looking up a single metric, investigating what's driving a trend or drop, comparing segments over time, or preparing a formal data report for stakeholders.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1160,1161,1164],{"name":24,"slug":25,"type":16},{"name":1162,"slug":1163,"type":16},"Data Analysis","data-analysis",{"name":1165,"slug":1166,"type":16},"SQL","sql","2026-04-06T17:57:21.593647",{"slug":1169,"name":1169,"fn":1170,"description":1171,"org":1172,"tags":1173,"stars":26,"repoUrl":27,"updatedAt":1183},"architecture","create and evaluate architecture decision records","Create or evaluate an architecture decision record (ADR). Use when choosing between technologies (e.g., Kafka vs SQS), documenting a design decision with trade-offs and consequences, reviewing a system design proposal, or designing a new component from requirements and constraints.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1174,1177,1179,1180],{"name":1175,"slug":1176,"type":16},"ADR","adr",{"name":1178,"slug":1169,"type":16},"Architecture",{"name":1008,"slug":1009,"type":16},{"name":1181,"slug":1182,"type":16},"Engineering","engineering","2026-04-06T17:57:49.26444",{"slug":1185,"name":1185,"fn":1186,"description":1187,"org":1188,"tags":1189,"stars":26,"repoUrl":27,"updatedAt":1202},"audit-support","support SOX 404 control testing","Support SOX 404 compliance with control testing methodology, sample selection, and documentation standards. Use when generating testing workpapers, selecting audit samples, classifying control deficiencies, or preparing for internal or external audits.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1190,1193,1196,1199],{"name":1191,"slug":1192,"type":16},"Audit","audit",{"name":1194,"slug":1195,"type":16},"Finance","finance",{"name":1197,"slug":1198,"type":16},"Regulatory Compliance","regulatory-compliance",{"name":1200,"slug":1201,"type":16},"SOX","sox","2026-04-06T17:57:36.714815",{"slug":1204,"name":1204,"fn":1205,"description":1206,"org":1207,"tags":1208,"stars":26,"repoUrl":27,"updatedAt":1214},"brand-review","review content against brand voice","Review content against your brand voice, style guide, and messaging pillars, flagging deviations by severity with specific before\u002Fafter fixes. Use when checking a draft before it ships, when auditing copy for voice consistency and terminology, or when screening for unsubstantiated claims, missing disclaimers, and other legal flags.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1209,1210,1213],{"name":963,"slug":964,"type":16},{"name":1211,"slug":1212,"type":16},"Marketing","marketing",{"name":1066,"slug":1067,"type":16},"2026-04-06T17:58:19.548331",{"slug":1216,"name":1216,"fn":1217,"description":1218,"org":1219,"tags":1220,"stars":26,"repoUrl":27,"updatedAt":1227},"brand-voice-enforcement","enforce brand voice in content","This skill applies brand guidelines to content creation. It should be used when the user asks to \"write an email\", \"draft a proposal\", \"create a pitch deck\", \"write a LinkedIn post\", \"draft a presentation\", \"write a Slack message\", \"draft sales content\", or any content creation request where brand voice should be applied. Also triggers on \"on-brand\", \"brand voice\", \"enforce voice\", \"apply brand guidelines\", \"brand-aligned content\", \"write in our voice\", \"use our brand tone\", \"make this sound like us\", \"rewrite this in our tone\", or \"this doesn't sound on-brand\". Not for generating guidelines from scratch (use guideline-generation) or discovering brand materials (use discover-brand).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1221,1222,1223,1226],{"name":963,"slug":964,"type":16},{"name":1062,"slug":1063,"type":16},{"name":1224,"slug":1225,"type":16},"Content Creation","content-creation",{"name":1066,"slug":1067,"type":16},"2026-04-06T18:00:23.528956",200]