gitextract_57gdutra/ ├── .claude-plugin/ │ └── marketplace.json ├── .gitignore ├── README.md ├── THIRD_PARTY_NOTICES.md ├── skills/ │ ├── algorithmic-art/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ └── templates/ │ │ ├── generator_template.js │ │ └── viewer.html │ ├── brand-guidelines/ │ │ ├── LICENSE.txt │ │ └── SKILL.md │ ├── canvas-design/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ └── canvas-fonts/ │ │ ├── ArsenalSC-OFL.txt │ │ ├── BigShoulders-OFL.txt │ │ ├── Boldonse-OFL.txt │ │ ├── BricolageGrotesque-OFL.txt │ │ ├── CrimsonPro-OFL.txt │ │ ├── DMMono-OFL.txt │ │ ├── EricaOne-OFL.txt │ │ ├── GeistMono-OFL.txt │ │ ├── Gloock-OFL.txt │ │ ├── IBMPlexMono-OFL.txt │ │ ├── InstrumentSans-OFL.txt │ │ ├── Italiana-OFL.txt │ │ ├── JetBrainsMono-OFL.txt │ │ ├── Jura-OFL.txt │ │ ├── LibreBaskerville-OFL.txt │ │ ├── Lora-OFL.txt │ │ ├── NationalPark-OFL.txt │ │ ├── NothingYouCouldDo-OFL.txt │ │ ├── Outfit-OFL.txt │ │ ├── PixelifySans-OFL.txt │ │ ├── PoiretOne-OFL.txt │ │ ├── RedHatMono-OFL.txt │ │ ├── Silkscreen-OFL.txt │ │ ├── SmoochSans-OFL.txt │ │ ├── Tektur-OFL.txt │ │ ├── WorkSans-OFL.txt │ │ └── YoungSerif-OFL.txt │ ├── claude-api/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── csharp/ │ │ │ └── claude-api.md │ │ ├── curl/ │ │ │ └── examples.md │ │ ├── go/ │ │ │ └── claude-api.md │ │ ├── java/ │ │ │ └── claude-api.md │ │ ├── php/ │ │ │ └── claude-api.md │ │ ├── python/ │ │ │ ├── agent-sdk/ │ │ │ │ ├── README.md │ │ │ │ └── patterns.md │ │ │ └── claude-api/ │ │ │ ├── README.md │ │ │ ├── batches.md │ │ │ ├── files-api.md │ │ │ ├── streaming.md │ │ │ └── tool-use.md │ │ ├── ruby/ │ │ │ └── claude-api.md │ │ ├── shared/ │ │ │ ├── error-codes.md │ │ │ ├── live-sources.md │ │ │ ├── models.md │ │ │ └── tool-use-concepts.md │ │ └── typescript/ │ │ ├── agent-sdk/ │ │ │ ├── README.md │ │ │ └── patterns.md │ │ └── claude-api/ │ │ ├── README.md │ │ ├── batches.md │ │ ├── files-api.md │ │ ├── streaming.md │ │ └── tool-use.md │ ├── doc-coauthoring/ │ │ └── SKILL.md │ ├── docx/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ └── scripts/ │ │ ├── __init__.py │ │ ├── accept_changes.py │ │ ├── comment.py │ │ ├── office/ │ │ │ ├── helpers/ │ │ │ │ ├── __init__.py │ │ │ │ ├── merge_runs.py │ │ │ │ └── simplify_redlines.py │ │ │ ├── pack.py │ │ │ ├── schemas/ │ │ │ │ ├── ISO-IEC29500-4_2016/ │ │ │ │ │ ├── dml-chart.xsd │ │ │ │ │ ├── dml-chartDrawing.xsd │ │ │ │ │ ├── dml-diagram.xsd │ │ │ │ │ ├── dml-lockedCanvas.xsd │ │ │ │ │ ├── dml-main.xsd │ │ │ │ │ ├── dml-picture.xsd │ │ │ │ │ ├── dml-spreadsheetDrawing.xsd │ │ │ │ │ ├── dml-wordprocessingDrawing.xsd │ │ │ │ │ ├── pml.xsd │ │ │ │ │ ├── shared-additionalCharacteristics.xsd │ │ │ │ │ ├── shared-bibliography.xsd │ │ │ │ │ ├── shared-commonSimpleTypes.xsd │ │ │ │ │ ├── shared-customXmlDataProperties.xsd │ │ │ │ │ ├── shared-customXmlSchemaProperties.xsd │ │ │ │ │ ├── shared-documentPropertiesCustom.xsd │ │ │ │ │ ├── shared-documentPropertiesExtended.xsd │ │ │ │ │ ├── shared-documentPropertiesVariantTypes.xsd │ │ │ │ │ ├── shared-math.xsd │ │ │ │ │ ├── shared-relationshipReference.xsd │ │ │ │ │ ├── sml.xsd │ │ │ │ │ ├── vml-main.xsd │ │ │ │ │ ├── vml-officeDrawing.xsd │ │ │ │ │ ├── vml-presentationDrawing.xsd │ │ │ │ │ ├── vml-spreadsheetDrawing.xsd │ │ │ │ │ ├── vml-wordprocessingDrawing.xsd │ │ │ │ │ ├── wml.xsd │ │ │ │ │ └── xml.xsd │ │ │ │ ├── ecma/ │ │ │ │ │ └── fouth-edition/ │ │ │ │ │ ├── opc-contentTypes.xsd │ │ │ │ │ ├── opc-coreProperties.xsd │ │ │ │ │ ├── opc-digSig.xsd │ │ │ │ │ └── opc-relationships.xsd │ │ │ │ ├── mce/ │ │ │ │ │ └── mc.xsd │ │ │ │ └── microsoft/ │ │ │ │ ├── wml-2010.xsd │ │ │ │ ├── wml-2012.xsd │ │ │ │ ├── wml-2018.xsd │ │ │ │ ├── wml-cex-2018.xsd │ │ │ │ ├── wml-cid-2016.xsd │ │ │ │ ├── wml-sdtdatahash-2020.xsd │ │ │ │ └── wml-symex-2015.xsd │ │ │ ├── soffice.py │ │ │ ├── unpack.py │ │ │ ├── validate.py │ │ │ └── validators/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── docx.py │ │ │ ├── pptx.py │ │ │ └── redlining.py │ │ └── templates/ │ │ ├── comments.xml │ │ ├── commentsExtended.xml │ │ ├── commentsExtensible.xml │ │ ├── commentsIds.xml │ │ └── people.xml │ ├── frontend-design/ │ │ ├── LICENSE.txt │ │ └── SKILL.md │ ├── internal-comms/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ └── examples/ │ │ ├── 3p-updates.md │ │ ├── company-newsletter.md │ │ ├── faq-answers.md │ │ └── general-comms.md │ ├── mcp-builder/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── reference/ │ │ │ ├── evaluation.md │ │ │ ├── mcp_best_practices.md │ │ │ ├── node_mcp_server.md │ │ │ └── python_mcp_server.md │ │ └── scripts/ │ │ ├── connections.py │ │ ├── evaluation.py │ │ ├── example_evaluation.xml │ │ └── requirements.txt │ ├── pdf/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── forms.md │ │ ├── reference.md │ │ └── scripts/ │ │ ├── check_bounding_boxes.py │ │ ├── check_fillable_fields.py │ │ ├── convert_pdf_to_images.py │ │ ├── create_validation_image.py │ │ ├── extract_form_field_info.py │ │ ├── extract_form_structure.py │ │ ├── fill_fillable_fields.py │ │ └── fill_pdf_form_with_annotations.py │ ├── pptx/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── editing.md │ │ ├── pptxgenjs.md │ │ └── scripts/ │ │ ├── __init__.py │ │ ├── add_slide.py │ │ ├── clean.py │ │ ├── office/ │ │ │ ├── helpers/ │ │ │ │ ├── __init__.py │ │ │ │ ├── merge_runs.py │ │ │ │ └── simplify_redlines.py │ │ │ ├── pack.py │ │ │ ├── schemas/ │ │ │ │ ├── ISO-IEC29500-4_2016/ │ │ │ │ │ ├── dml-chart.xsd │ │ │ │ │ ├── dml-chartDrawing.xsd │ │ │ │ │ ├── dml-diagram.xsd │ │ │ │ │ ├── dml-lockedCanvas.xsd │ │ │ │ │ ├── dml-main.xsd │ │ │ │ │ ├── dml-picture.xsd │ │ │ │ │ ├── dml-spreadsheetDrawing.xsd │ │ │ │ │ ├── dml-wordprocessingDrawing.xsd │ │ │ │ │ ├── pml.xsd │ │ │ │ │ ├── shared-additionalCharacteristics.xsd │ │ │ │ │ ├── shared-bibliography.xsd │ │ │ │ │ ├── shared-commonSimpleTypes.xsd │ │ │ │ │ ├── shared-customXmlDataProperties.xsd │ │ │ │ │ ├── shared-customXmlSchemaProperties.xsd │ │ │ │ │ ├── shared-documentPropertiesCustom.xsd │ │ │ │ │ ├── shared-documentPropertiesExtended.xsd │ │ │ │ │ ├── shared-documentPropertiesVariantTypes.xsd │ │ │ │ │ ├── shared-math.xsd │ │ │ │ │ ├── shared-relationshipReference.xsd │ │ │ │ │ ├── sml.xsd │ │ │ │ │ ├── vml-main.xsd │ │ │ │ │ ├── vml-officeDrawing.xsd │ │ │ │ │ ├── vml-presentationDrawing.xsd │ │ │ │ │ ├── vml-spreadsheetDrawing.xsd │ │ │ │ │ ├── vml-wordprocessingDrawing.xsd │ │ │ │ │ ├── wml.xsd │ │ │ │ │ └── xml.xsd │ │ │ │ ├── ecma/ │ │ │ │ │ └── fouth-edition/ │ │ │ │ │ ├── opc-contentTypes.xsd │ │ │ │ │ ├── opc-coreProperties.xsd │ │ │ │ │ ├── opc-digSig.xsd │ │ │ │ │ └── opc-relationships.xsd │ │ │ │ ├── mce/ │ │ │ │ │ └── mc.xsd │ │ │ │ └── microsoft/ │ │ │ │ ├── wml-2010.xsd │ │ │ │ ├── wml-2012.xsd │ │ │ │ ├── wml-2018.xsd │ │ │ │ ├── wml-cex-2018.xsd │ │ │ │ ├── wml-cid-2016.xsd │ │ │ │ ├── wml-sdtdatahash-2020.xsd │ │ │ │ └── wml-symex-2015.xsd │ │ │ ├── soffice.py │ │ │ ├── unpack.py │ │ │ ├── validate.py │ │ │ └── validators/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── docx.py │ │ │ ├── pptx.py │ │ │ └── redlining.py │ │ └── thumbnail.py │ ├── skill-creator/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ ├── analyzer.md │ │ │ ├── comparator.md │ │ │ └── grader.md │ │ ├── assets/ │ │ │ └── eval_review.html │ │ ├── eval-viewer/ │ │ │ ├── generate_review.py │ │ │ └── viewer.html │ │ ├── references/ │ │ │ └── schemas.md │ │ └── scripts/ │ │ ├── __init__.py │ │ ├── aggregate_benchmark.py │ │ ├── generate_report.py │ │ ├── improve_description.py │ │ ├── package_skill.py │ │ ├── quick_validate.py │ │ ├── run_eval.py │ │ ├── run_loop.py │ │ └── utils.py │ ├── slack-gif-creator/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── core/ │ │ │ ├── easing.py │ │ │ ├── frame_composer.py │ │ │ ├── gif_builder.py │ │ │ └── validators.py │ │ └── requirements.txt │ ├── theme-factory/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ └── themes/ │ │ ├── arctic-frost.md │ │ ├── botanical-garden.md │ │ ├── desert-rose.md │ │ ├── forest-canopy.md │ │ ├── golden-hour.md │ │ ├── midnight-galaxy.md │ │ ├── modern-minimalist.md │ │ ├── ocean-depths.md │ │ ├── sunset-boulevard.md │ │ └── tech-innovation.md │ ├── web-artifacts-builder/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ └── scripts/ │ │ ├── bundle-artifact.sh │ │ └── init-artifact.sh │ ├── webapp-testing/ │ │ ├── LICENSE.txt │ │ ├── SKILL.md │ │ ├── examples/ │ │ │ ├── console_logging.py │ │ │ ├── element_discovery.py │ │ │ └── static_html_automation.py │ │ └── scripts/ │ │ └── with_server.py │ └── xlsx/ │ ├── LICENSE.txt │ ├── SKILL.md │ └── scripts/ │ ├── office/ │ │ ├── helpers/ │ │ │ ├── __init__.py │ │ │ ├── merge_runs.py │ │ │ └── simplify_redlines.py │ │ ├── pack.py │ │ ├── schemas/ │ │ │ ├── ISO-IEC29500-4_2016/ │ │ │ │ ├── dml-chart.xsd │ │ │ │ ├── dml-chartDrawing.xsd │ │ │ │ ├── dml-diagram.xsd │ │ │ │ ├── dml-lockedCanvas.xsd │ │ │ │ ├── dml-main.xsd │ │ │ │ ├── dml-picture.xsd │ │ │ │ ├── dml-spreadsheetDrawing.xsd │ │ │ │ ├── dml-wordprocessingDrawing.xsd │ │ │ │ ├── pml.xsd │ │ │ │ ├── shared-additionalCharacteristics.xsd │ │ │ │ ├── shared-bibliography.xsd │ │ │ │ ├── shared-commonSimpleTypes.xsd │ │ │ │ ├── shared-customXmlDataProperties.xsd │ │ │ │ ├── shared-customXmlSchemaProperties.xsd │ │ │ │ ├── shared-documentPropertiesCustom.xsd │ │ │ │ ├── shared-documentPropertiesExtended.xsd │ │ │ │ ├── shared-documentPropertiesVariantTypes.xsd │ │ │ │ ├── shared-math.xsd │ │ │ │ ├── shared-relationshipReference.xsd │ │ │ │ ├── sml.xsd │ │ │ │ ├── vml-main.xsd │ │ │ │ ├── vml-officeDrawing.xsd │ │ │ │ ├── vml-presentationDrawing.xsd │ │ │ │ ├── vml-spreadsheetDrawing.xsd │ │ │ │ ├── vml-wordprocessingDrawing.xsd │ │ │ │ ├── wml.xsd │ │ │ │ └── xml.xsd │ │ │ ├── ecma/ │ │ │ │ └── fouth-edition/ │ │ │ │ ├── opc-contentTypes.xsd │ │ │ │ ├── opc-coreProperties.xsd │ │ │ │ ├── opc-digSig.xsd │ │ │ │ └── opc-relationships.xsd │ │ │ ├── mce/ │ │ │ │ └── mc.xsd │ │ │ └── microsoft/ │ │ │ ├── wml-2010.xsd │ │ │ ├── wml-2012.xsd │ │ │ ├── wml-2018.xsd │ │ │ ├── wml-cex-2018.xsd │ │ │ ├── wml-cid-2016.xsd │ │ │ ├── wml-sdtdatahash-2020.xsd │ │ │ └── wml-symex-2015.xsd │ │ ├── soffice.py │ │ ├── unpack.py │ │ ├── validate.py │ │ └── validators/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── docx.py │ │ ├── pptx.py │ │ └── redlining.py │ └── recalc.py ├── spec/ │ └── agent-skills-spec.md └── template/ └── SKILL.md