[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-anthropic-view-pdf":3,"mdc-ftuic-key":31,"related-repo-anthropic-view-pdf":1396,"related-org-anthropic-view-pdf":1515},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":26,"sourceUrl":29,"mdContent":30},"view-pdf","view and annotate PDF files","Interactive PDF viewer. Use when the user wants to open, show, or view a PDF and collaborate on it visually — annotate, highlight, stamp, fill form fields, place signature\u002Finitials, or review markup together. Not for summarization or text extraction (use native Read instead).",{"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],{"name":14,"slug":15,"type":16},"PDF","pdf","tag",{"name":18,"slug":19,"type":16},"Documents","documents",22885,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fknowledge-work-plugins","2026-04-06T17:57:44.275738",null,2736,[],{"repoUrl":21,"stars":20,"forks":24,"topics":27,"description":28},[],"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\u002Fpdf-viewer\u002Fskills\u002Fview-pdf","---\nname: view-pdf\ndescription: Interactive PDF viewer. Use when the user wants to open, show, or view a PDF and collaborate on it visually — annotate, highlight, stamp, fill form fields, place signature\u002Finitials, or review markup together. Not for summarization or text extraction (use native Read instead).\n---\n\n# PDF Viewer — Interactive Document Workflows\n\nYou have access to a local PDF server that renders documents in a live\nviewer and lets you annotate, fill forms, and place signatures with\nreal-time visual feedback.\n\n## When to use this skill\n\n**Use the PDF viewer when the user wants interactivity:**\n- \"Show me this contract\" \u002F \"Open this paper\"\n- \"Highlight the key terms and let me review\"\n- \"Help me fill out this form\"\n- \"Sign this on page 3\" \u002F \"Add my initials to each page\"\n- \"Stamp this CONFIDENTIAL\" \u002F \"Mark this as approved\"\n- \"Walk me through this document and annotate the important parts\"\n\n**Do NOT use the viewer for pure ingestion:**\n- \"Summarize this PDF\" → use the native Read tool directly\n- \"What does page 5 say?\" → use Read\n- \"Extract the table from section 3\" → use Read\n\nThe viewer's value is showing the user the document and collaborating\non markup — not streaming text back to you.\n\n## Tools\n\n### `list_pdfs`\nList available local PDFs and allowed local directories. No arguments.\n\n### `display_pdf`\nOpen a PDF in the interactive viewer. **Call once per document.**\n- `url` — local file path or HTTPS URL\n- `page` — initial page (optional, default 1)\n- `elicit_form_inputs` — if `true`, prompts the user to fill form\n  fields before displaying (use for interactive form-filling)\n\nReturns a `viewUUID` — pass this to every `interact` call. Calling\n`display_pdf` again creates a **separate** viewer; interact calls with\nthe new UUID won't reach the one the user is looking at.\n\nAlso returns `formFields` (name, type, page, bounding box) if the PDF\nhas fillable fields — use these coordinates for signature placement.\n\n### `interact`\nAll follow-up actions after `display_pdf`. Pass `viewUUID` plus one or\nmore commands. **Batch multiple commands in one call** via the\n`commands` array — they run sequentially. End batches with\n`get_screenshot` to verify changes visually.\n\n**Annotation actions:**\n- `add_annotations` — add markup (see types below)\n- `update_annotations` — modify existing (id + type required)\n- `remove_annotations` — delete by id array\n- `highlight_text` — auto-find text by query and highlight it\n  (preferred over manual rects for text markup)\n\n**Navigation actions:**\n- `navigate` (page), `search` (query), `find` (query, silent),\n  `search_navigate` (matchIndex), `zoom` (scale 0.5–3.0)\n\n**Extraction actions:**\n- `get_text` — extract text from page ranges (max 20 pages). Use for\n  reading content to decide what to annotate, NOT for summarization.\n- `get_screenshot` — capture a page as an image (verify your annotations)\n\n**Form action:**\n- `fill_form` — fill named fields: `fields: [{name, value}, ...]`\n\n## Annotation Types\n\nAll annotations need `id` (unique string), `type`, `page` (1-indexed).\nCoordinates are PDF points (1\u002F72 inch), origin **top-left**, Y increases\ndownward. US Letter is 612×792pt.\n\n| Type | Key properties | Use for |\n|------|----------------|---------|\n| `highlight` | `rects`, `color?`, `content?` | Mark important text |\n| `underline` | `rects`, `color?` | Emphasize terms |\n| `strikethrough` | `rects`, `color?` | Mark deletions |\n| `note` | `x`, `y`, `content`, `color?` | Sticky-note comments |\n| `freetext` | `x`, `y`, `content`, `fontSize?` | Visible text on page |\n| `rectangle` | `x`, `y`, `width`, `height`, `color?`, `fillColor?` | Box regions |\n| `circle` | `x`, `y`, `width`, `height`, `color?`, `fillColor?` | Circle regions |\n| `line` | `x1`, `y1`, `x2`, `y2`, `color?` | Draw lines\u002Farrows |\n| `stamp` | `x`, `y`, `label`, `color?`, `rotation?` | APPROVED, DRAFT, CONFIDENTIAL, etc. |\n| `image` | `imageUrl`, `x?`, `y?`, `width?`, `height?` | **Signatures, initials**, logos |\n\n**Image annotations** accept a local file path or HTTPS URL (no data:\nURIs). Dimensions auto-detected if omitted. Users can also drag & drop\nimages directly onto the viewer.\n\n## Interactive Workflows\n\n### Collaborative annotation (AI-driven)\n1. `display_pdf` to open the document\n2. `interact` → `get_text` on relevant page range to understand content\n3. Propose a batch of annotations to the user (describe what you'll mark)\n4. On approval, `interact` → `add_annotations` + `get_screenshot`\n5. Show the user, ask for edits, iterate\n6. When done, remind them they can download the annotated PDF from the\n   viewer toolbar\n\n### Form filling (visual, not programmatic)\nUnlike headless form tools, this gives the user **live visual\nfeedback** and handles forms with cryptic\u002Funnamed fields where the\nlabel is printed on the page rather than in field metadata.\n\n1. `display_pdf` — inspect returned `formFields` (name, type, page,\n   bounding box)\n2. If field names are cryptic (`Text1`, `Field_7`), `get_screenshot`\n   the pages and match bounding boxes to visual labels\n3. Ask the user for values using the **visual** labels, or infer from\n   context\n4. `interact` → `fill_form`, then `get_screenshot` to show the result\n5. User confirms or edits directly in the viewer\n\nFor simple well-labeled forms, `display_pdf` with\n`elicit_form_inputs: true` prompts the user upfront instead.\n\n### Signing (visual, not certified)\n1. Ask for the signature\u002Finitials image path\n2. `display_pdf`, check `formFields` for signature-type fields or ask\n   which page\u002Fposition\n3. `interact` → `add_annotations` with `type: \"image\"` at the target\n   coordinates\n4. `get_screenshot` to confirm placement\n\n**Disclaimer:** This places a visual signature image. It is **not** a\ncertified or cryptographic digital signature.\n\n## Supported Sources\n\n- Local files (paths under client MCP roots)\n- arXiv (`\u002Fabs\u002F` URLs auto-convert to PDF)\n- Any direct HTTPS PDF URL (bioRxiv, Zenodo, OSF, etc. — use the\n  direct PDF link, not the landing page)\n\n## Out of Scope\n\n- **Summarization \u002F text extraction** — use native Read instead\n- **Certified digital signatures** — image stamping only\n- **PDF creation** — this works on existing PDFs only\n",{"data":32,"body":33},{"name":4,"description":6},{"type":34,"children":35},"root",[36,45,51,58,67,102,110,128,133,139,150,155,164,174,218,253,266,274,316,324,371,379,425,433,457,465,485,491,526,1027,1037,1043,1049,1118,1124,1136,1223,1243,1249,1308,1325,1331,1357,1363],{"type":37,"tag":38,"props":39,"children":41},"element","h1",{"id":40},"pdf-viewer-interactive-document-workflows",[42],{"type":43,"value":44},"text","PDF Viewer — Interactive Document Workflows",{"type":37,"tag":46,"props":47,"children":48},"p",{},[49],{"type":43,"value":50},"You have access to a local PDF server that renders documents in a live\nviewer and lets you annotate, fill forms, and place signatures with\nreal-time visual feedback.",{"type":37,"tag":52,"props":53,"children":55},"h2",{"id":54},"when-to-use-this-skill",[56],{"type":43,"value":57},"When to use this skill",{"type":37,"tag":46,"props":59,"children":60},{},[61],{"type":37,"tag":62,"props":63,"children":64},"strong",{},[65],{"type":43,"value":66},"Use the PDF viewer when the user wants interactivity:",{"type":37,"tag":68,"props":69,"children":70},"ul",{},[71,77,82,87,92,97],{"type":37,"tag":72,"props":73,"children":74},"li",{},[75],{"type":43,"value":76},"\"Show me this contract\" \u002F \"Open this paper\"",{"type":37,"tag":72,"props":78,"children":79},{},[80],{"type":43,"value":81},"\"Highlight the key terms and let me review\"",{"type":37,"tag":72,"props":83,"children":84},{},[85],{"type":43,"value":86},"\"Help me fill out this form\"",{"type":37,"tag":72,"props":88,"children":89},{},[90],{"type":43,"value":91},"\"Sign this on page 3\" \u002F \"Add my initials to each page\"",{"type":37,"tag":72,"props":93,"children":94},{},[95],{"type":43,"value":96},"\"Stamp this CONFIDENTIAL\" \u002F \"Mark this as approved\"",{"type":37,"tag":72,"props":98,"children":99},{},[100],{"type":43,"value":101},"\"Walk me through this document and annotate the important parts\"",{"type":37,"tag":46,"props":103,"children":104},{},[105],{"type":37,"tag":62,"props":106,"children":107},{},[108],{"type":43,"value":109},"Do NOT use the viewer for pure ingestion:",{"type":37,"tag":68,"props":111,"children":112},{},[113,118,123],{"type":37,"tag":72,"props":114,"children":115},{},[116],{"type":43,"value":117},"\"Summarize this PDF\" → use the native Read tool directly",{"type":37,"tag":72,"props":119,"children":120},{},[121],{"type":43,"value":122},"\"What does page 5 say?\" → use Read",{"type":37,"tag":72,"props":124,"children":125},{},[126],{"type":43,"value":127},"\"Extract the table from section 3\" → use Read",{"type":37,"tag":46,"props":129,"children":130},{},[131],{"type":43,"value":132},"The viewer's value is showing the user the document and collaborating\non markup — not streaming text back to you.",{"type":37,"tag":52,"props":134,"children":136},{"id":135},"tools",[137],{"type":43,"value":138},"Tools",{"type":37,"tag":140,"props":141,"children":143},"h3",{"id":142},"list_pdfs",[144],{"type":37,"tag":145,"props":146,"children":148},"code",{"className":147},[],[149],{"type":43,"value":142},{"type":37,"tag":46,"props":151,"children":152},{},[153],{"type":43,"value":154},"List available local PDFs and allowed local directories. No arguments.",{"type":37,"tag":140,"props":156,"children":158},{"id":157},"display_pdf",[159],{"type":37,"tag":145,"props":160,"children":162},{"className":161},[],[163],{"type":43,"value":157},{"type":37,"tag":46,"props":165,"children":166},{},[167,169],{"type":43,"value":168},"Open a PDF in the interactive viewer. ",{"type":37,"tag":62,"props":170,"children":171},{},[172],{"type":43,"value":173},"Call once per document.",{"type":37,"tag":68,"props":175,"children":176},{},[177,188,199],{"type":37,"tag":72,"props":178,"children":179},{},[180,186],{"type":37,"tag":145,"props":181,"children":183},{"className":182},[],[184],{"type":43,"value":185},"url",{"type":43,"value":187}," — local file path or HTTPS URL",{"type":37,"tag":72,"props":189,"children":190},{},[191,197],{"type":37,"tag":145,"props":192,"children":194},{"className":193},[],[195],{"type":43,"value":196},"page",{"type":43,"value":198}," — initial page (optional, default 1)",{"type":37,"tag":72,"props":200,"children":201},{},[202,208,210,216],{"type":37,"tag":145,"props":203,"children":205},{"className":204},[],[206],{"type":43,"value":207},"elicit_form_inputs",{"type":43,"value":209}," — if ",{"type":37,"tag":145,"props":211,"children":213},{"className":212},[],[214],{"type":43,"value":215},"true",{"type":43,"value":217},", prompts the user to fill form\nfields before displaying (use for interactive form-filling)",{"type":37,"tag":46,"props":219,"children":220},{},[221,223,229,231,237,239,244,246,251],{"type":43,"value":222},"Returns a ",{"type":37,"tag":145,"props":224,"children":226},{"className":225},[],[227],{"type":43,"value":228},"viewUUID",{"type":43,"value":230}," — pass this to every ",{"type":37,"tag":145,"props":232,"children":234},{"className":233},[],[235],{"type":43,"value":236},"interact",{"type":43,"value":238}," call. Calling\n",{"type":37,"tag":145,"props":240,"children":242},{"className":241},[],[243],{"type":43,"value":157},{"type":43,"value":245}," again creates a ",{"type":37,"tag":62,"props":247,"children":248},{},[249],{"type":43,"value":250},"separate",{"type":43,"value":252}," viewer; interact calls with\nthe new UUID won't reach the one the user is looking at.",{"type":37,"tag":46,"props":254,"children":255},{},[256,258,264],{"type":43,"value":257},"Also returns ",{"type":37,"tag":145,"props":259,"children":261},{"className":260},[],[262],{"type":43,"value":263},"formFields",{"type":43,"value":265}," (name, type, page, bounding box) if the PDF\nhas fillable fields — use these coordinates for signature placement.",{"type":37,"tag":140,"props":267,"children":268},{"id":236},[269],{"type":37,"tag":145,"props":270,"children":272},{"className":271},[],[273],{"type":43,"value":236},{"type":37,"tag":46,"props":275,"children":276},{},[277,279,284,286,291,293,298,300,306,308,314],{"type":43,"value":278},"All follow-up actions after ",{"type":37,"tag":145,"props":280,"children":282},{"className":281},[],[283],{"type":43,"value":157},{"type":43,"value":285},". Pass ",{"type":37,"tag":145,"props":287,"children":289},{"className":288},[],[290],{"type":43,"value":228},{"type":43,"value":292}," plus one or\nmore commands. ",{"type":37,"tag":62,"props":294,"children":295},{},[296],{"type":43,"value":297},"Batch multiple commands in one call",{"type":43,"value":299}," via the\n",{"type":37,"tag":145,"props":301,"children":303},{"className":302},[],[304],{"type":43,"value":305},"commands",{"type":43,"value":307}," array — they run sequentially. End batches with\n",{"type":37,"tag":145,"props":309,"children":311},{"className":310},[],[312],{"type":43,"value":313},"get_screenshot",{"type":43,"value":315}," to verify changes visually.",{"type":37,"tag":46,"props":317,"children":318},{},[319],{"type":37,"tag":62,"props":320,"children":321},{},[322],{"type":43,"value":323},"Annotation actions:",{"type":37,"tag":68,"props":325,"children":326},{},[327,338,349,360],{"type":37,"tag":72,"props":328,"children":329},{},[330,336],{"type":37,"tag":145,"props":331,"children":333},{"className":332},[],[334],{"type":43,"value":335},"add_annotations",{"type":43,"value":337}," — add markup (see types below)",{"type":37,"tag":72,"props":339,"children":340},{},[341,347],{"type":37,"tag":145,"props":342,"children":344},{"className":343},[],[345],{"type":43,"value":346},"update_annotations",{"type":43,"value":348}," — modify existing (id + type required)",{"type":37,"tag":72,"props":350,"children":351},{},[352,358],{"type":37,"tag":145,"props":353,"children":355},{"className":354},[],[356],{"type":43,"value":357},"remove_annotations",{"type":43,"value":359}," — delete by id array",{"type":37,"tag":72,"props":361,"children":362},{},[363,369],{"type":37,"tag":145,"props":364,"children":366},{"className":365},[],[367],{"type":43,"value":368},"highlight_text",{"type":43,"value":370}," — auto-find text by query and highlight it\n(preferred over manual rects for text markup)",{"type":37,"tag":46,"props":372,"children":373},{},[374],{"type":37,"tag":62,"props":375,"children":376},{},[377],{"type":43,"value":378},"Navigation actions:",{"type":37,"tag":68,"props":380,"children":381},{},[382],{"type":37,"tag":72,"props":383,"children":384},{},[385,391,393,399,401,407,409,415,417,423],{"type":37,"tag":145,"props":386,"children":388},{"className":387},[],[389],{"type":43,"value":390},"navigate",{"type":43,"value":392}," (page), ",{"type":37,"tag":145,"props":394,"children":396},{"className":395},[],[397],{"type":43,"value":398},"search",{"type":43,"value":400}," (query), ",{"type":37,"tag":145,"props":402,"children":404},{"className":403},[],[405],{"type":43,"value":406},"find",{"type":43,"value":408}," (query, silent),\n",{"type":37,"tag":145,"props":410,"children":412},{"className":411},[],[413],{"type":43,"value":414},"search_navigate",{"type":43,"value":416}," (matchIndex), ",{"type":37,"tag":145,"props":418,"children":420},{"className":419},[],[421],{"type":43,"value":422},"zoom",{"type":43,"value":424}," (scale 0.5–3.0)",{"type":37,"tag":46,"props":426,"children":427},{},[428],{"type":37,"tag":62,"props":429,"children":430},{},[431],{"type":43,"value":432},"Extraction actions:",{"type":37,"tag":68,"props":434,"children":435},{},[436,447],{"type":37,"tag":72,"props":437,"children":438},{},[439,445],{"type":37,"tag":145,"props":440,"children":442},{"className":441},[],[443],{"type":43,"value":444},"get_text",{"type":43,"value":446}," — extract text from page ranges (max 20 pages). Use for\nreading content to decide what to annotate, NOT for summarization.",{"type":37,"tag":72,"props":448,"children":449},{},[450,455],{"type":37,"tag":145,"props":451,"children":453},{"className":452},[],[454],{"type":43,"value":313},{"type":43,"value":456}," — capture a page as an image (verify your annotations)",{"type":37,"tag":46,"props":458,"children":459},{},[460],{"type":37,"tag":62,"props":461,"children":462},{},[463],{"type":43,"value":464},"Form action:",{"type":37,"tag":68,"props":466,"children":467},{},[468],{"type":37,"tag":72,"props":469,"children":470},{},[471,477,479],{"type":37,"tag":145,"props":472,"children":474},{"className":473},[],[475],{"type":43,"value":476},"fill_form",{"type":43,"value":478}," — fill named fields: ",{"type":37,"tag":145,"props":480,"children":482},{"className":481},[],[483],{"type":43,"value":484},"fields: [{name, value}, ...]",{"type":37,"tag":52,"props":486,"children":488},{"id":487},"annotation-types",[489],{"type":43,"value":490},"Annotation Types",{"type":37,"tag":46,"props":492,"children":493},{},[494,496,502,504,510,512,517,519,524],{"type":43,"value":495},"All annotations need ",{"type":37,"tag":145,"props":497,"children":499},{"className":498},[],[500],{"type":43,"value":501},"id",{"type":43,"value":503}," (unique string), ",{"type":37,"tag":145,"props":505,"children":507},{"className":506},[],[508],{"type":43,"value":509},"type",{"type":43,"value":511},", ",{"type":37,"tag":145,"props":513,"children":515},{"className":514},[],[516],{"type":43,"value":196},{"type":43,"value":518}," (1-indexed).\nCoordinates are PDF points (1\u002F72 inch), origin ",{"type":37,"tag":62,"props":520,"children":521},{},[522],{"type":43,"value":523},"top-left",{"type":43,"value":525},", Y increases\ndownward. US Letter is 612×792pt.",{"type":37,"tag":527,"props":528,"children":529},"table",{},[530,554],{"type":37,"tag":531,"props":532,"children":533},"thead",{},[534],{"type":37,"tag":535,"props":536,"children":537},"tr",{},[538,544,549],{"type":37,"tag":539,"props":540,"children":541},"th",{},[542],{"type":43,"value":543},"Type",{"type":37,"tag":539,"props":545,"children":546},{},[547],{"type":43,"value":548},"Key properties",{"type":37,"tag":539,"props":550,"children":551},{},[552],{"type":43,"value":553},"Use for",{"type":37,"tag":555,"props":556,"children":557},"tbody",{},[558,599,630,661,707,751,809,864,917,968],{"type":37,"tag":535,"props":559,"children":560},{},[561,571,594],{"type":37,"tag":562,"props":563,"children":564},"td",{},[565],{"type":37,"tag":145,"props":566,"children":568},{"className":567},[],[569],{"type":43,"value":570},"highlight",{"type":37,"tag":562,"props":572,"children":573},{},[574,580,581,587,588],{"type":37,"tag":145,"props":575,"children":577},{"className":576},[],[578],{"type":43,"value":579},"rects",{"type":43,"value":511},{"type":37,"tag":145,"props":582,"children":584},{"className":583},[],[585],{"type":43,"value":586},"color?",{"type":43,"value":511},{"type":37,"tag":145,"props":589,"children":591},{"className":590},[],[592],{"type":43,"value":593},"content?",{"type":37,"tag":562,"props":595,"children":596},{},[597],{"type":43,"value":598},"Mark important text",{"type":37,"tag":535,"props":600,"children":601},{},[602,611,625],{"type":37,"tag":562,"props":603,"children":604},{},[605],{"type":37,"tag":145,"props":606,"children":608},{"className":607},[],[609],{"type":43,"value":610},"underline",{"type":37,"tag":562,"props":612,"children":613},{},[614,619,620],{"type":37,"tag":145,"props":615,"children":617},{"className":616},[],[618],{"type":43,"value":579},{"type":43,"value":511},{"type":37,"tag":145,"props":621,"children":623},{"className":622},[],[624],{"type":43,"value":586},{"type":37,"tag":562,"props":626,"children":627},{},[628],{"type":43,"value":629},"Emphasize terms",{"type":37,"tag":535,"props":631,"children":632},{},[633,642,656],{"type":37,"tag":562,"props":634,"children":635},{},[636],{"type":37,"tag":145,"props":637,"children":639},{"className":638},[],[640],{"type":43,"value":641},"strikethrough",{"type":37,"tag":562,"props":643,"children":644},{},[645,650,651],{"type":37,"tag":145,"props":646,"children":648},{"className":647},[],[649],{"type":43,"value":579},{"type":43,"value":511},{"type":37,"tag":145,"props":652,"children":654},{"className":653},[],[655],{"type":43,"value":586},{"type":37,"tag":562,"props":657,"children":658},{},[659],{"type":43,"value":660},"Mark deletions",{"type":37,"tag":535,"props":662,"children":663},{},[664,673,702],{"type":37,"tag":562,"props":665,"children":666},{},[667],{"type":37,"tag":145,"props":668,"children":670},{"className":669},[],[671],{"type":43,"value":672},"note",{"type":37,"tag":562,"props":674,"children":675},{},[676,682,683,689,690,696,697],{"type":37,"tag":145,"props":677,"children":679},{"className":678},[],[680],{"type":43,"value":681},"x",{"type":43,"value":511},{"type":37,"tag":145,"props":684,"children":686},{"className":685},[],[687],{"type":43,"value":688},"y",{"type":43,"value":511},{"type":37,"tag":145,"props":691,"children":693},{"className":692},[],[694],{"type":43,"value":695},"content",{"type":43,"value":511},{"type":37,"tag":145,"props":698,"children":700},{"className":699},[],[701],{"type":43,"value":586},{"type":37,"tag":562,"props":703,"children":704},{},[705],{"type":43,"value":706},"Sticky-note comments",{"type":37,"tag":535,"props":708,"children":709},{},[710,719,746],{"type":37,"tag":562,"props":711,"children":712},{},[713],{"type":37,"tag":145,"props":714,"children":716},{"className":715},[],[717],{"type":43,"value":718},"freetext",{"type":37,"tag":562,"props":720,"children":721},{},[722,727,728,733,734,739,740],{"type":37,"tag":145,"props":723,"children":725},{"className":724},[],[726],{"type":43,"value":681},{"type":43,"value":511},{"type":37,"tag":145,"props":729,"children":731},{"className":730},[],[732],{"type":43,"value":688},{"type":43,"value":511},{"type":37,"tag":145,"props":735,"children":737},{"className":736},[],[738],{"type":43,"value":695},{"type":43,"value":511},{"type":37,"tag":145,"props":741,"children":743},{"className":742},[],[744],{"type":43,"value":745},"fontSize?",{"type":37,"tag":562,"props":747,"children":748},{},[749],{"type":43,"value":750},"Visible text on page",{"type":37,"tag":535,"props":752,"children":753},{},[754,763,804],{"type":37,"tag":562,"props":755,"children":756},{},[757],{"type":37,"tag":145,"props":758,"children":760},{"className":759},[],[761],{"type":43,"value":762},"rectangle",{"type":37,"tag":562,"props":764,"children":765},{},[766,771,772,777,778,784,785,791,792,797,798],{"type":37,"tag":145,"props":767,"children":769},{"className":768},[],[770],{"type":43,"value":681},{"type":43,"value":511},{"type":37,"tag":145,"props":773,"children":775},{"className":774},[],[776],{"type":43,"value":688},{"type":43,"value":511},{"type":37,"tag":145,"props":779,"children":781},{"className":780},[],[782],{"type":43,"value":783},"width",{"type":43,"value":511},{"type":37,"tag":145,"props":786,"children":788},{"className":787},[],[789],{"type":43,"value":790},"height",{"type":43,"value":511},{"type":37,"tag":145,"props":793,"children":795},{"className":794},[],[796],{"type":43,"value":586},{"type":43,"value":511},{"type":37,"tag":145,"props":799,"children":801},{"className":800},[],[802],{"type":43,"value":803},"fillColor?",{"type":37,"tag":562,"props":805,"children":806},{},[807],{"type":43,"value":808},"Box regions",{"type":37,"tag":535,"props":810,"children":811},{},[812,821,859],{"type":37,"tag":562,"props":813,"children":814},{},[815],{"type":37,"tag":145,"props":816,"children":818},{"className":817},[],[819],{"type":43,"value":820},"circle",{"type":37,"tag":562,"props":822,"children":823},{},[824,829,830,835,836,841,842,847,848,853,854],{"type":37,"tag":145,"props":825,"children":827},{"className":826},[],[828],{"type":43,"value":681},{"type":43,"value":511},{"type":37,"tag":145,"props":831,"children":833},{"className":832},[],[834],{"type":43,"value":688},{"type":43,"value":511},{"type":37,"tag":145,"props":837,"children":839},{"className":838},[],[840],{"type":43,"value":783},{"type":43,"value":511},{"type":37,"tag":145,"props":843,"children":845},{"className":844},[],[846],{"type":43,"value":790},{"type":43,"value":511},{"type":37,"tag":145,"props":849,"children":851},{"className":850},[],[852],{"type":43,"value":586},{"type":43,"value":511},{"type":37,"tag":145,"props":855,"children":857},{"className":856},[],[858],{"type":43,"value":803},{"type":37,"tag":562,"props":860,"children":861},{},[862],{"type":43,"value":863},"Circle regions",{"type":37,"tag":535,"props":865,"children":866},{},[867,876,912],{"type":37,"tag":562,"props":868,"children":869},{},[870],{"type":37,"tag":145,"props":871,"children":873},{"className":872},[],[874],{"type":43,"value":875},"line",{"type":37,"tag":562,"props":877,"children":878},{},[879,885,886,892,893,899,900,906,907],{"type":37,"tag":145,"props":880,"children":882},{"className":881},[],[883],{"type":43,"value":884},"x1",{"type":43,"value":511},{"type":37,"tag":145,"props":887,"children":889},{"className":888},[],[890],{"type":43,"value":891},"y1",{"type":43,"value":511},{"type":37,"tag":145,"props":894,"children":896},{"className":895},[],[897],{"type":43,"value":898},"x2",{"type":43,"value":511},{"type":37,"tag":145,"props":901,"children":903},{"className":902},[],[904],{"type":43,"value":905},"y2",{"type":43,"value":511},{"type":37,"tag":145,"props":908,"children":910},{"className":909},[],[911],{"type":43,"value":586},{"type":37,"tag":562,"props":913,"children":914},{},[915],{"type":43,"value":916},"Draw lines\u002Farrows",{"type":37,"tag":535,"props":918,"children":919},{},[920,929,963],{"type":37,"tag":562,"props":921,"children":922},{},[923],{"type":37,"tag":145,"props":924,"children":926},{"className":925},[],[927],{"type":43,"value":928},"stamp",{"type":37,"tag":562,"props":930,"children":931},{},[932,937,938,943,944,950,951,956,957],{"type":37,"tag":145,"props":933,"children":935},{"className":934},[],[936],{"type":43,"value":681},{"type":43,"value":511},{"type":37,"tag":145,"props":939,"children":941},{"className":940},[],[942],{"type":43,"value":688},{"type":43,"value":511},{"type":37,"tag":145,"props":945,"children":947},{"className":946},[],[948],{"type":43,"value":949},"label",{"type":43,"value":511},{"type":37,"tag":145,"props":952,"children":954},{"className":953},[],[955],{"type":43,"value":586},{"type":43,"value":511},{"type":37,"tag":145,"props":958,"children":960},{"className":959},[],[961],{"type":43,"value":962},"rotation?",{"type":37,"tag":562,"props":964,"children":965},{},[966],{"type":43,"value":967},"APPROVED, DRAFT, CONFIDENTIAL, etc.",{"type":37,"tag":535,"props":969,"children":970},{},[971,980,1017],{"type":37,"tag":562,"props":972,"children":973},{},[974],{"type":37,"tag":145,"props":975,"children":977},{"className":976},[],[978],{"type":43,"value":979},"image",{"type":37,"tag":562,"props":981,"children":982},{},[983,989,990,996,997,1003,1004,1010,1011],{"type":37,"tag":145,"props":984,"children":986},{"className":985},[],[987],{"type":43,"value":988},"imageUrl",{"type":43,"value":511},{"type":37,"tag":145,"props":991,"children":993},{"className":992},[],[994],{"type":43,"value":995},"x?",{"type":43,"value":511},{"type":37,"tag":145,"props":998,"children":1000},{"className":999},[],[1001],{"type":43,"value":1002},"y?",{"type":43,"value":511},{"type":37,"tag":145,"props":1005,"children":1007},{"className":1006},[],[1008],{"type":43,"value":1009},"width?",{"type":43,"value":511},{"type":37,"tag":145,"props":1012,"children":1014},{"className":1013},[],[1015],{"type":43,"value":1016},"height?",{"type":37,"tag":562,"props":1018,"children":1019},{},[1020,1025],{"type":37,"tag":62,"props":1021,"children":1022},{},[1023],{"type":43,"value":1024},"Signatures, initials",{"type":43,"value":1026},", logos",{"type":37,"tag":46,"props":1028,"children":1029},{},[1030,1035],{"type":37,"tag":62,"props":1031,"children":1032},{},[1033],{"type":43,"value":1034},"Image annotations",{"type":43,"value":1036}," accept a local file path or HTTPS URL (no data:\nURIs). Dimensions auto-detected if omitted. Users can also drag & drop\nimages directly onto the viewer.",{"type":37,"tag":52,"props":1038,"children":1040},{"id":1039},"interactive-workflows",[1041],{"type":43,"value":1042},"Interactive Workflows",{"type":37,"tag":140,"props":1044,"children":1046},{"id":1045},"collaborative-annotation-ai-driven",[1047],{"type":43,"value":1048},"Collaborative annotation (AI-driven)",{"type":37,"tag":1050,"props":1051,"children":1052},"ol",{},[1053,1063,1080,1085,1108,1113],{"type":37,"tag":72,"props":1054,"children":1055},{},[1056,1061],{"type":37,"tag":145,"props":1057,"children":1059},{"className":1058},[],[1060],{"type":43,"value":157},{"type":43,"value":1062}," to open the document",{"type":37,"tag":72,"props":1064,"children":1065},{},[1066,1071,1073,1078],{"type":37,"tag":145,"props":1067,"children":1069},{"className":1068},[],[1070],{"type":43,"value":236},{"type":43,"value":1072}," → ",{"type":37,"tag":145,"props":1074,"children":1076},{"className":1075},[],[1077],{"type":43,"value":444},{"type":43,"value":1079}," on relevant page range to understand content",{"type":37,"tag":72,"props":1081,"children":1082},{},[1083],{"type":43,"value":1084},"Propose a batch of annotations to the user (describe what you'll mark)",{"type":37,"tag":72,"props":1086,"children":1087},{},[1088,1090,1095,1096,1101,1103],{"type":43,"value":1089},"On approval, ",{"type":37,"tag":145,"props":1091,"children":1093},{"className":1092},[],[1094],{"type":43,"value":236},{"type":43,"value":1072},{"type":37,"tag":145,"props":1097,"children":1099},{"className":1098},[],[1100],{"type":43,"value":335},{"type":43,"value":1102}," + ",{"type":37,"tag":145,"props":1104,"children":1106},{"className":1105},[],[1107],{"type":43,"value":313},{"type":37,"tag":72,"props":1109,"children":1110},{},[1111],{"type":43,"value":1112},"Show the user, ask for edits, iterate",{"type":37,"tag":72,"props":1114,"children":1115},{},[1116],{"type":43,"value":1117},"When done, remind them they can download the annotated PDF from the\nviewer toolbar",{"type":37,"tag":140,"props":1119,"children":1121},{"id":1120},"form-filling-visual-not-programmatic",[1122],{"type":43,"value":1123},"Form filling (visual, not programmatic)",{"type":37,"tag":46,"props":1125,"children":1126},{},[1127,1129,1134],{"type":43,"value":1128},"Unlike headless form tools, this gives the user ",{"type":37,"tag":62,"props":1130,"children":1131},{},[1132],{"type":43,"value":1133},"live visual\nfeedback",{"type":43,"value":1135}," and handles forms with cryptic\u002Funnamed fields where the\nlabel is printed on the page rather than in field metadata.",{"type":37,"tag":1050,"props":1137,"children":1138},{},[1139,1156,1183,1195,1218],{"type":37,"tag":72,"props":1140,"children":1141},{},[1142,1147,1149,1154],{"type":37,"tag":145,"props":1143,"children":1145},{"className":1144},[],[1146],{"type":43,"value":157},{"type":43,"value":1148}," — inspect returned ",{"type":37,"tag":145,"props":1150,"children":1152},{"className":1151},[],[1153],{"type":43,"value":263},{"type":43,"value":1155}," (name, type, page,\nbounding box)",{"type":37,"tag":72,"props":1157,"children":1158},{},[1159,1161,1167,1168,1174,1176,1181],{"type":43,"value":1160},"If field names are cryptic (",{"type":37,"tag":145,"props":1162,"children":1164},{"className":1163},[],[1165],{"type":43,"value":1166},"Text1",{"type":43,"value":511},{"type":37,"tag":145,"props":1169,"children":1171},{"className":1170},[],[1172],{"type":43,"value":1173},"Field_7",{"type":43,"value":1175},"), ",{"type":37,"tag":145,"props":1177,"children":1179},{"className":1178},[],[1180],{"type":43,"value":313},{"type":43,"value":1182},"\nthe pages and match bounding boxes to visual labels",{"type":37,"tag":72,"props":1184,"children":1185},{},[1186,1188,1193],{"type":43,"value":1187},"Ask the user for values using the ",{"type":37,"tag":62,"props":1189,"children":1190},{},[1191],{"type":43,"value":1192},"visual",{"type":43,"value":1194}," labels, or infer from\ncontext",{"type":37,"tag":72,"props":1196,"children":1197},{},[1198,1203,1204,1209,1211,1216],{"type":37,"tag":145,"props":1199,"children":1201},{"className":1200},[],[1202],{"type":43,"value":236},{"type":43,"value":1072},{"type":37,"tag":145,"props":1205,"children":1207},{"className":1206},[],[1208],{"type":43,"value":476},{"type":43,"value":1210},", then ",{"type":37,"tag":145,"props":1212,"children":1214},{"className":1213},[],[1215],{"type":43,"value":313},{"type":43,"value":1217}," to show the result",{"type":37,"tag":72,"props":1219,"children":1220},{},[1221],{"type":43,"value":1222},"User confirms or edits directly in the viewer",{"type":37,"tag":46,"props":1224,"children":1225},{},[1226,1228,1233,1235,1241],{"type":43,"value":1227},"For simple well-labeled forms, ",{"type":37,"tag":145,"props":1229,"children":1231},{"className":1230},[],[1232],{"type":43,"value":157},{"type":43,"value":1234}," with\n",{"type":37,"tag":145,"props":1236,"children":1238},{"className":1237},[],[1239],{"type":43,"value":1240},"elicit_form_inputs: true",{"type":43,"value":1242}," prompts the user upfront instead.",{"type":37,"tag":140,"props":1244,"children":1246},{"id":1245},"signing-visual-not-certified",[1247],{"type":43,"value":1248},"Signing (visual, not certified)",{"type":37,"tag":1050,"props":1250,"children":1251},{},[1252,1257,1274,1298],{"type":37,"tag":72,"props":1253,"children":1254},{},[1255],{"type":43,"value":1256},"Ask for the signature\u002Finitials image path",{"type":37,"tag":72,"props":1258,"children":1259},{},[1260,1265,1267,1272],{"type":37,"tag":145,"props":1261,"children":1263},{"className":1262},[],[1264],{"type":43,"value":157},{"type":43,"value":1266},", check ",{"type":37,"tag":145,"props":1268,"children":1270},{"className":1269},[],[1271],{"type":43,"value":263},{"type":43,"value":1273}," for signature-type fields or ask\nwhich page\u002Fposition",{"type":37,"tag":72,"props":1275,"children":1276},{},[1277,1282,1283,1288,1290,1296],{"type":37,"tag":145,"props":1278,"children":1280},{"className":1279},[],[1281],{"type":43,"value":236},{"type":43,"value":1072},{"type":37,"tag":145,"props":1284,"children":1286},{"className":1285},[],[1287],{"type":43,"value":335},{"type":43,"value":1289}," with ",{"type":37,"tag":145,"props":1291,"children":1293},{"className":1292},[],[1294],{"type":43,"value":1295},"type: \"image\"",{"type":43,"value":1297}," at the target\ncoordinates",{"type":37,"tag":72,"props":1299,"children":1300},{},[1301,1306],{"type":37,"tag":145,"props":1302,"children":1304},{"className":1303},[],[1305],{"type":43,"value":313},{"type":43,"value":1307}," to confirm placement",{"type":37,"tag":46,"props":1309,"children":1310},{},[1311,1316,1318,1323],{"type":37,"tag":62,"props":1312,"children":1313},{},[1314],{"type":43,"value":1315},"Disclaimer:",{"type":43,"value":1317}," This places a visual signature image. It is ",{"type":37,"tag":62,"props":1319,"children":1320},{},[1321],{"type":43,"value":1322},"not",{"type":43,"value":1324}," a\ncertified or cryptographic digital signature.",{"type":37,"tag":52,"props":1326,"children":1328},{"id":1327},"supported-sources",[1329],{"type":43,"value":1330},"Supported Sources",{"type":37,"tag":68,"props":1332,"children":1333},{},[1334,1339,1352],{"type":37,"tag":72,"props":1335,"children":1336},{},[1337],{"type":43,"value":1338},"Local files (paths under client MCP roots)",{"type":37,"tag":72,"props":1340,"children":1341},{},[1342,1344,1350],{"type":43,"value":1343},"arXiv (",{"type":37,"tag":145,"props":1345,"children":1347},{"className":1346},[],[1348],{"type":43,"value":1349},"\u002Fabs\u002F",{"type":43,"value":1351}," URLs auto-convert to PDF)",{"type":37,"tag":72,"props":1353,"children":1354},{},[1355],{"type":43,"value":1356},"Any direct HTTPS PDF URL (bioRxiv, Zenodo, OSF, etc. — use the\ndirect PDF link, not the landing page)",{"type":37,"tag":52,"props":1358,"children":1360},{"id":1359},"out-of-scope",[1361],{"type":43,"value":1362},"Out of Scope",{"type":37,"tag":68,"props":1364,"children":1365},{},[1366,1376,1386],{"type":37,"tag":72,"props":1367,"children":1368},{},[1369,1374],{"type":37,"tag":62,"props":1370,"children":1371},{},[1372],{"type":43,"value":1373},"Summarization \u002F text extraction",{"type":43,"value":1375}," — use native Read instead",{"type":37,"tag":72,"props":1377,"children":1378},{},[1379,1384],{"type":37,"tag":62,"props":1380,"children":1381},{},[1382],{"type":43,"value":1383},"Certified digital signatures",{"type":43,"value":1385}," — image stamping only",{"type":37,"tag":72,"props":1387,"children":1388},{},[1389,1394],{"type":37,"tag":62,"props":1390,"children":1391},{},[1392],{"type":43,"value":1393},"PDF creation",{"type":43,"value":1395}," — this works on existing PDFs only",{"items":1397,"total":1514},[1398,1414,1430,1446,1464,1483,1499],{"slug":1399,"name":1399,"fn":1400,"description":1401,"org":1402,"tags":1403,"stars":20,"repoUrl":21,"updatedAt":1413},"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},[1404,1407,1410],{"name":1405,"slug":1406,"type":16},"Accessibility","accessibility",{"name":1408,"slug":1409,"type":16},"Design","design",{"name":1411,"slug":1412,"type":16},"WCAG","wcag","2026-04-06T17:58:05.682394",{"slug":1415,"name":1415,"fn":1416,"description":1417,"org":1418,"tags":1419,"stars":20,"repoUrl":21,"updatedAt":1429},"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},[1420,1423,1426],{"name":1421,"slug":1422,"type":16},"CRM","crm",{"name":1424,"slug":1425,"type":16},"Research","research",{"name":1427,"slug":1428,"type":16},"Sales","sales","2026-04-06T17:56:41.410418",{"slug":1431,"name":1431,"fn":1432,"description":1433,"org":1434,"tags":1435,"stars":20,"repoUrl":21,"updatedAt":1445},"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},[1436,1439,1442],{"name":1437,"slug":1438,"type":16},"Analytics","analytics",{"name":1440,"slug":1441,"type":16},"Data Analysis","data-analysis",{"name":1443,"slug":1444,"type":16},"SQL","sql","2026-04-06T17:57:21.593647",{"slug":1447,"name":1447,"fn":1448,"description":1449,"org":1450,"tags":1451,"stars":20,"repoUrl":21,"updatedAt":1463},"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},[1452,1455,1457,1460],{"name":1453,"slug":1454,"type":16},"ADR","adr",{"name":1456,"slug":1447,"type":16},"Architecture",{"name":1458,"slug":1459,"type":16},"Documentation","documentation",{"name":1461,"slug":1462,"type":16},"Engineering","engineering","2026-04-06T17:57:49.26444",{"slug":1465,"name":1465,"fn":1466,"description":1467,"org":1468,"tags":1469,"stars":20,"repoUrl":21,"updatedAt":1482},"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},[1470,1473,1476,1479],{"name":1471,"slug":1472,"type":16},"Audit","audit",{"name":1474,"slug":1475,"type":16},"Finance","finance",{"name":1477,"slug":1478,"type":16},"Regulatory Compliance","regulatory-compliance",{"name":1480,"slug":1481,"type":16},"SOX","sox","2026-04-06T17:57:36.714815",{"slug":1484,"name":1484,"fn":1485,"description":1486,"org":1487,"tags":1488,"stars":20,"repoUrl":21,"updatedAt":1498},"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},[1489,1492,1495],{"name":1490,"slug":1491,"type":16},"Branding","branding",{"name":1493,"slug":1494,"type":16},"Marketing","marketing",{"name":1496,"slug":1497,"type":16},"Writing","writing","2026-04-06T17:58:19.548331",{"slug":1500,"name":1500,"fn":1501,"description":1502,"org":1503,"tags":1504,"stars":20,"repoUrl":21,"updatedAt":1513},"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},[1505,1506,1509,1512],{"name":1490,"slug":1491,"type":16},{"name":1507,"slug":1508,"type":16},"Communications","communications",{"name":1510,"slug":1511,"type":16},"Content Creation","content-creation",{"name":1496,"slug":1497,"type":16},"2026-04-06T18:00:23.528956",200,{"items":1516,"total":1689},[1517,1536,1548,1558,1577,1588,1607,1627,1637,1652,1660,1673],{"slug":1518,"name":1518,"fn":1519,"description":1520,"org":1521,"tags":1522,"stars":1533,"repoUrl":1534,"updatedAt":1535},"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},[1523,1526,1527,1530],{"name":1524,"slug":1525,"type":16},"Creative","creative",{"name":1408,"slug":1409,"type":16},{"name":1528,"slug":1529,"type":16},"Generative Art","generative-art",{"name":1531,"slug":1532,"type":16},"JavaScript","javascript",161831,"https:\u002F\u002Fgithub.com\u002Fanthropics\u002Fskills","2026-04-06T17:56:15.455818",{"slug":1537,"name":1537,"fn":1538,"description":1539,"org":1540,"tags":1541,"stars":1533,"repoUrl":1534,"updatedAt":1547},"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},[1542,1543,1544],{"name":1490,"slug":1491,"type":16},{"name":1408,"slug":1409,"type":16},{"name":1545,"slug":1546,"type":16},"Typography","typography","2026-04-06T17:56:05.042852",{"slug":1549,"name":1549,"fn":1550,"description":1551,"org":1552,"tags":1553,"stars":1533,"repoUrl":1534,"updatedAt":1557},"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},[1554,1555,1556],{"name":1524,"slug":1525,"type":16},{"name":1408,"slug":1409,"type":16},{"name":14,"slug":15,"type":16},"2026-04-06T17:56:03.794732",{"slug":1559,"name":1559,"fn":1560,"description":1561,"org":1562,"tags":1563,"stars":1533,"repoUrl":1534,"updatedAt":1576},"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},[1564,1567,1568,1571,1573],{"name":1565,"slug":1566,"type":16},"Agents","agents",{"name":9,"slug":8,"type":16},{"name":1569,"slug":1570,"type":16},"Anthropic SDK","anthropic-sdk",{"name":1572,"slug":1559,"type":16},"Claude API",{"name":1574,"slug":1575,"type":16},"LLM","llm","2026-07-28T05:36:08.213335",{"slug":1578,"name":1578,"fn":1579,"description":1580,"org":1581,"tags":1582,"stars":1533,"repoUrl":1534,"updatedAt":1587},"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},[1583,1584],{"name":1458,"slug":1459,"type":16},{"name":1585,"slug":1586,"type":16},"Technical Writing","technical-writing","2026-04-06T17:56:14.18897",{"slug":1589,"name":1589,"fn":1590,"description":1591,"org":1592,"tags":1593,"stars":1533,"repoUrl":1534,"updatedAt":1606},"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},[1594,1595,1597,1600,1603],{"name":18,"slug":19,"type":16},{"name":1596,"slug":1589,"type":16},"DOCX",{"name":1598,"slug":1599,"type":16},"Office","office",{"name":1601,"slug":1602,"type":16},"Templates","templates",{"name":1604,"slug":1605,"type":16},"Word","word","2026-07-18T05:16:23.136271",{"slug":1608,"name":1608,"fn":1609,"description":1610,"org":1611,"tags":1612,"stars":1533,"repoUrl":1534,"updatedAt":1626},"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},[1613,1614,1617,1620,1623],{"name":1408,"slug":1409,"type":16},{"name":1615,"slug":1616,"type":16},"Frontend","frontend",{"name":1618,"slug":1619,"type":16},"React","react",{"name":1621,"slug":1622,"type":16},"Tailwind CSS","tailwind-css",{"name":1624,"slug":1625,"type":16},"UI Components","ui-components","2026-04-06T17:56:16.723469",{"slug":1628,"name":1628,"fn":1629,"description":1630,"org":1631,"tags":1632,"stars":1533,"repoUrl":1534,"updatedAt":1636},"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},[1633,1634,1635],{"name":1507,"slug":1508,"type":16},{"name":1601,"slug":1602,"type":16},{"name":1496,"slug":1497,"type":16},"2026-04-06T17:56:20.695522",{"slug":1638,"name":1638,"fn":1639,"description":1640,"org":1641,"tags":1642,"stars":1533,"repoUrl":1534,"updatedAt":1651},"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},[1643,1644,1647,1648],{"name":1565,"slug":1566,"type":16},{"name":1645,"slug":1646,"type":16},"API Development","api-development",{"name":1574,"slug":1575,"type":16},{"name":1649,"slug":1650,"type":16},"MCP","mcp","2026-04-06T17:56:10.357665",{"slug":15,"name":15,"fn":1653,"description":1654,"org":1655,"tags":1656,"stars":1533,"repoUrl":1534,"updatedAt":1659},"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},[1657,1658],{"name":18,"slug":19,"type":16},{"name":14,"slug":15,"type":16},"2026-04-06T17:56:02.483316",{"slug":1661,"name":1661,"fn":1662,"description":1663,"org":1664,"tags":1665,"stars":1533,"repoUrl":1534,"updatedAt":1672},"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},[1666,1669],{"name":1667,"slug":1668,"type":16},"PowerPoint","powerpoint",{"name":1670,"slug":1671,"type":16},"Presentations","presentations","2026-07-18T05:16:24.1471",{"slug":1674,"name":1674,"fn":1675,"description":1676,"org":1677,"tags":1678,"stars":1533,"repoUrl":1534,"updatedAt":1688},"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},[1679,1680,1681,1684,1687],{"name":1565,"slug":1566,"type":16},{"name":1458,"slug":1459,"type":16},{"name":1682,"slug":1683,"type":16},"Evals","evals",{"name":1685,"slug":1686,"type":16},"Performance","performance",{"name":1585,"slug":1586,"type":16},"2026-04-19T06:45:40.804",490]