@thanhvn14/csvibe 0.1.3 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/agents/schemas/base-output.schema.json +88 -0
- package/.github/agents/schemas/brainstorm-output.schema.json +88 -0
- package/.github/agents/schemas/scout-output.schema.json +60 -0
- package/.github/agents/scripts/fetch-copilot-tools.js +245 -0
- package/.github/agents/scripts/lib/parse-agent-file.js +275 -0
- package/.github/agents/scripts/package-lock.json +78 -0
- package/.github/agents/scripts/package.json +22 -0
- package/.github/agents/scripts/schemas/agent-frontmatter.schema.json +83 -0
- package/.github/agents/scripts/validate-agent-all.js +157 -0
- package/.github/agents/scripts/validate-agent-frontmatter.js +96 -0
- package/.github/agents/scripts/validate-agent-handoffs.js +169 -0
- package/.github/agents/scripts/validate-agent-output.js +157 -0
- package/.github/agents/scripts/validate-agent-tools.js +278 -0
- package/.github/skills/.env.example +100 -0
- package/.github/skills/.install-state.json +23 -0
- package/.github/skills/README.md +149 -0
- package/.github/skills/ai-multimodal/.env.example +204 -0
- package/.github/skills/ai-multimodal/scripts/.coverage +0 -0
- package/.github/skills/ai-multimodal/scripts/check_setup.py +305 -0
- package/.github/skills/ai-multimodal/scripts/document_converter.py +395 -0
- package/.github/skills/ai-multimodal/scripts/gemini_batch_process.py +1184 -0
- package/.github/skills/ai-multimodal/scripts/media_optimizer.py +506 -0
- package/.github/skills/ai-multimodal/scripts/requirements.txt +26 -0
- package/.github/skills/better-auth/scripts/.coverage +0 -0
- package/.github/skills/better-auth/scripts/better_auth_init.py +521 -0
- package/.github/skills/better-auth/scripts/requirements.txt +15 -0
- package/.github/skills/chrome-devtools/scripts/README.md +272 -0
- package/.github/skills/chrome-devtools/scripts/__tests__/selector.test.js +210 -0
- package/.github/skills/chrome-devtools/scripts/aria-snapshot.js +362 -0
- package/.github/skills/chrome-devtools/scripts/click.js +83 -0
- package/.github/skills/chrome-devtools/scripts/console.js +79 -0
- package/.github/skills/chrome-devtools/scripts/evaluate.js +53 -0
- package/.github/skills/chrome-devtools/scripts/fill.js +76 -0
- package/.github/skills/chrome-devtools/scripts/inject-auth.js +229 -0
- package/.github/skills/chrome-devtools/scripts/install-deps.sh +181 -0
- package/.github/skills/chrome-devtools/scripts/install.sh +83 -0
- package/.github/skills/chrome-devtools/scripts/lib/browser.js +318 -0
- package/.github/skills/chrome-devtools/scripts/lib/selector.js +178 -0
- package/.github/skills/chrome-devtools/scripts/navigate.js +54 -0
- package/.github/skills/chrome-devtools/scripts/network.js +106 -0
- package/.github/skills/chrome-devtools/scripts/package-lock.json +1589 -0
- package/.github/skills/chrome-devtools/scripts/package.json +16 -0
- package/.github/skills/chrome-devtools/scripts/performance.js +149 -0
- package/.github/skills/chrome-devtools/scripts/screenshot.js +198 -0
- package/.github/skills/chrome-devtools/scripts/select-ref.js +131 -0
- package/.github/skills/chrome-devtools/scripts/snapshot.js +135 -0
- package/.github/skills/common/README.md +120 -0
- package/.github/skills/common/api_key_helper.py +411 -0
- package/.github/skills/common/api_key_rotator.py +248 -0
- package/.github/skills/databases/scripts/.coverage +0 -0
- package/.github/skills/databases/scripts/db_backup.py +502 -0
- package/.github/skills/databases/scripts/db_migrate.py +425 -0
- package/.github/skills/databases/scripts/db_performance_check.py +456 -0
- package/.github/skills/databases/scripts/requirements.txt +20 -0
- package/.github/skills/debugging/scripts/find-polluter.sh +63 -0
- package/.github/skills/devops/.env.example +76 -0
- package/.github/skills/devops/scripts/cloudflare_deploy.py +269 -0
- package/.github/skills/devops/scripts/docker_optimize.py +331 -0
- package/.github/skills/devops/scripts/requirements.txt +20 -0
- package/.github/skills/docs-seeker/.env.example +15 -0
- package/.github/skills/docs-seeker/package.json +25 -0
- package/.github/skills/docs-seeker/scripts/analyze-llms-txt.js +211 -0
- package/.github/skills/docs-seeker/scripts/detect-topic.js +172 -0
- package/.github/skills/docs-seeker/scripts/fetch-docs.js +213 -0
- package/.github/skills/docs-seeker/scripts/utils/env-loader.js +94 -0
- package/.github/skills/document-skills/docx/LICENSE.txt +30 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/.github/skills/document-skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/.github/skills/document-skills/docx/ooxml/scripts/pack.py +159 -0
- package/.github/skills/document-skills/docx/ooxml/scripts/unpack.py +29 -0
- package/.github/skills/document-skills/docx/ooxml/scripts/validate.py +69 -0
- package/.github/skills/document-skills/docx/ooxml/scripts/validation/__init__.py +15 -0
- package/.github/skills/document-skills/docx/ooxml/scripts/validation/base.py +951 -0
- package/.github/skills/document-skills/docx/ooxml/scripts/validation/docx.py +274 -0
- package/.github/skills/document-skills/docx/ooxml/scripts/validation/pptx.py +315 -0
- package/.github/skills/document-skills/docx/ooxml/scripts/validation/redlining.py +279 -0
- package/.github/skills/document-skills/docx/scripts/__init__.py +1 -0
- package/.github/skills/document-skills/docx/scripts/document.py +1276 -0
- package/.github/skills/document-skills/docx/scripts/templates/comments.xml +3 -0
- package/.github/skills/document-skills/docx/scripts/templates/commentsExtended.xml +3 -0
- package/.github/skills/document-skills/docx/scripts/templates/commentsExtensible.xml +3 -0
- package/.github/skills/document-skills/docx/scripts/templates/commentsIds.xml +3 -0
- package/.github/skills/document-skills/docx/scripts/templates/people.xml +3 -0
- package/.github/skills/document-skills/docx/scripts/utilities.py +374 -0
- package/.github/skills/document-skills/pdf/LICENSE.txt +30 -0
- package/.github/skills/document-skills/pdf/scripts/check_bounding_boxes.py +70 -0
- package/.github/skills/document-skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
- package/.github/skills/document-skills/pdf/scripts/check_fillable_fields.py +12 -0
- package/.github/skills/document-skills/pdf/scripts/convert_pdf_to_images.py +35 -0
- package/.github/skills/document-skills/pdf/scripts/create_validation_image.py +41 -0
- package/.github/skills/document-skills/pdf/scripts/extract_form_field_info.py +152 -0
- package/.github/skills/document-skills/pdf/scripts/fill_fillable_fields.py +114 -0
- package/.github/skills/document-skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
- package/.github/skills/document-skills/pptx/LICENSE.txt +30 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/mce/mc.xsd +75 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/.github/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/.github/skills/document-skills/pptx/ooxml/scripts/pack.py +159 -0
- package/.github/skills/document-skills/pptx/ooxml/scripts/unpack.py +29 -0
- package/.github/skills/document-skills/pptx/ooxml/scripts/validate.py +69 -0
- package/.github/skills/document-skills/pptx/ooxml/scripts/validation/__init__.py +15 -0
- package/.github/skills/document-skills/pptx/ooxml/scripts/validation/base.py +951 -0
- package/.github/skills/document-skills/pptx/ooxml/scripts/validation/docx.py +274 -0
- package/.github/skills/document-skills/pptx/ooxml/scripts/validation/pptx.py +315 -0
- package/.github/skills/document-skills/pptx/ooxml/scripts/validation/redlining.py +279 -0
- package/.github/skills/document-skills/pptx/scripts/html2pptx.js +979 -0
- package/.github/skills/document-skills/pptx/scripts/inventory.py +1020 -0
- package/.github/skills/document-skills/pptx/scripts/rearrange.py +231 -0
- package/.github/skills/document-skills/pptx/scripts/replace.py +385 -0
- package/.github/skills/document-skills/pptx/scripts/thumbnail.py +450 -0
- package/.github/skills/document-skills/xlsx/LICENSE.txt +30 -0
- package/.github/skills/document-skills/xlsx/recalc.py +190 -0
- package/.github/skills/install.ps1 +1220 -0
- package/.github/skills/install.sh +1032 -0
- package/.github/skills/markdown-novel-viewer/assets/directory-browser.css +215 -0
- package/.github/skills/markdown-novel-viewer/assets/favicon.png +0 -0
- package/.github/skills/markdown-novel-viewer/assets/novel-theme.css +818 -0
- package/.github/skills/markdown-novel-viewer/assets/reader.js +262 -0
- package/.github/skills/markdown-novel-viewer/assets/template.html +80 -0
- package/.github/skills/markdown-novel-viewer/package-lock.json +146 -0
- package/.github/skills/markdown-novel-viewer/package.json +15 -0
- package/.github/skills/markdown-novel-viewer/scripts/lib/http-server.cjs +434 -0
- package/.github/skills/markdown-novel-viewer/scripts/lib/markdown-renderer.cjs +272 -0
- package/.github/skills/markdown-novel-viewer/scripts/lib/plan-navigator.cjs +509 -0
- package/.github/skills/markdown-novel-viewer/scripts/lib/port-finder.cjs +48 -0
- package/.github/skills/markdown-novel-viewer/scripts/lib/process-mgr.cjs +150 -0
- package/.github/skills/markdown-novel-viewer/scripts/server.cjs +411 -0
- package/.github/skills/mcp-builder/LICENSE.txt +202 -0
- package/.github/skills/mcp-builder/scripts/connections.py +151 -0
- package/.github/skills/mcp-builder/scripts/evaluation.py +373 -0
- package/.github/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
- package/.github/skills/mcp-builder/scripts/requirements.txt +2 -0
- package/.github/skills/mcp-management/README.md +219 -0
- package/.github/skills/mcp-management/assets/tools.json +3146 -0
- package/.github/skills/mcp-management/package-lock.json +6 -0
- package/.github/skills/mcp-management/scripts/.env.example +10 -0
- package/.github/skills/mcp-management/scripts/cli.ts +195 -0
- package/.github/skills/mcp-management/scripts/dist/analyze-tools.js +70 -0
- package/.github/skills/mcp-management/scripts/dist/cli.js +160 -0
- package/.github/skills/mcp-management/scripts/dist/mcp-client.js +183 -0
- package/.github/skills/mcp-management/scripts/mcp-client.ts +230 -0
- package/.github/skills/mcp-management/scripts/package.json +20 -0
- package/.github/skills/media-processing/scripts/README.md +111 -0
- package/.github/skills/media-processing/scripts/batch-remove-background.sh +124 -0
- package/.github/skills/media-processing/scripts/batch_resize.py +342 -0
- package/.github/skills/media-processing/scripts/media_convert.py +311 -0
- package/.github/skills/media-processing/scripts/remove-background.sh +96 -0
- package/.github/skills/media-processing/scripts/remove-bg-node.js +158 -0
- package/.github/skills/media-processing/scripts/requirements.txt +24 -0
- package/.github/skills/media-processing/scripts/video_optimize.py +414 -0
- package/.github/skills/payment-integration/README.md +185 -0
- package/.github/skills/payment-integration/scripts/.env.example +20 -0
- package/.github/skills/payment-integration/scripts/checkout-helper.js +244 -0
- package/.github/skills/payment-integration/scripts/package.json +17 -0
- package/.github/skills/payment-integration/scripts/polar-webhook-verify.js +202 -0
- package/.github/skills/payment-integration/scripts/sepay-webhook-verify.js +193 -0
- package/.github/skills/payment-integration/scripts/test-scripts.js +237 -0
- package/.github/skills/plans-kanban/assets/dashboard-template.html +119 -0
- package/.github/skills/plans-kanban/assets/dashboard.css +1594 -0
- package/.github/skills/plans-kanban/assets/dashboard.js +596 -0
- package/.github/skills/plans-kanban/assets/favicon.png +0 -0
- package/.github/skills/plans-kanban/package-lock.json +123 -0
- package/.github/skills/plans-kanban/package.json +13 -0
- package/.github/skills/plans-kanban/scripts/lib/dashboard-renderer.cjs +884 -0
- package/.github/skills/plans-kanban/scripts/lib/http-server.cjs +310 -0
- package/.github/skills/plans-kanban/scripts/lib/plan-metadata-extractor.cjs +489 -0
- package/.github/skills/plans-kanban/scripts/lib/plan-parser.cjs +175 -0
- package/.github/skills/plans-kanban/scripts/lib/plan-scanner.cjs +272 -0
- package/.github/skills/plans-kanban/scripts/lib/port-finder.cjs +48 -0
- package/.github/skills/plans-kanban/scripts/lib/process-mgr.cjs +128 -0
- package/.github/skills/plans-kanban/scripts/server.cjs +260 -0
- package/.github/skills/repomix/scripts/.coverage +0 -0
- package/.github/skills/repomix/scripts/README.md +179 -0
- package/.github/skills/repomix/scripts/repomix_batch.py +455 -0
- package/.github/skills/repomix/scripts/repos.example.json +15 -0
- package/.github/skills/repomix/scripts/requirements.txt +15 -0
- package/.github/skills/scout-validation/scripts/lib/broad-pattern-detector.cjs +124 -0
- package/.github/skills/scout-validation/scripts/lib/path-checker.cjs +66 -0
- package/.github/skills/scout-validation/scripts/lib/schema-validator.cjs +45 -0
- package/.github/skills/scout-validation/scripts/package.json +11 -0
- package/.github/skills/scout-validation/scripts/validate-scout-output.cjs +219 -0
- package/.github/skills/scout-validation/test/broad-pattern-output.json +18 -0
- package/.github/skills/scout-validation/test/invalid-path-output.json +18 -0
- package/.github/skills/scout-validation/test/valid-scout-output.json +26 -0
- package/.github/skills/sequential-thinking/.env.example +8 -0
- package/.github/skills/sequential-thinking/README.md +183 -0
- package/.github/skills/sequential-thinking/package.json +31 -0
- package/.github/skills/sequential-thinking/scripts/format-thought.js +159 -0
- package/.github/skills/sequential-thinking/scripts/process-thought.js +236 -0
- package/.github/skills/shopify/README.md +66 -0
- package/.github/skills/shopify/scripts/.coverage +0 -0
- package/.github/skills/shopify/scripts/requirements.txt +19 -0
- package/.github/skills/shopify/scripts/shopify_init.py +423 -0
- package/.github/skills/skill-creator/LICENSE.txt +202 -0
- package/.github/skills/skill-creator/scripts/init_skill.py +303 -0
- package/.github/skills/skill-creator/scripts/package_skill.py +110 -0
- package/.github/skills/skill-creator/scripts/quick_validate.py +65 -0
- package/.github/skills/ui-styling/LICENSE.txt +202 -0
- package/.github/skills/ui-styling/canvas-fonts/ArsenalSC-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/BigShoulders-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/Boldonse-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/Boldonse-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/CrimsonPro-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/DMMono-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/DMMono-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/EricaOne-OFL.txt +94 -0
- package/.github/skills/ui-styling/canvas-fonts/EricaOne-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/GeistMono-Bold.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/GeistMono-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/GeistMono-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/Gloock-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/Gloock-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/InstrumentSans-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/Italiana-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/Italiana-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/Jura-Light.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/Jura-Medium.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/Jura-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/Lora-Bold.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/Lora-Italic.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/Lora-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/Lora-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/NationalPark-Bold.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/NationalPark-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/NationalPark-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/Outfit-Bold.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/Outfit-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/Outfit-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/PixelifySans-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/PoiretOne-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/RedHatMono-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/Silkscreen-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/SmoochSans-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/Tektur-Medium.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/Tektur-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/Tektur-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/WorkSans-Bold.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/WorkSans-Italic.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/WorkSans-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/WorkSans-Regular.ttf +0 -0
- package/.github/skills/ui-styling/canvas-fonts/YoungSerif-OFL.txt +93 -0
- package/.github/skills/ui-styling/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- package/.github/skills/ui-styling/scripts/.coverage +0 -0
- package/.github/skills/ui-styling/scripts/requirements.txt +17 -0
- package/.github/skills/ui-styling/scripts/shadcn_add.py +292 -0
- package/.github/skills/ui-styling/scripts/tailwind_config_gen.py +456 -0
- package/.github/skills/ui-ux-pro-max/data/charts.csv +26 -0
- package/.github/skills/ui-ux-pro-max/data/colors.csv +97 -0
- package/.github/skills/ui-ux-pro-max/data/landing.csv +31 -0
- package/.github/skills/ui-ux-pro-max/data/products.csv +97 -0
- package/.github/skills/ui-ux-pro-max/data/prompts.csv +24 -0
- package/.github/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/.github/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +51 -0
- package/.github/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/.github/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/.github/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/.github/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/.github/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/.github/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/.github/skills/ui-ux-pro-max/data/styles.csv +59 -0
- package/.github/skills/ui-ux-pro-max/data/typography.csv +58 -0
- package/.github/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/.github/skills/ui-ux-pro-max/scripts/core.py +236 -0
- package/.github/skills/ui-ux-pro-max/scripts/search.py +76 -0
- package/.github/skills/web-frameworks/scripts/.coverage +0 -0
- package/.github/skills/web-frameworks/scripts/__init__.py +0 -0
- package/.github/skills/web-frameworks/scripts/nextjs_init.py +547 -0
- package/.github/skills/web-frameworks/scripts/requirements.txt +16 -0
- package/.github/skills/web-frameworks/scripts/turborepo_migrate.py +394 -0
- package/dist/config/constants.d.ts +3 -0
- package/dist/config/constants.d.ts.map +1 -1
- package/dist/config/constants.js +5 -1
- package/dist/config/constants.js.map +1 -1
- package/dist/domains/github/github-client.d.ts +5 -0
- package/dist/domains/github/github-client.d.ts.map +1 -1
- package/dist/domains/github/github-client.js +44 -0
- package/dist/domains/github/github-client.js.map +1 -1
- package/dist/utils/downloader.d.ts +3 -1
- package/dist/utils/downloader.d.ts.map +1 -1
- package/dist/utils/downloader.js +48 -11
- package/dist/utils/downloader.js.map +1 -1
- package/dist/utils/scaffolder.d.ts.map +1 -1
- package/dist/utils/scaffolder.js +2 -0
- package/dist/utils/scaffolder.js.map +1 -1
- package/package.json +3 -1
|
@@ -0,0 +1,506 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
Optimize media files for Gemini API processing.
|
|
4
|
+
|
|
5
|
+
Features:
|
|
6
|
+
- Compress videos/audio for size limits
|
|
7
|
+
- Resize images appropriately
|
|
8
|
+
- Split long videos into chunks
|
|
9
|
+
- Format conversion
|
|
10
|
+
- Quality vs size optimization
|
|
11
|
+
- Validation before upload
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
import argparse
|
|
15
|
+
import json
|
|
16
|
+
import os
|
|
17
|
+
import subprocess
|
|
18
|
+
import sys
|
|
19
|
+
from pathlib import Path
|
|
20
|
+
from typing import Optional, Dict, Any, List
|
|
21
|
+
|
|
22
|
+
try:
|
|
23
|
+
from dotenv import load_dotenv
|
|
24
|
+
except ImportError:
|
|
25
|
+
load_dotenv = None
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def load_env_files():
|
|
29
|
+
"""Load .env files in correct priority order.
|
|
30
|
+
|
|
31
|
+
Priority order (highest to lowest):
|
|
32
|
+
1. process.env (runtime environment variables)
|
|
33
|
+
2. .claude/skills/ai-multimodal/.env (skill-specific config)
|
|
34
|
+
3. .claude/skills/.env (shared skills config)
|
|
35
|
+
4. .claude/.env (Claude global config)
|
|
36
|
+
"""
|
|
37
|
+
if not load_dotenv:
|
|
38
|
+
return
|
|
39
|
+
|
|
40
|
+
# Determine base paths
|
|
41
|
+
script_dir = Path(__file__).parent
|
|
42
|
+
skill_dir = script_dir.parent # .claude/skills/ai-multimodal
|
|
43
|
+
skills_dir = skill_dir.parent # .claude/skills
|
|
44
|
+
claude_dir = skills_dir.parent # .claude
|
|
45
|
+
|
|
46
|
+
# Priority 2: Skill-specific .env
|
|
47
|
+
env_file = skill_dir / '.env'
|
|
48
|
+
if env_file.exists():
|
|
49
|
+
load_dotenv(env_file)
|
|
50
|
+
|
|
51
|
+
# Priority 3: Shared skills .env
|
|
52
|
+
env_file = skills_dir / '.env'
|
|
53
|
+
if env_file.exists():
|
|
54
|
+
load_dotenv(env_file)
|
|
55
|
+
|
|
56
|
+
# Priority 4: Claude global .env
|
|
57
|
+
env_file = claude_dir / '.env'
|
|
58
|
+
if env_file.exists():
|
|
59
|
+
load_dotenv(env_file)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
# Load environment variables at module level
|
|
63
|
+
load_env_files()
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
def check_ffmpeg() -> bool:
|
|
67
|
+
"""Check if ffmpeg is installed."""
|
|
68
|
+
try:
|
|
69
|
+
subprocess.run(['ffmpeg', '-version'],
|
|
70
|
+
stdout=subprocess.DEVNULL,
|
|
71
|
+
stderr=subprocess.DEVNULL,
|
|
72
|
+
check=True)
|
|
73
|
+
return True
|
|
74
|
+
except (subprocess.CalledProcessError, FileNotFoundError, Exception):
|
|
75
|
+
return False
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
def get_media_info(file_path: str) -> Dict[str, Any]:
|
|
79
|
+
"""Get media file information using ffprobe."""
|
|
80
|
+
if not check_ffmpeg():
|
|
81
|
+
return {}
|
|
82
|
+
|
|
83
|
+
try:
|
|
84
|
+
cmd = [
|
|
85
|
+
'ffprobe',
|
|
86
|
+
'-v', 'quiet',
|
|
87
|
+
'-print_format', 'json',
|
|
88
|
+
'-show_format',
|
|
89
|
+
'-show_streams',
|
|
90
|
+
file_path
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
result = subprocess.run(cmd, capture_output=True, text=True, check=True)
|
|
94
|
+
data = json.loads(result.stdout)
|
|
95
|
+
|
|
96
|
+
info = {
|
|
97
|
+
'size': int(data['format'].get('size', 0)),
|
|
98
|
+
'duration': float(data['format'].get('duration', 0)),
|
|
99
|
+
'bit_rate': int(data['format'].get('bit_rate', 0)),
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
# Get video/audio specific info
|
|
103
|
+
for stream in data.get('streams', []):
|
|
104
|
+
if stream['codec_type'] == 'video':
|
|
105
|
+
info['width'] = stream.get('width', 0)
|
|
106
|
+
info['height'] = stream.get('height', 0)
|
|
107
|
+
info['fps'] = eval(stream.get('r_frame_rate', '0/1'))
|
|
108
|
+
elif stream['codec_type'] == 'audio':
|
|
109
|
+
info['sample_rate'] = int(stream.get('sample_rate', 0))
|
|
110
|
+
info['channels'] = stream.get('channels', 0)
|
|
111
|
+
|
|
112
|
+
return info
|
|
113
|
+
|
|
114
|
+
except (subprocess.CalledProcessError, json.JSONDecodeError, Exception):
|
|
115
|
+
return {}
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
def optimize_video(
|
|
119
|
+
input_path: str,
|
|
120
|
+
output_path: str,
|
|
121
|
+
target_size_mb: Optional[int] = None,
|
|
122
|
+
max_duration: Optional[int] = None,
|
|
123
|
+
quality: int = 23,
|
|
124
|
+
resolution: Optional[str] = None,
|
|
125
|
+
verbose: bool = False
|
|
126
|
+
) -> bool:
|
|
127
|
+
"""Optimize video file for Gemini API."""
|
|
128
|
+
if not check_ffmpeg():
|
|
129
|
+
print("Error: ffmpeg not installed")
|
|
130
|
+
print("Install: apt-get install ffmpeg (Linux) or brew install ffmpeg (Mac)")
|
|
131
|
+
return False
|
|
132
|
+
|
|
133
|
+
info = get_media_info(input_path)
|
|
134
|
+
if not info:
|
|
135
|
+
print(f"Error: Could not read media info from {input_path}")
|
|
136
|
+
return False
|
|
137
|
+
|
|
138
|
+
if verbose:
|
|
139
|
+
print(f"Input: {Path(input_path).name}")
|
|
140
|
+
print(f" Size: {info['size'] / (1024*1024):.2f} MB")
|
|
141
|
+
print(f" Duration: {info['duration']:.2f}s")
|
|
142
|
+
if 'width' in info:
|
|
143
|
+
print(f" Resolution: {info['width']}x{info['height']}")
|
|
144
|
+
print(f" Bit rate: {info['bit_rate'] / 1000:.0f} kbps")
|
|
145
|
+
|
|
146
|
+
# Build ffmpeg command
|
|
147
|
+
cmd = ['ffmpeg', '-i', input_path, '-y']
|
|
148
|
+
|
|
149
|
+
# Video codec
|
|
150
|
+
cmd.extend(['-c:v', 'libx264', '-crf', str(quality)])
|
|
151
|
+
|
|
152
|
+
# Resolution
|
|
153
|
+
if resolution:
|
|
154
|
+
cmd.extend(['-vf', f'scale={resolution}'])
|
|
155
|
+
elif 'width' in info and info['width'] > 1920:
|
|
156
|
+
cmd.extend(['-vf', 'scale=1920:-2']) # Max 1080p
|
|
157
|
+
|
|
158
|
+
# Audio codec
|
|
159
|
+
cmd.extend(['-c:a', 'aac', '-b:a', '128k', '-ac', '2'])
|
|
160
|
+
|
|
161
|
+
# Duration limit
|
|
162
|
+
if max_duration and info['duration'] > max_duration:
|
|
163
|
+
cmd.extend(['-t', str(max_duration)])
|
|
164
|
+
|
|
165
|
+
# Target size (rough estimate using bitrate)
|
|
166
|
+
if target_size_mb:
|
|
167
|
+
target_bits = target_size_mb * 8 * 1024 * 1024
|
|
168
|
+
duration = min(info['duration'], max_duration) if max_duration else info['duration']
|
|
169
|
+
target_bitrate = int(target_bits / duration)
|
|
170
|
+
# Reserve some for audio (128kbps)
|
|
171
|
+
video_bitrate = max(target_bitrate - 128000, 500000)
|
|
172
|
+
cmd.extend(['-b:v', str(video_bitrate)])
|
|
173
|
+
|
|
174
|
+
cmd.append(output_path)
|
|
175
|
+
|
|
176
|
+
if verbose:
|
|
177
|
+
print(f"\nOptimizing...")
|
|
178
|
+
print(f" Command: {' '.join(cmd)}")
|
|
179
|
+
|
|
180
|
+
try:
|
|
181
|
+
subprocess.run(cmd, check=True, capture_output=not verbose)
|
|
182
|
+
|
|
183
|
+
# Check output
|
|
184
|
+
output_info = get_media_info(output_path)
|
|
185
|
+
if output_info and verbose:
|
|
186
|
+
print(f"\nOutput: {Path(output_path).name}")
|
|
187
|
+
print(f" Size: {output_info['size'] / (1024*1024):.2f} MB")
|
|
188
|
+
print(f" Duration: {output_info['duration']:.2f}s")
|
|
189
|
+
if 'width' in output_info:
|
|
190
|
+
print(f" Resolution: {output_info['width']}x{output_info['height']}")
|
|
191
|
+
compression = (1 - output_info['size'] / info['size']) * 100
|
|
192
|
+
print(f" Compression: {compression:.1f}%")
|
|
193
|
+
|
|
194
|
+
return True
|
|
195
|
+
|
|
196
|
+
except subprocess.CalledProcessError as e:
|
|
197
|
+
print(f"Error optimizing video: {e}")
|
|
198
|
+
return False
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
def optimize_audio(
|
|
202
|
+
input_path: str,
|
|
203
|
+
output_path: str,
|
|
204
|
+
target_size_mb: Optional[int] = None,
|
|
205
|
+
bitrate: str = '64k',
|
|
206
|
+
sample_rate: int = 16000,
|
|
207
|
+
verbose: bool = False
|
|
208
|
+
) -> bool:
|
|
209
|
+
"""Optimize audio file for Gemini API."""
|
|
210
|
+
if not check_ffmpeg():
|
|
211
|
+
print("Error: ffmpeg not installed")
|
|
212
|
+
return False
|
|
213
|
+
|
|
214
|
+
info = get_media_info(input_path)
|
|
215
|
+
if not info:
|
|
216
|
+
print(f"Error: Could not read media info from {input_path}")
|
|
217
|
+
return False
|
|
218
|
+
|
|
219
|
+
if verbose:
|
|
220
|
+
print(f"Input: {Path(input_path).name}")
|
|
221
|
+
print(f" Size: {info['size'] / (1024*1024):.2f} MB")
|
|
222
|
+
print(f" Duration: {info['duration']:.2f}s")
|
|
223
|
+
|
|
224
|
+
# Build command
|
|
225
|
+
cmd = [
|
|
226
|
+
'ffmpeg', '-i', input_path, '-y',
|
|
227
|
+
'-c:a', 'aac',
|
|
228
|
+
'-b:a', bitrate,
|
|
229
|
+
'-ar', str(sample_rate),
|
|
230
|
+
'-ac', '1', # Mono (Gemini uses mono anyway)
|
|
231
|
+
output_path
|
|
232
|
+
]
|
|
233
|
+
|
|
234
|
+
if verbose:
|
|
235
|
+
print(f"\nOptimizing...")
|
|
236
|
+
|
|
237
|
+
try:
|
|
238
|
+
subprocess.run(cmd, check=True, capture_output=not verbose)
|
|
239
|
+
|
|
240
|
+
output_info = get_media_info(output_path)
|
|
241
|
+
if output_info and verbose:
|
|
242
|
+
print(f"\nOutput: {Path(output_path).name}")
|
|
243
|
+
print(f" Size: {output_info['size'] / (1024*1024):.2f} MB")
|
|
244
|
+
compression = (1 - output_info['size'] / info['size']) * 100
|
|
245
|
+
print(f" Compression: {compression:.1f}%")
|
|
246
|
+
|
|
247
|
+
return True
|
|
248
|
+
|
|
249
|
+
except subprocess.CalledProcessError as e:
|
|
250
|
+
print(f"Error optimizing audio: {e}")
|
|
251
|
+
return False
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
def optimize_image(
|
|
255
|
+
input_path: str,
|
|
256
|
+
output_path: str,
|
|
257
|
+
max_width: int = 1920,
|
|
258
|
+
quality: int = 85,
|
|
259
|
+
verbose: bool = False
|
|
260
|
+
) -> bool:
|
|
261
|
+
"""Optimize image file for Gemini API."""
|
|
262
|
+
try:
|
|
263
|
+
from PIL import Image
|
|
264
|
+
except ImportError:
|
|
265
|
+
print("Error: Pillow not installed")
|
|
266
|
+
print("Install with: pip install pillow")
|
|
267
|
+
return False
|
|
268
|
+
|
|
269
|
+
try:
|
|
270
|
+
img = Image.open(input_path)
|
|
271
|
+
|
|
272
|
+
if verbose:
|
|
273
|
+
print(f"Input: {Path(input_path).name}")
|
|
274
|
+
print(f" Size: {Path(input_path).stat().st_size / 1024:.2f} KB")
|
|
275
|
+
print(f" Resolution: {img.width}x{img.height}")
|
|
276
|
+
|
|
277
|
+
# Resize if needed
|
|
278
|
+
if img.width > max_width:
|
|
279
|
+
ratio = max_width / img.width
|
|
280
|
+
new_height = int(img.height * ratio)
|
|
281
|
+
img = img.resize((max_width, new_height), Image.Resampling.LANCZOS)
|
|
282
|
+
if verbose:
|
|
283
|
+
print(f" Resized to: {img.width}x{img.height}")
|
|
284
|
+
|
|
285
|
+
# Convert RGBA to RGB if saving as JPEG
|
|
286
|
+
if output_path.lower().endswith('.jpg') or output_path.lower().endswith('.jpeg'):
|
|
287
|
+
if img.mode == 'RGBA':
|
|
288
|
+
rgb_img = Image.new('RGB', img.size, (255, 255, 255))
|
|
289
|
+
rgb_img.paste(img, mask=img.split()[3])
|
|
290
|
+
img = rgb_img
|
|
291
|
+
|
|
292
|
+
# Save
|
|
293
|
+
img.save(output_path, quality=quality, optimize=True)
|
|
294
|
+
|
|
295
|
+
if verbose:
|
|
296
|
+
print(f"\nOutput: {Path(output_path).name}")
|
|
297
|
+
print(f" Size: {Path(output_path).stat().st_size / 1024:.2f} KB")
|
|
298
|
+
compression = (1 - Path(output_path).stat().st_size / Path(input_path).stat().st_size) * 100
|
|
299
|
+
print(f" Compression: {compression:.1f}%")
|
|
300
|
+
|
|
301
|
+
return True
|
|
302
|
+
|
|
303
|
+
except Exception as e:
|
|
304
|
+
print(f"Error optimizing image: {e}")
|
|
305
|
+
return False
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
def split_video(
|
|
309
|
+
input_path: str,
|
|
310
|
+
output_dir: str,
|
|
311
|
+
chunk_duration: int = 3600,
|
|
312
|
+
verbose: bool = False
|
|
313
|
+
) -> List[str]:
|
|
314
|
+
"""Split long video into chunks."""
|
|
315
|
+
if not check_ffmpeg():
|
|
316
|
+
print("Error: ffmpeg not installed")
|
|
317
|
+
return []
|
|
318
|
+
|
|
319
|
+
info = get_media_info(input_path)
|
|
320
|
+
if not info:
|
|
321
|
+
return []
|
|
322
|
+
|
|
323
|
+
total_duration = info['duration']
|
|
324
|
+
num_chunks = int(total_duration / chunk_duration) + 1
|
|
325
|
+
|
|
326
|
+
if num_chunks == 1:
|
|
327
|
+
if verbose:
|
|
328
|
+
print("Video is short enough, no splitting needed")
|
|
329
|
+
return [input_path]
|
|
330
|
+
|
|
331
|
+
Path(output_dir).mkdir(parents=True, exist_ok=True)
|
|
332
|
+
output_files = []
|
|
333
|
+
|
|
334
|
+
for i in range(num_chunks):
|
|
335
|
+
start_time = i * chunk_duration
|
|
336
|
+
output_file = Path(output_dir) / f"{Path(input_path).stem}_chunk_{i+1}.mp4"
|
|
337
|
+
|
|
338
|
+
cmd = [
|
|
339
|
+
'ffmpeg', '-i', input_path, '-y',
|
|
340
|
+
'-ss', str(start_time),
|
|
341
|
+
'-t', str(chunk_duration),
|
|
342
|
+
'-c', 'copy',
|
|
343
|
+
str(output_file)
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
if verbose:
|
|
347
|
+
print(f"Creating chunk {i+1}/{num_chunks}...")
|
|
348
|
+
|
|
349
|
+
try:
|
|
350
|
+
subprocess.run(cmd, check=True, capture_output=not verbose)
|
|
351
|
+
output_files.append(str(output_file))
|
|
352
|
+
except subprocess.CalledProcessError as e:
|
|
353
|
+
print(f"Error creating chunk {i+1}: {e}")
|
|
354
|
+
|
|
355
|
+
return output_files
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
def main():
|
|
359
|
+
parser = argparse.ArgumentParser(
|
|
360
|
+
description='Optimize media files for Gemini API',
|
|
361
|
+
formatter_class=argparse.RawDescriptionHelpFormatter,
|
|
362
|
+
epilog="""
|
|
363
|
+
Examples:
|
|
364
|
+
# Optimize video to 100MB
|
|
365
|
+
%(prog)s --input video.mp4 --output optimized.mp4 --target-size 100
|
|
366
|
+
|
|
367
|
+
# Optimize audio
|
|
368
|
+
%(prog)s --input audio.mp3 --output optimized.m4a --bitrate 64k
|
|
369
|
+
|
|
370
|
+
# Resize image
|
|
371
|
+
%(prog)s --input image.jpg --output resized.jpg --max-width 1920
|
|
372
|
+
|
|
373
|
+
# Split long video
|
|
374
|
+
%(prog)s --input long-video.mp4 --split --chunk-duration 3600 --output-dir ./chunks
|
|
375
|
+
|
|
376
|
+
# Batch optimize directory
|
|
377
|
+
%(prog)s --input-dir ./videos --output-dir ./optimized --quality 85
|
|
378
|
+
"""
|
|
379
|
+
)
|
|
380
|
+
|
|
381
|
+
parser.add_argument('--input', help='Input file')
|
|
382
|
+
parser.add_argument('--output', help='Output file')
|
|
383
|
+
parser.add_argument('--input-dir', help='Input directory for batch processing')
|
|
384
|
+
parser.add_argument('--output-dir', help='Output directory for batch processing')
|
|
385
|
+
parser.add_argument('--target-size', type=int, help='Target size in MB')
|
|
386
|
+
parser.add_argument('--quality', type=int, default=85,
|
|
387
|
+
help='Quality (video: 0-51 CRF, image: 1-100) (default: 85)')
|
|
388
|
+
parser.add_argument('--max-width', type=int, default=1920,
|
|
389
|
+
help='Max image width (default: 1920)')
|
|
390
|
+
parser.add_argument('--bitrate', default='64k',
|
|
391
|
+
help='Audio bitrate (default: 64k)')
|
|
392
|
+
parser.add_argument('--resolution', help='Video resolution (e.g., 1920x1080)')
|
|
393
|
+
parser.add_argument('--split', action='store_true', help='Split long video into chunks')
|
|
394
|
+
parser.add_argument('--chunk-duration', type=int, default=3600,
|
|
395
|
+
help='Chunk duration in seconds (default: 3600 = 1 hour)')
|
|
396
|
+
parser.add_argument('--verbose', '-v', action='store_true', help='Verbose output')
|
|
397
|
+
|
|
398
|
+
args = parser.parse_args()
|
|
399
|
+
|
|
400
|
+
# Validate arguments
|
|
401
|
+
if not args.input and not args.input_dir:
|
|
402
|
+
parser.error("Either --input or --input-dir required")
|
|
403
|
+
|
|
404
|
+
# Single file processing
|
|
405
|
+
if args.input:
|
|
406
|
+
input_path = Path(args.input)
|
|
407
|
+
if not input_path.exists():
|
|
408
|
+
print(f"Error: Input file not found: {input_path}")
|
|
409
|
+
sys.exit(1)
|
|
410
|
+
|
|
411
|
+
if args.split:
|
|
412
|
+
output_dir = args.output_dir or './chunks'
|
|
413
|
+
chunks = split_video(str(input_path), output_dir, args.chunk_duration, args.verbose)
|
|
414
|
+
print(f"\nCreated {len(chunks)} chunks in {output_dir}")
|
|
415
|
+
sys.exit(0)
|
|
416
|
+
|
|
417
|
+
if not args.output:
|
|
418
|
+
parser.error("--output required for single file processing")
|
|
419
|
+
|
|
420
|
+
output_path = Path(args.output)
|
|
421
|
+
output_path.parent.mkdir(parents=True, exist_ok=True)
|
|
422
|
+
|
|
423
|
+
# Determine file type
|
|
424
|
+
ext = input_path.suffix.lower()
|
|
425
|
+
|
|
426
|
+
if ext in ['.mp4', '.mov', '.avi', '.mkv', '.webm', '.flv']:
|
|
427
|
+
success = optimize_video(
|
|
428
|
+
str(input_path),
|
|
429
|
+
str(output_path),
|
|
430
|
+
target_size_mb=args.target_size,
|
|
431
|
+
quality=args.quality,
|
|
432
|
+
resolution=args.resolution,
|
|
433
|
+
verbose=args.verbose
|
|
434
|
+
)
|
|
435
|
+
elif ext in ['.mp3', '.wav', '.m4a', '.flac', '.aac']:
|
|
436
|
+
success = optimize_audio(
|
|
437
|
+
str(input_path),
|
|
438
|
+
str(output_path),
|
|
439
|
+
target_size_mb=args.target_size,
|
|
440
|
+
bitrate=args.bitrate,
|
|
441
|
+
verbose=args.verbose
|
|
442
|
+
)
|
|
443
|
+
elif ext in ['.jpg', '.jpeg', '.png', '.webp']:
|
|
444
|
+
success = optimize_image(
|
|
445
|
+
str(input_path),
|
|
446
|
+
str(output_path),
|
|
447
|
+
max_width=args.max_width,
|
|
448
|
+
quality=args.quality,
|
|
449
|
+
verbose=args.verbose
|
|
450
|
+
)
|
|
451
|
+
else:
|
|
452
|
+
print(f"Error: Unsupported file type: {ext}")
|
|
453
|
+
sys.exit(1)
|
|
454
|
+
|
|
455
|
+
sys.exit(0 if success else 1)
|
|
456
|
+
|
|
457
|
+
# Batch processing
|
|
458
|
+
if args.input_dir:
|
|
459
|
+
if not args.output_dir:
|
|
460
|
+
parser.error("--output-dir required for batch processing")
|
|
461
|
+
|
|
462
|
+
input_dir = Path(args.input_dir)
|
|
463
|
+
output_dir = Path(args.output_dir)
|
|
464
|
+
output_dir.mkdir(parents=True, exist_ok=True)
|
|
465
|
+
|
|
466
|
+
# Find all media files
|
|
467
|
+
patterns = ['*.mp4', '*.mov', '*.avi', '*.mkv', '*.webm',
|
|
468
|
+
'*.mp3', '*.wav', '*.m4a', '*.flac',
|
|
469
|
+
'*.jpg', '*.jpeg', '*.png', '*.webp']
|
|
470
|
+
|
|
471
|
+
files = []
|
|
472
|
+
for pattern in patterns:
|
|
473
|
+
files.extend(input_dir.glob(pattern))
|
|
474
|
+
|
|
475
|
+
if not files:
|
|
476
|
+
print(f"No media files found in {input_dir}")
|
|
477
|
+
sys.exit(1)
|
|
478
|
+
|
|
479
|
+
print(f"Found {len(files)} files to process")
|
|
480
|
+
|
|
481
|
+
success_count = 0
|
|
482
|
+
for input_file in files:
|
|
483
|
+
output_file = output_dir / input_file.name
|
|
484
|
+
|
|
485
|
+
ext = input_file.suffix.lower()
|
|
486
|
+
success = False
|
|
487
|
+
|
|
488
|
+
if ext in ['.mp4', '.mov', '.avi', '.mkv', '.webm', '.flv']:
|
|
489
|
+
success = optimize_video(str(input_file), str(output_file),
|
|
490
|
+
quality=args.quality, verbose=args.verbose)
|
|
491
|
+
elif ext in ['.mp3', '.wav', '.m4a', '.flac', '.aac']:
|
|
492
|
+
success = optimize_audio(str(input_file), str(output_file),
|
|
493
|
+
bitrate=args.bitrate, verbose=args.verbose)
|
|
494
|
+
elif ext in ['.jpg', '.jpeg', '.png', '.webp']:
|
|
495
|
+
success = optimize_image(str(input_file), str(output_file),
|
|
496
|
+
max_width=args.max_width, quality=args.quality,
|
|
497
|
+
verbose=args.verbose)
|
|
498
|
+
|
|
499
|
+
if success:
|
|
500
|
+
success_count += 1
|
|
501
|
+
|
|
502
|
+
print(f"\nProcessed: {success_count}/{len(files)} files")
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
if __name__ == '__main__':
|
|
506
|
+
main()
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# AI Multimodal Skill Dependencies
|
|
2
|
+
# Python 3.10+ required
|
|
3
|
+
|
|
4
|
+
# Google Gemini API
|
|
5
|
+
google-genai>=0.1.0
|
|
6
|
+
|
|
7
|
+
# PDF processing
|
|
8
|
+
pypdf>=4.0.0
|
|
9
|
+
|
|
10
|
+
# Document conversion
|
|
11
|
+
python-docx>=1.0.0
|
|
12
|
+
docx2pdf>=0.1.8 # Windows only, optional on Linux/macOS
|
|
13
|
+
|
|
14
|
+
# Markdown processing
|
|
15
|
+
markdown>=3.5.0
|
|
16
|
+
|
|
17
|
+
# Image processing
|
|
18
|
+
Pillow>=10.0.0
|
|
19
|
+
|
|
20
|
+
# Environment variable management
|
|
21
|
+
python-dotenv>=1.0.0
|
|
22
|
+
|
|
23
|
+
# Testing dependencies (dev)
|
|
24
|
+
pytest>=8.0.0
|
|
25
|
+
pytest-cov>=4.1.0
|
|
26
|
+
pytest-mock>=3.12.0
|
|
Binary file
|