[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-trail-of-bits-openai-pdf":3,"mdc--a89r7-key":34,"related-org-trail-of-bits-openai-pdf":362,"related-repo-trail-of-bits-openai-pdf":524},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":32,"mdContent":33},"openai-pdf","read and process PDF documents","Use when tasks involve reading, creating, or reviewing PDF files where rendering and layout matter; prefer visual checks by rendering pages (Poppler) and use Python tools such as `reportlab`, `pdfplumber`, and `pypdf` for generation and extraction. Originally from OpenAI's curated skills catalog.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"trail-of-bits","Trail of Bits","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Ftrail-of-bits.png","trailofbits",[13,17,20],{"name":14,"slug":15,"type":16},"PDF","pdf","tag",{"name":18,"slug":19,"type":16},"Data Extraction","data-extraction",{"name":21,"slug":22,"type":16},"Documents","documents",460,"https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills-curated","2026-07-18T05:48:15.663086",null,29,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":31},[],"Curated, community-vetted Claude Code plugin marketplace","https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills-curated\u002Ftree\u002FHEAD\u002Fplugins\u002Fopenai-pdf\u002Fskills\u002Fopenai-pdf","---\nname: openai-pdf\ndescription: Use when tasks involve reading, creating, or reviewing PDF files where rendering and layout\n  matter; prefer visual checks by rendering pages (Poppler) and use Python tools such as `reportlab`,\n  `pdfplumber`, and `pypdf` for generation and extraction. Originally from OpenAI's curated skills catalog.\nallowed-tools:\n- Bash\n- Read\n- Grep\n- Glob\n- Write\n- Edit\n---\n\n# PDF Skill\n\n## When to use\n- Read or review PDF content where layout and visuals matter.\n- Create PDFs programmatically with reliable formatting.\n- Validate final rendering before delivery.\n\n## Workflow\n1. Prefer visual review: render PDF pages to PNGs and inspect them.\n   - Use `pdftoppm` if available.\n   - If unavailable, install Poppler or ask the user to review the output locally.\n2. Use `reportlab` to generate PDFs when creating new documents.\n3. Use `pdfplumber` (or `pypdf`) for text extraction and quick checks; do not rely on it for layout fidelity.\n4. After each meaningful update, re-render pages and verify alignment, spacing, and legibility.\n\n## Temp and output conventions\n- Use `tmp\u002Fpdfs\u002F` for intermediate files; delete when done.\n- Write final artifacts under `output\u002Fpdf\u002F` when working in this repo.\n- Keep filenames stable and descriptive.\n\n## Dependencies (install if missing)\nPrefer `uv` for dependency management.\n\nPython packages:\n```\nuv pip install reportlab pdfplumber pypdf\n```\nIf `uv` is unavailable:\n```\npython3 -m pip install reportlab pdfplumber pypdf\n```\nSystem tools (for rendering):\n```\n# macOS (Homebrew)\nbrew install poppler\n\n# Ubuntu\u002FDebian\nsudo apt-get install -y poppler-utils\n```\n\nIf installation isn't possible in this environment, tell the user which dependency is missing and how to install it locally.\n\n## Environment\nNo required environment variables.\n\n## Rendering command\n```\npdftoppm -png $INPUT_PDF $OUTPUT_PREFIX\n```\n\n## Quality expectations\n- Maintain polished visual design: consistent typography, spacing, margins, and section hierarchy.\n- Avoid rendering issues: clipped text, overlapping elements, broken tables, black squares, or unreadable glyphs.\n- Charts, tables, and images must be sharp, aligned, and clearly labeled.\n- Use ASCII hyphens only. Avoid U+2011 (non-breaking hyphen) and other Unicode dashes.\n- Citations and references must be human-readable; never leave tool tokens or placeholder strings.\n\n## Final checks\n- Do not deliver until the latest PNG inspection shows zero visual or formatting defects.\n- Confirm headers\u002Ffooters, page numbering, and section transitions look polished.\n- Keep intermediate files organized or remove them after final approval.\n## When NOT to Use\n\n\u003C!-- TODO: review -->\n\n",{"data":35,"body":43},{"name":4,"description":6,"allowed-tools":36},[37,38,39,40,41,42],"Bash","Read","Grep","Glob","Write","Edit",{"type":44,"children":45},"root",[46,55,62,82,88,156,162,195,201,215,220,232,244,253,258,267,272,278,283,289,298,304,332,338,356],{"type":47,"tag":48,"props":49,"children":51},"element","h1",{"id":50},"pdf-skill",[52],{"type":53,"value":54},"text","PDF Skill",{"type":47,"tag":56,"props":57,"children":59},"h2",{"id":58},"when-to-use",[60],{"type":53,"value":61},"When to use",{"type":47,"tag":63,"props":64,"children":65},"ul",{},[66,72,77],{"type":47,"tag":67,"props":68,"children":69},"li",{},[70],{"type":53,"value":71},"Read or review PDF content where layout and visuals matter.",{"type":47,"tag":67,"props":73,"children":74},{},[75],{"type":53,"value":76},"Create PDFs programmatically with reliable formatting.",{"type":47,"tag":67,"props":78,"children":79},{},[80],{"type":53,"value":81},"Validate final rendering before delivery.",{"type":47,"tag":56,"props":83,"children":85},{"id":84},"workflow",[86],{"type":53,"value":87},"Workflow",{"type":47,"tag":89,"props":90,"children":91},"ol",{},[92,119,131,151],{"type":47,"tag":67,"props":93,"children":94},{},[95,97],{"type":53,"value":96},"Prefer visual review: render PDF pages to PNGs and inspect them.\n",{"type":47,"tag":63,"props":98,"children":99},{},[100,114],{"type":47,"tag":67,"props":101,"children":102},{},[103,105,112],{"type":53,"value":104},"Use ",{"type":47,"tag":106,"props":107,"children":109},"code",{"className":108},[],[110],{"type":53,"value":111},"pdftoppm",{"type":53,"value":113}," if available.",{"type":47,"tag":67,"props":115,"children":116},{},[117],{"type":53,"value":118},"If unavailable, install Poppler or ask the user to review the output locally.",{"type":47,"tag":67,"props":120,"children":121},{},[122,123,129],{"type":53,"value":104},{"type":47,"tag":106,"props":124,"children":126},{"className":125},[],[127],{"type":53,"value":128},"reportlab",{"type":53,"value":130}," to generate PDFs when creating new documents.",{"type":47,"tag":67,"props":132,"children":133},{},[134,135,141,143,149],{"type":53,"value":104},{"type":47,"tag":106,"props":136,"children":138},{"className":137},[],[139],{"type":53,"value":140},"pdfplumber",{"type":53,"value":142}," (or ",{"type":47,"tag":106,"props":144,"children":146},{"className":145},[],[147],{"type":53,"value":148},"pypdf",{"type":53,"value":150},") for text extraction and quick checks; do not rely on it for layout fidelity.",{"type":47,"tag":67,"props":152,"children":153},{},[154],{"type":53,"value":155},"After each meaningful update, re-render pages and verify alignment, spacing, and legibility.",{"type":47,"tag":56,"props":157,"children":159},{"id":158},"temp-and-output-conventions",[160],{"type":53,"value":161},"Temp and output conventions",{"type":47,"tag":63,"props":163,"children":164},{},[165,177,190],{"type":47,"tag":67,"props":166,"children":167},{},[168,169,175],{"type":53,"value":104},{"type":47,"tag":106,"props":170,"children":172},{"className":171},[],[173],{"type":53,"value":174},"tmp\u002Fpdfs\u002F",{"type":53,"value":176}," for intermediate files; delete when done.",{"type":47,"tag":67,"props":178,"children":179},{},[180,182,188],{"type":53,"value":181},"Write final artifacts under ",{"type":47,"tag":106,"props":183,"children":185},{"className":184},[],[186],{"type":53,"value":187},"output\u002Fpdf\u002F",{"type":53,"value":189}," when working in this repo.",{"type":47,"tag":67,"props":191,"children":192},{},[193],{"type":53,"value":194},"Keep filenames stable and descriptive.",{"type":47,"tag":56,"props":196,"children":198},{"id":197},"dependencies-install-if-missing",[199],{"type":53,"value":200},"Dependencies (install if missing)",{"type":47,"tag":202,"props":203,"children":204},"p",{},[205,207,213],{"type":53,"value":206},"Prefer ",{"type":47,"tag":106,"props":208,"children":210},{"className":209},[],[211],{"type":53,"value":212},"uv",{"type":53,"value":214}," for dependency management.",{"type":47,"tag":202,"props":216,"children":217},{},[218],{"type":53,"value":219},"Python packages:",{"type":47,"tag":221,"props":222,"children":226},"pre",{"className":223,"code":225,"language":53},[224],"language-text","uv pip install reportlab pdfplumber pypdf\n",[227],{"type":47,"tag":106,"props":228,"children":230},{"__ignoreMap":229},"",[231],{"type":53,"value":225},{"type":47,"tag":202,"props":233,"children":234},{},[235,237,242],{"type":53,"value":236},"If ",{"type":47,"tag":106,"props":238,"children":240},{"className":239},[],[241],{"type":53,"value":212},{"type":53,"value":243}," is unavailable:",{"type":47,"tag":221,"props":245,"children":248},{"className":246,"code":247,"language":53},[224],"python3 -m pip install reportlab pdfplumber pypdf\n",[249],{"type":47,"tag":106,"props":250,"children":251},{"__ignoreMap":229},[252],{"type":53,"value":247},{"type":47,"tag":202,"props":254,"children":255},{},[256],{"type":53,"value":257},"System tools (for rendering):",{"type":47,"tag":221,"props":259,"children":262},{"className":260,"code":261,"language":53},[224],"# macOS (Homebrew)\nbrew install poppler\n\n# Ubuntu\u002FDebian\nsudo apt-get install -y poppler-utils\n",[263],{"type":47,"tag":106,"props":264,"children":265},{"__ignoreMap":229},[266],{"type":53,"value":261},{"type":47,"tag":202,"props":268,"children":269},{},[270],{"type":53,"value":271},"If installation isn't possible in this environment, tell the user which dependency is missing and how to install it locally.",{"type":47,"tag":56,"props":273,"children":275},{"id":274},"environment",[276],{"type":53,"value":277},"Environment",{"type":47,"tag":202,"props":279,"children":280},{},[281],{"type":53,"value":282},"No required environment variables.",{"type":47,"tag":56,"props":284,"children":286},{"id":285},"rendering-command",[287],{"type":53,"value":288},"Rendering command",{"type":47,"tag":221,"props":290,"children":293},{"className":291,"code":292,"language":53},[224],"pdftoppm -png $INPUT_PDF $OUTPUT_PREFIX\n",[294],{"type":47,"tag":106,"props":295,"children":296},{"__ignoreMap":229},[297],{"type":53,"value":292},{"type":47,"tag":56,"props":299,"children":301},{"id":300},"quality-expectations",[302],{"type":53,"value":303},"Quality expectations",{"type":47,"tag":63,"props":305,"children":306},{},[307,312,317,322,327],{"type":47,"tag":67,"props":308,"children":309},{},[310],{"type":53,"value":311},"Maintain polished visual design: consistent typography, spacing, margins, and section hierarchy.",{"type":47,"tag":67,"props":313,"children":314},{},[315],{"type":53,"value":316},"Avoid rendering issues: clipped text, overlapping elements, broken tables, black squares, or unreadable glyphs.",{"type":47,"tag":67,"props":318,"children":319},{},[320],{"type":53,"value":321},"Charts, tables, and images must be sharp, aligned, and clearly labeled.",{"type":47,"tag":67,"props":323,"children":324},{},[325],{"type":53,"value":326},"Use ASCII hyphens only. Avoid U+2011 (non-breaking hyphen) and other Unicode dashes.",{"type":47,"tag":67,"props":328,"children":329},{},[330],{"type":53,"value":331},"Citations and references must be human-readable; never leave tool tokens or placeholder strings.",{"type":47,"tag":56,"props":333,"children":335},{"id":334},"final-checks",[336],{"type":53,"value":337},"Final checks",{"type":47,"tag":63,"props":339,"children":340},{},[341,346,351],{"type":47,"tag":67,"props":342,"children":343},{},[344],{"type":53,"value":345},"Do not deliver until the latest PNG inspection shows zero visual or formatting defects.",{"type":47,"tag":67,"props":347,"children":348},{},[349],{"type":53,"value":350},"Confirm headers\u002Ffooters, page numbering, and section transitions look polished.",{"type":47,"tag":67,"props":352,"children":353},{},[354],{"type":53,"value":355},"Keep intermediate files organized or remove them after final approval.",{"type":47,"tag":56,"props":357,"children":359},{"id":358},"when-not-to-use",[360],{"type":53,"value":361},"When NOT to Use",{"items":363,"total":523},[364,385,395,415,430,443,455,465,478,489,501,512],{"slug":365,"name":365,"fn":366,"description":367,"org":368,"tags":369,"stars":382,"repoUrl":383,"updatedAt":384},"address-sanitizer","detect memory errors during fuzzing","AddressSanitizer detects memory errors during fuzzing. Use when fuzzing C\u002FC++ code to find buffer overflows and use-after-free bugs.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[370,373,376,379],{"name":371,"slug":372,"type":16},"C#","c",{"name":374,"slug":375,"type":16},"Debugging","debugging",{"name":377,"slug":378,"type":16},"Security","security",{"name":380,"slug":381,"type":16},"Testing","testing",6139,"https:\u002F\u002Fgithub.com\u002Ftrailofbits\u002Fskills","2026-07-17T06:05:14.925095",{"slug":386,"name":386,"fn":387,"description":388,"org":389,"tags":390,"stars":382,"repoUrl":383,"updatedAt":394},"aflpp","perform multi-core fuzzing of C\u002FC++ projects","AFL++ is a fork of AFL with better fuzzing performance and advanced features. Use for multi-core fuzzing of C\u002FC++ projects.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[391,392,393],{"name":371,"slug":372,"type":16},{"name":377,"slug":378,"type":16},{"name":380,"slug":381,"type":16},"2026-07-17T06:05:12.433192",{"slug":396,"name":396,"fn":397,"description":398,"org":399,"tags":400,"stars":382,"repoUrl":383,"updatedAt":414},"agentic-actions-auditor","audit GitHub Actions for security vulnerabilities","Audits GitHub Actions workflows for security vulnerabilities in AI agent integrations including Claude Code Action, Gemini CLI, OpenAI Codex, and GitHub AI Inference. Detects attack vectors where attacker-controlled input reaches AI agents running in CI\u002FCD pipelines, including env var intermediary patterns, direct expression injection, dangerous sandbox configurations, and wildcard user allowlists. Use when reviewing workflow files that invoke AI coding agents, auditing CI\u002FCD pipeline security for prompt injection risks, or evaluating agentic action configurations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[401,404,407,410,413],{"name":402,"slug":403,"type":16},"Agents","agents",{"name":405,"slug":406,"type":16},"CI\u002FCD","ci-cd",{"name":408,"slug":409,"type":16},"Code Analysis","code-analysis",{"name":411,"slug":412,"type":16},"GitHub Actions","github-actions",{"name":377,"slug":378,"type":16},"2026-07-18T05:47:48.564744",{"slug":416,"name":416,"fn":417,"description":418,"org":419,"tags":420,"stars":382,"repoUrl":383,"updatedAt":429},"algorand-vulnerability-scanner","scan Algorand smart contracts for vulnerabilities","Scans Algorand smart contracts for 11 common vulnerabilities including rekeying attacks, unchecked transaction fees, missing field validations, and access control issues. Use when auditing Algorand projects (TEAL\u002FPyTeal).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[421,424,425,426],{"name":422,"slug":423,"type":16},"Audit","audit",{"name":408,"slug":409,"type":16},{"name":377,"slug":378,"type":16},{"name":427,"slug":428,"type":16},"Smart Contracts","smart-contracts","2026-07-18T05:47:43.989063",{"slug":431,"name":431,"fn":432,"description":433,"org":434,"tags":435,"stars":382,"repoUrl":383,"updatedAt":442},"ask-questions-if-underspecified","clarify requirements before implementation","Clarify requirements before implementing. Use when serious doubts arise.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[436,439],{"name":437,"slug":438,"type":16},"Engineering","engineering",{"name":440,"slug":441,"type":16},"Productivity","productivity","2026-07-17T06:05:33.543262",{"slug":444,"name":444,"fn":445,"description":446,"org":447,"tags":448,"stars":382,"repoUrl":383,"updatedAt":454},"atheris","fuzz Python code with Atheris","Atheris is a coverage-guided Python fuzzer based on libFuzzer. Use for fuzzing pure Python code and Python C extensions.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[449,452,453],{"name":450,"slug":451,"type":16},"Python","python",{"name":377,"slug":378,"type":16},{"name":380,"slug":381,"type":16},"2026-07-17T06:05:14.575191",{"slug":456,"name":456,"fn":457,"description":458,"org":459,"tags":460,"stars":382,"repoUrl":383,"updatedAt":464},"audit-augmentation","augment code graphs with audit findings","Augments Trailmark code graphs with external audit findings from SARIF static analysis results, weAudit annotation files, and version-gated Trailmark 0.4.x binary-analysis graph exports. Maps findings to graph nodes by file and line overlap, creates severity-based subgraphs, and enables cross-referencing findings with pre-analysis data (blast radius, taint, etc.). Use when projecting SARIF results onto a code graph, overlaying weAudit annotations, importing binary graph findings, cross-referencing Semgrep, CodeQL, or binary-analysis findings with call graph data, or visualizing audit findings in the context of code structure.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[461,462,463],{"name":422,"slug":423,"type":16},{"name":408,"slug":409,"type":16},{"name":377,"slug":378,"type":16},"2026-08-01T05:44:54.920542",{"slug":466,"name":466,"fn":467,"description":468,"org":469,"tags":470,"stars":382,"repoUrl":383,"updatedAt":477},"audit-context-building","build architectural context for code analysis","Enables ultra-granular, line-by-line code analysis to build deep architectural context before vulnerability or bug finding.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[471,474,475,476],{"name":472,"slug":473,"type":16},"Architecture","architecture",{"name":422,"slug":423,"type":16},{"name":408,"slug":409,"type":16},{"name":437,"slug":438,"type":16},"2026-07-18T05:47:40.122449",{"slug":479,"name":479,"fn":480,"description":481,"org":482,"tags":483,"stars":382,"repoUrl":383,"updatedAt":488},"audit-prep-assistant","prepare codebases for security audits","Prepares codebases for security review using Trail of Bits' checklist. Helps set review goals, runs static analysis tools, increases test coverage, removes dead code, ensures accessibility, and generates documentation (flowcharts, user stories, inline comments).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[484,485,486,487],{"name":422,"slug":423,"type":16},{"name":408,"slug":409,"type":16},{"name":437,"slug":438,"type":16},{"name":377,"slug":378,"type":16},"2026-07-18T05:47:39.210985",{"slug":490,"name":490,"fn":491,"description":492,"org":493,"tags":494,"stars":382,"repoUrl":383,"updatedAt":500},"burpsuite-project-parser","parse Burp Suite project files","Searches and explores Burp Suite project files (.burp) from the command line. Use when searching response headers or bodies with regex patterns, extracting security audit findings, dumping proxy history or site map data, or analyzing HTTP traffic captured in a Burp project.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[495,496,499],{"name":422,"slug":423,"type":16},{"name":497,"slug":498,"type":16},"CLI","cli",{"name":377,"slug":378,"type":16},"2026-07-17T06:05:33.198077",{"slug":502,"name":502,"fn":503,"description":504,"org":505,"tags":506,"stars":382,"repoUrl":383,"updatedAt":511},"c-review","audit C and C++ code","Performs comprehensive C\u002FC++ security review for memory corruption, integer overflows, race conditions, and platform-specific vulnerabilities. Use when auditing native C\u002FC++ applications, reviewing daemons or services for memory safety, or hunting integer overflow \u002F use-after-free \u002F race conditions in userspace code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[507,508,509,510],{"name":422,"slug":423,"type":16},{"name":371,"slug":372,"type":16},{"name":408,"slug":409,"type":16},{"name":377,"slug":378,"type":16},"2026-07-17T06:05:11.333374",{"slug":513,"name":513,"fn":514,"description":515,"org":516,"tags":517,"stars":382,"repoUrl":383,"updatedAt":522},"cairo-vulnerability-scanner","scan Cairo and StarkNet contracts for vulnerabilities","Scans Cairo\u002FStarkNet smart contracts for 6 critical vulnerabilities including felt252 arithmetic overflow, L1-L2 messaging issues, address conversion problems, and signature replay. Use when auditing StarkNet projects.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[518,519,520,521],{"name":422,"slug":423,"type":16},{"name":408,"slug":409,"type":16},{"name":377,"slug":378,"type":16},{"name":427,"slug":428,"type":16},"2026-07-18T05:47:42.84568",111,{"items":525,"total":626},[526,536,546,565,577,593,607],{"slug":527,"name":527,"fn":528,"description":529,"org":530,"tags":531,"stars":23,"repoUrl":24,"updatedAt":535},"ffuf-web-fuzzing","perform web fuzzing with ffuf","Expert guidance for ffuf web fuzzing during authorized penetration testing. Covers directory discovery, subdomain enumeration, parameter fuzzing, authenticated fuzzing with raw requests, auto-calibration, and result analysis. Use when running ffuf scans, analyzing ffuf output, or building fuzzing strategies for web targets.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[532,533,534],{"name":408,"slug":409,"type":16},{"name":377,"slug":378,"type":16},{"name":380,"slug":381,"type":16},"2026-07-17T06:05:08.247908",{"slug":537,"name":537,"fn":538,"description":539,"org":540,"tags":541,"stars":23,"repoUrl":24,"updatedAt":545},"ghidra-headless","reverse engineer binaries with Ghidra","Reverse engineers binaries using Ghidra's headless analyzer. Use when decompiling executables, extracting functions, strings, symbols, or analyzing call graphs from compiled binaries without the Ghidra GUI.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[542,543,544],{"name":408,"slug":409,"type":16},{"name":374,"slug":375,"type":16},{"name":377,"slug":378,"type":16},"2026-07-18T05:47:30.015093",{"slug":547,"name":547,"fn":548,"description":549,"org":550,"tags":551,"stars":23,"repoUrl":24,"updatedAt":564},"grilling","stress-test plans and decisions","Interviews the user relentlessly about a plan, decision, or idea until every branch of the decision tree is resolved. Use when the user wants to stress-test their thinking, sharpen a plan or design before acting, or uses any 'grill' trigger phrase (e.g. \"grill me on this\").",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[552,555,558,561],{"name":553,"slug":554,"type":16},"Analysis","analysis",{"name":556,"slug":557,"type":16},"Coaching","coaching",{"name":559,"slug":560,"type":16},"Ideation","ideation",{"name":562,"slug":563,"type":16},"Strategy","strategy","2026-07-18T05:48:12.46583",{"slug":566,"name":566,"fn":567,"description":568,"org":569,"tags":570,"stars":23,"repoUrl":24,"updatedAt":576},"handoff","compact conversation for session handoff","Compacts the current conversation into a handoff document so a fresh agent can continue the work in a new session.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[571,572,575],{"name":402,"slug":403,"type":16},{"name":573,"slug":574,"type":16},"Context","context",{"name":440,"slug":441,"type":16},"2026-07-18T05:47:03.196098",{"slug":578,"name":578,"fn":579,"description":580,"org":581,"tags":582,"stars":23,"repoUrl":24,"updatedAt":592},"humanizer","edit text to sound human-written","Remove signs of AI-generated writing from text. Use when editing or reviewing\ntext to make it sound more natural and human-written. Based on Wikipedia's\ncomprehensive \"Signs of AI writing\" guide. Detects and fixes patterns including:\ninflated symbolism, promotional language, superficial -ing analyses, vague\nattributions, em dash overuse, rule of three, AI vocabulary words, negative\nparallelisms, and excessive conjunctive phrases. 30c5c8d (Update humanizer plugin to upstream v2.2.0)\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[583,586,589],{"name":584,"slug":585,"type":16},"Content Creation","content-creation",{"name":587,"slug":588,"type":16},"Editing","editing",{"name":590,"slug":591,"type":16},"Writing","writing","2026-07-18T05:47:18.1749",{"slug":594,"name":594,"fn":595,"description":596,"org":597,"tags":598,"stars":23,"repoUrl":24,"updatedAt":606},"last30days","research recent community discussions and trends","Researches a topic from the last 30 days on Reddit, X, and the web. Surfaces real community discussions with engagement metrics and synthesizes findings into actionable insights. Use when the user wants to know what people are saying about a topic right now.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[599,600,603],{"name":553,"slug":554,"type":16},{"name":601,"slug":602,"type":16},"Research","research",{"name":604,"slug":605,"type":16},"Social Media","social-media","2026-07-17T06:04:39.744471",{"slug":608,"name":608,"fn":609,"description":610,"org":611,"tags":612,"stars":23,"repoUrl":24,"updatedAt":625},"openai-cloudflare-deploy","deploy applications to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare. Originally from OpenAI's curated skills catalog.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[613,616,619,622],{"name":614,"slug":615,"type":16},"Cloudflare","cloudflare",{"name":617,"slug":618,"type":16},"Cloudflare Pages","cloudflare-pages",{"name":620,"slug":621,"type":16},"Cloudflare Workers","cloudflare-workers",{"name":623,"slug":624,"type":16},"Deployment","deployment","2026-07-17T06:04:46.574433",31]