anchi-toolkit 1.2.0 → 1.2.2
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/dist/.ai-memory/context.json +26 -0
- package/dist/.ai-memory/decisions.json +3 -0
- package/dist/.antigravity/agent-skill-index.yaml +411 -0
- package/dist/.antigravity/agents/brainstormer.md +115 -0
- package/dist/.antigravity/agents/code-reviewer.md +168 -0
- package/dist/.antigravity/agents/copywriter.md +110 -0
- package/dist/.antigravity/agents/database-admin.md +104 -0
- package/dist/.antigravity/agents/ddd-architect.md +128 -0
- package/dist/.antigravity/agents/debugger.md +149 -0
- package/dist/.antigravity/agents/design-system-architect.md +166 -0
- package/dist/.antigravity/agents/docs-manager.md +133 -0
- package/dist/.antigravity/agents/fullstack-developer.md +105 -0
- package/dist/.antigravity/agents/git-manager.md +321 -0
- package/dist/.antigravity/agents/journal-writer.md +113 -0
- package/dist/.antigravity/agents/mcp-manager.md +93 -0
- package/dist/.antigravity/agents/planner.md +61 -0
- package/dist/.antigravity/agents/project-manager.md +131 -0
- package/dist/.antigravity/agents/researcher.md +50 -0
- package/dist/.antigravity/agents/scout-external.md +151 -0
- package/dist/.antigravity/agents/scout.md +117 -0
- package/dist/.antigravity/agents/tester.md +117 -0
- package/dist/.antigravity/agents/ui-ux-designer.md +233 -0
- package/dist/.antigravity/anchi-toolkit.config.yaml +12 -0
- package/dist/.antigravity/failure-modes.yaml +148 -0
- package/dist/.antigravity/orchestration.yaml +126 -0
- package/dist/.antigravity/skills/INSTALLATION.md +360 -0
- package/dist/.antigravity/skills/SKILLS_INDEX.md +118 -0
- package/dist/.antigravity/skills/THIRD_PARTY_NOTICES.md +405 -0
- package/dist/.antigravity/skills/_template.md +30 -0
- package/dist/.antigravity/skills/aesthetic/SKILL.md +121 -0
- package/dist/.antigravity/skills/aesthetic/assets/design-guideline-template.md +163 -0
- package/dist/.antigravity/skills/aesthetic/assets/design-story-template.md +135 -0
- package/dist/.antigravity/skills/aesthetic/references/design-principles.md +62 -0
- package/dist/.antigravity/skills/aesthetic/references/design-resources.md +75 -0
- package/dist/.antigravity/skills/aesthetic/references/micro-interactions.md +53 -0
- package/dist/.antigravity/skills/aesthetic/references/storytelling-design.md +50 -0
- package/dist/.antigravity/skills/agent_skills_spec.md +55 -0
- package/dist/.antigravity/skills/ai-multimodal/SKILL.md +65 -0
- package/dist/.antigravity/skills/ai-multimodal/references/audio-processing.md +386 -0
- package/dist/.antigravity/skills/ai-multimodal/references/image-generation.md +722 -0
- package/dist/.antigravity/skills/ai-multimodal/references/video-analysis.md +515 -0
- package/dist/.antigravity/skills/ai-multimodal/references/video-generation.md +457 -0
- package/dist/.antigravity/skills/ai-multimodal/references/vision-understanding.md +492 -0
- package/dist/.antigravity/skills/ai-multimodal/scripts/check_setup.py +299 -0
- package/dist/.antigravity/skills/ai-multimodal/scripts/document_converter.py +395 -0
- package/dist/.antigravity/skills/ai-multimodal/scripts/gemini_batch_process.py +896 -0
- package/dist/.antigravity/skills/ai-multimodal/scripts/media_optimizer.py +506 -0
- package/dist/.antigravity/skills/ai-multimodal/scripts/requirements.txt +26 -0
- package/dist/.antigravity/skills/ai-multimodal/scripts/tests/requirements.txt +20 -0
- package/dist/.antigravity/skills/ai-multimodal/scripts/tests/test_document_converter.py +74 -0
- package/dist/.antigravity/skills/ai-multimodal/scripts/tests/test_failures.log +258 -0
- package/dist/.antigravity/skills/ai-multimodal/scripts/tests/test_gemini_batch_process.py +362 -0
- package/dist/.antigravity/skills/ai-multimodal/scripts/tests/test_media_optimizer.py +373 -0
- package/dist/.antigravity/skills/backend-development/SKILL.md +95 -0
- package/dist/.antigravity/skills/backend-development/references/backend-api-design.md +495 -0
- package/dist/.antigravity/skills/backend-development/references/backend-architecture.md +454 -0
- package/dist/.antigravity/skills/backend-development/references/backend-authentication.md +338 -0
- package/dist/.antigravity/skills/backend-development/references/backend-code-quality.md +659 -0
- package/dist/.antigravity/skills/backend-development/references/backend-debugging.md +904 -0
- package/dist/.antigravity/skills/backend-development/references/backend-devops.md +494 -0
- package/dist/.antigravity/skills/backend-development/references/backend-mindset.md +387 -0
- package/dist/.antigravity/skills/backend-development/references/backend-performance.md +397 -0
- package/dist/.antigravity/skills/backend-development/references/backend-security.md +290 -0
- package/dist/.antigravity/skills/backend-development/references/backend-technologies.md +256 -0
- package/dist/.antigravity/skills/backend-development/references/backend-testing.md +429 -0
- package/dist/.antigravity/skills/better-auth/SKILL.md +204 -0
- package/dist/.antigravity/skills/better-auth/references/advanced-features.md +553 -0
- package/dist/.antigravity/skills/better-auth/references/database-integration.md +577 -0
- package/dist/.antigravity/skills/better-auth/references/email-password-auth.md +416 -0
- package/dist/.antigravity/skills/better-auth/references/oauth-providers.md +430 -0
- package/dist/.antigravity/skills/better-auth/scripts/better_auth_init.py +521 -0
- package/dist/.antigravity/skills/better-auth/scripts/requirements.txt +15 -0
- package/dist/.antigravity/skills/better-auth/scripts/tests/test_better_auth_init.py +421 -0
- package/dist/.antigravity/skills/chrome-devtools/SKILL.md +360 -0
- package/dist/.antigravity/skills/chrome-devtools/references/cdp-domains.md +694 -0
- package/dist/.antigravity/skills/chrome-devtools/references/performance-guide.md +940 -0
- package/dist/.antigravity/skills/chrome-devtools/references/puppeteer-reference.md +953 -0
- package/dist/.antigravity/skills/chrome-devtools/scripts/__tests__/selector.test.js +210 -0
- package/dist/.antigravity/skills/chrome-devtools/scripts/click.js +79 -0
- package/dist/.antigravity/skills/chrome-devtools/scripts/console.js +75 -0
- package/dist/.antigravity/skills/chrome-devtools/scripts/evaluate.js +49 -0
- package/dist/.antigravity/skills/chrome-devtools/scripts/fill.js +72 -0
- package/dist/.antigravity/skills/chrome-devtools/scripts/install-deps.sh +181 -0
- package/dist/.antigravity/skills/chrome-devtools/scripts/install.sh +83 -0
- package/dist/.antigravity/skills/chrome-devtools/scripts/lib/browser.js +122 -0
- package/dist/.antigravity/skills/chrome-devtools/scripts/lib/selector.js +178 -0
- package/dist/.antigravity/skills/chrome-devtools/scripts/navigate.js +46 -0
- package/dist/.antigravity/skills/chrome-devtools/scripts/network.js +102 -0
- package/dist/.antigravity/skills/chrome-devtools/scripts/package.json +15 -0
- package/dist/.antigravity/skills/chrome-devtools/scripts/performance.js +145 -0
- package/dist/.antigravity/skills/chrome-devtools/scripts/screenshot.js +180 -0
- package/dist/.antigravity/skills/chrome-devtools/scripts/snapshot.js +131 -0
- package/dist/.antigravity/skills/claude-code/references/advanced-features.md +399 -0
- package/dist/.antigravity/skills/claude-code/references/agent-skills.md +399 -0
- package/dist/.antigravity/skills/claude-code/references/api-reference.md +498 -0
- package/dist/.antigravity/skills/claude-code/references/best-practices.md +447 -0
- package/dist/.antigravity/skills/claude-code/references/cicd-integration.md +428 -0
- package/dist/.antigravity/skills/claude-code/references/common-workflows.md +119 -0
- package/dist/.antigravity/skills/claude-code/references/configuration.md +480 -0
- package/dist/.antigravity/skills/claude-code/references/enterprise-features.md +472 -0
- package/dist/.antigravity/skills/claude-code/references/getting-started.md +252 -0
- package/dist/.antigravity/skills/claude-code/references/hooks-and-plugins.md +444 -0
- package/dist/.antigravity/skills/claude-code/references/hooks-comprehensive.md +622 -0
- package/dist/.antigravity/skills/claude-code/references/ide-integration.md +316 -0
- package/dist/.antigravity/skills/claude-code/references/mcp-integration.md +386 -0
- package/dist/.antigravity/skills/claude-code/references/slash-commands.md +489 -0
- package/dist/.antigravity/skills/claude-code/references/troubleshooting.md +456 -0
- package/dist/.antigravity/skills/claude-code/skill.md +60 -0
- package/dist/.antigravity/skills/code-review/SKILL.md +143 -0
- package/dist/.antigravity/skills/code-review/references/code-review-reception.md +209 -0
- package/dist/.antigravity/skills/code-review/references/requesting-code-review.md +105 -0
- package/dist/.antigravity/skills/code-review/references/verification-before-completion.md +139 -0
- package/dist/.antigravity/skills/common/api_key_helper.py +300 -0
- package/dist/.antigravity/skills/databases/SKILL.md +232 -0
- package/dist/.antigravity/skills/databases/references/mongodb-aggregation.md +447 -0
- package/dist/.antigravity/skills/databases/references/mongodb-atlas.md +465 -0
- package/dist/.antigravity/skills/databases/references/mongodb-crud.md +408 -0
- package/dist/.antigravity/skills/databases/references/mongodb-indexing.md +442 -0
- package/dist/.antigravity/skills/databases/references/postgresql-administration.md +594 -0
- package/dist/.antigravity/skills/databases/references/postgresql-performance.md +527 -0
- package/dist/.antigravity/skills/databases/references/postgresql-psql-cli.md +467 -0
- package/dist/.antigravity/skills/databases/references/postgresql-queries.md +475 -0
- package/dist/.antigravity/skills/databases/scripts/db_backup.py +502 -0
- package/dist/.antigravity/skills/databases/scripts/db_migrate.py +414 -0
- package/dist/.antigravity/skills/databases/scripts/db_performance_check.py +444 -0
- package/dist/.antigravity/skills/databases/scripts/requirements.txt +20 -0
- package/dist/.antigravity/skills/databases/scripts/tests/coverage-db.json +1 -0
- package/dist/.antigravity/skills/databases/scripts/tests/requirements.txt +4 -0
- package/dist/.antigravity/skills/databases/scripts/tests/test_db_backup.py +340 -0
- package/dist/.antigravity/skills/databases/scripts/tests/test_db_migrate.py +277 -0
- package/dist/.antigravity/skills/databases/scripts/tests/test_db_performance_check.py +370 -0
- package/dist/.antigravity/skills/debugging/SKILL.md +84 -0
- package/dist/.antigravity/skills/debugging/references/defense-in-depth.md +124 -0
- package/dist/.antigravity/skills/debugging/references/root-cause-tracing.md +122 -0
- package/dist/.antigravity/skills/debugging/references/systematic-debugging.md +102 -0
- package/dist/.antigravity/skills/debugging/references/verification.md +123 -0
- package/dist/.antigravity/skills/debugging/scripts/find-polluter.sh +63 -0
- package/dist/.antigravity/skills/debugging/scripts/find-polluter.test.md +102 -0
- package/dist/.antigravity/skills/devops/SKILL.md +285 -0
- package/dist/.antigravity/skills/devops/references/browser-rendering.md +305 -0
- package/dist/.antigravity/skills/devops/references/cloudflare-d1-kv.md +123 -0
- package/dist/.antigravity/skills/devops/references/cloudflare-platform.md +271 -0
- package/dist/.antigravity/skills/devops/references/cloudflare-r2-storage.md +280 -0
- package/dist/.antigravity/skills/devops/references/cloudflare-workers-advanced.md +312 -0
- package/dist/.antigravity/skills/devops/references/cloudflare-workers-apis.md +309 -0
- package/dist/.antigravity/skills/devops/references/cloudflare-workers-basics.md +418 -0
- package/dist/.antigravity/skills/devops/references/docker-basics.md +297 -0
- package/dist/.antigravity/skills/devops/references/docker-compose.md +292 -0
- package/dist/.antigravity/skills/devops/references/gcloud-platform.md +297 -0
- package/dist/.antigravity/skills/devops/references/gcloud-services.md +304 -0
- package/dist/.antigravity/skills/devops/scripts/cloudflare_deploy.py +269 -0
- package/dist/.antigravity/skills/devops/scripts/docker_optimize.py +320 -0
- package/dist/.antigravity/skills/devops/scripts/requirements.txt +20 -0
- package/dist/.antigravity/skills/devops/scripts/tests/requirements.txt +3 -0
- package/dist/.antigravity/skills/devops/scripts/tests/test_cloudflare_deploy.py +285 -0
- package/dist/.antigravity/skills/devops/scripts/tests/test_docker_optimize.py +436 -0
- package/dist/.antigravity/skills/docs-seeker/SKILL.md +97 -0
- package/dist/.antigravity/skills/docs-seeker/package.json +25 -0
- package/dist/.antigravity/skills/docs-seeker/references/advanced.md +79 -0
- package/dist/.antigravity/skills/docs-seeker/references/context7-patterns.md +68 -0
- package/dist/.antigravity/skills/docs-seeker/references/errors.md +68 -0
- package/dist/.antigravity/skills/docs-seeker/scripts/analyze-llms-txt.js +211 -0
- package/dist/.antigravity/skills/docs-seeker/scripts/detect-topic.js +172 -0
- package/dist/.antigravity/skills/docs-seeker/scripts/fetch-docs.js +213 -0
- package/dist/.antigravity/skills/docs-seeker/scripts/tests/run-tests.js +72 -0
- package/dist/.antigravity/skills/docs-seeker/scripts/tests/test-analyze-llms.js +119 -0
- package/dist/.antigravity/skills/docs-seeker/scripts/tests/test-detect-topic.js +112 -0
- package/dist/.antigravity/skills/docs-seeker/scripts/tests/test-fetch-docs.js +84 -0
- package/dist/.antigravity/skills/docs-seeker/scripts/utils/env-loader.js +94 -0
- package/dist/.antigravity/skills/docs-seeker/workflows/library-search.md +87 -0
- package/dist/.antigravity/skills/docs-seeker/workflows/repo-analysis.md +91 -0
- package/dist/.antigravity/skills/docs-seeker/workflows/topic-search.md +77 -0
- package/dist/.antigravity/skills/document-skills/docx/LICENSE.txt +30 -0
- package/dist/.antigravity/skills/document-skills/docx/SKILL.md +197 -0
- package/dist/.antigravity/skills/document-skills/docx/docx-js.md +350 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/scripts/pack.py +159 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/scripts/unpack.py +29 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/scripts/validate.py +69 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/scripts/validation/__init__.py +15 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/scripts/validation/base.py +951 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/scripts/validation/docx.py +274 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/scripts/validation/pptx.py +315 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml/scripts/validation/redlining.py +279 -0
- package/dist/.antigravity/skills/document-skills/docx/ooxml.md +610 -0
- package/dist/.antigravity/skills/document-skills/docx/scripts/__init__.py +1 -0
- package/dist/.antigravity/skills/document-skills/docx/scripts/document.py +1276 -0
- package/dist/.antigravity/skills/document-skills/docx/scripts/templates/comments.xml +3 -0
- package/dist/.antigravity/skills/document-skills/docx/scripts/templates/commentsExtended.xml +3 -0
- package/dist/.antigravity/skills/document-skills/docx/scripts/templates/commentsExtensible.xml +3 -0
- package/dist/.antigravity/skills/document-skills/docx/scripts/templates/commentsIds.xml +3 -0
- package/dist/.antigravity/skills/document-skills/docx/scripts/templates/people.xml +3 -0
- package/dist/.antigravity/skills/document-skills/docx/scripts/utilities.py +374 -0
- package/dist/.antigravity/skills/document-skills/pdf/LICENSE.txt +30 -0
- package/dist/.antigravity/skills/document-skills/pdf/SKILL.md +294 -0
- package/dist/.antigravity/skills/document-skills/pdf/forms.md +205 -0
- package/dist/.antigravity/skills/document-skills/pdf/reference.md +612 -0
- package/dist/.antigravity/skills/document-skills/pdf/scripts/check_bounding_boxes.py +70 -0
- package/dist/.antigravity/skills/document-skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
- package/dist/.antigravity/skills/document-skills/pdf/scripts/check_fillable_fields.py +12 -0
- package/dist/.antigravity/skills/document-skills/pdf/scripts/convert_pdf_to_images.py +35 -0
- package/dist/.antigravity/skills/document-skills/pdf/scripts/create_validation_image.py +41 -0
- package/dist/.antigravity/skills/document-skills/pdf/scripts/extract_form_field_info.py +152 -0
- package/dist/.antigravity/skills/document-skills/pdf/scripts/fill_fillable_fields.py +114 -0
- package/dist/.antigravity/skills/document-skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
- package/dist/.antigravity/skills/document-skills/pptx/LICENSE.txt +30 -0
- package/dist/.antigravity/skills/document-skills/pptx/SKILL.md +484 -0
- package/dist/.antigravity/skills/document-skills/pptx/html2pptx.md +625 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/mce/mc.xsd +75 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/scripts/pack.py +159 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/scripts/unpack.py +29 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/scripts/validate.py +69 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/scripts/validation/__init__.py +15 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/scripts/validation/base.py +951 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/scripts/validation/docx.py +274 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/scripts/validation/pptx.py +315 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml/scripts/validation/redlining.py +279 -0
- package/dist/.antigravity/skills/document-skills/pptx/ooxml.md +427 -0
- package/dist/.antigravity/skills/document-skills/pptx/scripts/html2pptx.js +979 -0
- package/dist/.antigravity/skills/document-skills/pptx/scripts/inventory.py +1020 -0
- package/dist/.antigravity/skills/document-skills/pptx/scripts/rearrange.py +231 -0
- package/dist/.antigravity/skills/document-skills/pptx/scripts/replace.py +385 -0
- package/dist/.antigravity/skills/document-skills/pptx/scripts/thumbnail.py +450 -0
- package/dist/.antigravity/skills/document-skills/xlsx/LICENSE.txt +30 -0
- package/dist/.antigravity/skills/document-skills/xlsx/SKILL.md +289 -0
- package/dist/.antigravity/skills/document-skills/xlsx/recalc.py +178 -0
- package/dist/.antigravity/skills/frontend-design/SKILL.md +91 -0
- package/dist/.antigravity/skills/frontend-design/references/ai-multimodal-overview.md +165 -0
- package/dist/.antigravity/skills/frontend-design/references/analysis-best-practices.md +80 -0
- package/dist/.antigravity/skills/frontend-design/references/analysis-prompts.md +141 -0
- package/dist/.antigravity/skills/frontend-design/references/analysis-techniques.md +118 -0
- package/dist/.antigravity/skills/frontend-design/references/animejs.md +396 -0
- package/dist/.antigravity/skills/frontend-design/references/asset-generation.md +337 -0
- package/dist/.antigravity/skills/frontend-design/references/design-extraction-overview.md +71 -0
- package/dist/.antigravity/skills/frontend-design/references/extraction-best-practices.md +141 -0
- package/dist/.antigravity/skills/frontend-design/references/extraction-output-templates.md +162 -0
- package/dist/.antigravity/skills/frontend-design/references/extraction-prompts.md +127 -0
- package/dist/.antigravity/skills/frontend-design/references/technical-accessibility.md +119 -0
- package/dist/.antigravity/skills/frontend-design/references/technical-best-practices.md +97 -0
- package/dist/.antigravity/skills/frontend-design/references/technical-optimization.md +44 -0
- package/dist/.antigravity/skills/frontend-design/references/technical-overview.md +90 -0
- package/dist/.antigravity/skills/frontend-design/references/technical-workflows.md +150 -0
- package/dist/.antigravity/skills/frontend-design/references/visual-analysis-overview.md +95 -0
- package/dist/.antigravity/skills/frontend-design-pro/SKILL.md +58 -0
- package/dist/.antigravity/skills/frontend-development/SKILL.md +399 -0
- package/dist/.antigravity/skills/frontend-development/resources/common-patterns.md +331 -0
- package/dist/.antigravity/skills/frontend-development/resources/complete-examples.md +872 -0
- package/dist/.antigravity/skills/frontend-development/resources/component-patterns.md +502 -0
- package/dist/.antigravity/skills/frontend-development/resources/data-fetching.md +767 -0
- package/dist/.antigravity/skills/frontend-development/resources/file-organization.md +502 -0
- package/dist/.antigravity/skills/frontend-development/resources/loading-and-error-states.md +501 -0
- package/dist/.antigravity/skills/frontend-development/resources/performance.md +406 -0
- package/dist/.antigravity/skills/frontend-development/resources/routing-guide.md +364 -0
- package/dist/.antigravity/skills/frontend-development/resources/styling-guide.md +428 -0
- package/dist/.antigravity/skills/frontend-development/resources/typescript-standards.md +418 -0
- package/dist/.antigravity/skills/google-adk-python/SKILL.md +237 -0
- package/dist/.antigravity/skills/install.ps1 +600 -0
- package/dist/.antigravity/skills/install.sh +685 -0
- package/dist/.antigravity/skills/mcp-builder/LICENSE.txt +202 -0
- package/dist/.antigravity/skills/mcp-builder/SKILL.md +328 -0
- package/dist/.antigravity/skills/mcp-builder/reference/evaluation.md +602 -0
- package/dist/.antigravity/skills/mcp-builder/reference/mcp_best_practices.md +915 -0
- package/dist/.antigravity/skills/mcp-builder/reference/node_mcp_server.md +916 -0
- package/dist/.antigravity/skills/mcp-builder/reference/python_mcp_server.md +752 -0
- package/dist/.antigravity/skills/mcp-builder/scripts/connections.py +151 -0
- package/dist/.antigravity/skills/mcp-builder/scripts/evaluation.py +373 -0
- package/dist/.antigravity/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
- package/dist/.antigravity/skills/mcp-builder/scripts/requirements.txt +2 -0
- package/dist/.antigravity/skills/mcp-management/SKILL.md +209 -0
- package/dist/.antigravity/skills/mcp-management/assets/tools.json +3146 -0
- package/dist/.antigravity/skills/mcp-management/references/configuration.md +114 -0
- package/dist/.antigravity/skills/mcp-management/references/gemini-cli-integration.md +215 -0
- package/dist/.antigravity/skills/mcp-management/references/mcp-protocol.md +116 -0
- package/dist/.antigravity/skills/mcp-management/scripts/cli.ts +195 -0
- package/dist/.antigravity/skills/mcp-management/scripts/mcp-client.ts +230 -0
- package/dist/.antigravity/skills/mcp-management/scripts/package.json +20 -0
- package/dist/.antigravity/skills/mcp-management/scripts/tsconfig.json +15 -0
- package/dist/.antigravity/skills/media-processing/SKILL.md +91 -0
- package/dist/.antigravity/skills/media-processing/references/common-workflows.md +132 -0
- package/dist/.antigravity/skills/media-processing/references/ffmpeg-encoding.md +358 -0
- package/dist/.antigravity/skills/media-processing/references/ffmpeg-filters.md +503 -0
- package/dist/.antigravity/skills/media-processing/references/ffmpeg-streaming.md +403 -0
- package/dist/.antigravity/skills/media-processing/references/format-compatibility.md +375 -0
- package/dist/.antigravity/skills/media-processing/references/imagemagick-batch.md +612 -0
- package/dist/.antigravity/skills/media-processing/references/imagemagick-editing.md +623 -0
- package/dist/.antigravity/skills/media-processing/references/rmbg-background-removal.md +66 -0
- package/dist/.antigravity/skills/media-processing/references/troubleshooting.md +109 -0
- package/dist/.antigravity/skills/media-processing/scripts/batch-remove-background.sh +124 -0
- package/dist/.antigravity/skills/media-processing/scripts/batch_resize.py +342 -0
- package/dist/.antigravity/skills/media-processing/scripts/media_convert.py +311 -0
- package/dist/.antigravity/skills/media-processing/scripts/remove-background.sh +96 -0
- package/dist/.antigravity/skills/media-processing/scripts/remove-bg-node.js +158 -0
- package/dist/.antigravity/skills/media-processing/scripts/requirements.txt +24 -0
- package/dist/.antigravity/skills/media-processing/scripts/tests/requirements.txt +2 -0
- package/dist/.antigravity/skills/media-processing/scripts/tests/test_batch_resize.py +372 -0
- package/dist/.antigravity/skills/media-processing/scripts/tests/test_media_convert.py +259 -0
- package/dist/.antigravity/skills/media-processing/scripts/tests/test_video_optimize.py +397 -0
- package/dist/.antigravity/skills/media-processing/scripts/video_optimize.py +414 -0
- package/dist/.antigravity/skills/mobile-development/SKILL.md +212 -0
- package/dist/.antigravity/skills/mobile-development/references/mobile-android.md +604 -0
- package/dist/.antigravity/skills/mobile-development/references/mobile-best-practices.md +545 -0
- package/dist/.antigravity/skills/mobile-development/references/mobile-debugging.md +1089 -0
- package/dist/.antigravity/skills/mobile-development/references/mobile-frameworks.md +465 -0
- package/dist/.antigravity/skills/mobile-development/references/mobile-ios.md +496 -0
- package/dist/.antigravity/skills/mobile-development/references/mobile-mindset.md +544 -0
- package/dist/.antigravity/skills/payment-integration/SKILL.md +118 -0
- package/dist/.antigravity/skills/payment-integration/references/polar/benefits.md +396 -0
- package/dist/.antigravity/skills/payment-integration/references/polar/best-practices.md +482 -0
- package/dist/.antigravity/skills/payment-integration/references/polar/checkouts.md +266 -0
- package/dist/.antigravity/skills/payment-integration/references/polar/overview.md +184 -0
- package/dist/.antigravity/skills/payment-integration/references/polar/products.md +244 -0
- package/dist/.antigravity/skills/payment-integration/references/polar/sdk.md +436 -0
- package/dist/.antigravity/skills/payment-integration/references/polar/subscriptions.md +340 -0
- package/dist/.antigravity/skills/payment-integration/references/polar/webhooks.md +405 -0
- package/dist/.antigravity/skills/payment-integration/references/sepay/api.md +140 -0
- package/dist/.antigravity/skills/payment-integration/references/sepay/best-practices.md +337 -0
- package/dist/.antigravity/skills/payment-integration/references/sepay/overview.md +138 -0
- package/dist/.antigravity/skills/payment-integration/references/sepay/qr-codes.md +228 -0
- package/dist/.antigravity/skills/payment-integration/references/sepay/sdk.md +213 -0
- package/dist/.antigravity/skills/payment-integration/references/sepay/webhooks.md +208 -0
- package/dist/.antigravity/skills/payment-integration/scripts/checkout-helper.js +244 -0
- package/dist/.antigravity/skills/payment-integration/scripts/package.json +17 -0
- package/dist/.antigravity/skills/payment-integration/scripts/polar-webhook-verify.js +202 -0
- package/dist/.antigravity/skills/payment-integration/scripts/sepay-webhook-verify.js +193 -0
- package/dist/.antigravity/skills/payment-integration/scripts/test-scripts.js +237 -0
- package/dist/.antigravity/skills/planning/SKILL.md +121 -0
- package/dist/.antigravity/skills/planning/references/codebase-understanding.md +62 -0
- package/dist/.antigravity/skills/planning/references/output-standards.md +87 -0
- package/dist/.antigravity/skills/planning/references/plan-organization.md +123 -0
- package/dist/.antigravity/skills/planning/references/research-phase.md +49 -0
- package/dist/.antigravity/skills/planning/references/solution-design.md +63 -0
- package/dist/.antigravity/skills/problem-solving/SKILL.md +96 -0
- package/dist/.antigravity/skills/problem-solving/references/attribution.md +69 -0
- package/dist/.antigravity/skills/problem-solving/references/collision-zone-thinking.md +79 -0
- package/dist/.antigravity/skills/problem-solving/references/inversion-exercise.md +91 -0
- package/dist/.antigravity/skills/problem-solving/references/meta-pattern-recognition.md +87 -0
- package/dist/.antigravity/skills/problem-solving/references/scale-game.md +95 -0
- package/dist/.antigravity/skills/problem-solving/references/simplification-cascades.md +80 -0
- package/dist/.antigravity/skills/problem-solving/references/when-stuck.md +72 -0
- package/dist/.antigravity/skills/repomix/SKILL.md +247 -0
- package/dist/.antigravity/skills/repomix/references/configuration.md +211 -0
- package/dist/.antigravity/skills/repomix/references/usage-patterns.md +232 -0
- package/dist/.antigravity/skills/repomix/scripts/repomix_batch.py +455 -0
- package/dist/.antigravity/skills/repomix/scripts/repos.example.json +15 -0
- package/dist/.antigravity/skills/repomix/scripts/requirements.txt +15 -0
- package/dist/.antigravity/skills/repomix/scripts/tests/test_repomix_batch.py +531 -0
- package/dist/.antigravity/skills/research/SKILL.md +168 -0
- package/dist/.antigravity/skills/sequential-thinking/SKILL.md +94 -0
- package/dist/.antigravity/skills/sequential-thinking/package.json +31 -0
- package/dist/.antigravity/skills/sequential-thinking/references/advanced-strategies.md +79 -0
- package/dist/.antigravity/skills/sequential-thinking/references/advanced-techniques.md +76 -0
- package/dist/.antigravity/skills/sequential-thinking/references/core-patterns.md +95 -0
- package/dist/.antigravity/skills/sequential-thinking/references/examples-api.md +88 -0
- package/dist/.antigravity/skills/sequential-thinking/references/examples-architecture.md +94 -0
- package/dist/.antigravity/skills/sequential-thinking/references/examples-debug.md +90 -0
- package/dist/.antigravity/skills/sequential-thinking/scripts/format-thought.js +159 -0
- package/dist/.antigravity/skills/sequential-thinking/scripts/process-thought.js +236 -0
- package/dist/.antigravity/skills/sequential-thinking/tests/format-thought.test.js +133 -0
- package/dist/.antigravity/skills/sequential-thinking/tests/process-thought.test.js +215 -0
- package/dist/.antigravity/skills/shopify/SKILL.md +319 -0
- package/dist/.antigravity/skills/shopify/references/app-development.md +470 -0
- package/dist/.antigravity/skills/shopify/references/extensions.md +493 -0
- package/dist/.antigravity/skills/shopify/references/themes.md +498 -0
- package/dist/.antigravity/skills/shopify/scripts/requirements.txt +19 -0
- package/dist/.antigravity/skills/shopify/scripts/shopify_init.py +423 -0
- package/dist/.antigravity/skills/shopify/scripts/tests/test_shopify_init.py +385 -0
- package/dist/.antigravity/skills/skill-creator/LICENSE.txt +202 -0
- package/dist/.antigravity/skills/skill-creator/SKILL.md +266 -0
- package/dist/.antigravity/skills/skill-creator/scripts/init_skill.py +303 -0
- package/dist/.antigravity/skills/skill-creator/scripts/package_skill.py +110 -0
- package/dist/.antigravity/skills/skill-creator/scripts/quick_validate.py +65 -0
- package/dist/.antigravity/skills/template-skill/SKILL.md +6 -0
- package/dist/.antigravity/skills/threejs/SKILL.md +89 -0
- package/dist/.antigravity/skills/threejs/references/01-getting-started.md +177 -0
- package/dist/.antigravity/skills/threejs/references/02-loaders.md +169 -0
- package/dist/.antigravity/skills/threejs/references/03-textures.md +170 -0
- package/dist/.antigravity/skills/threejs/references/04-cameras.md +195 -0
- package/dist/.antigravity/skills/threejs/references/05-lights.md +183 -0
- package/dist/.antigravity/skills/threejs/references/06-animations.md +214 -0
- package/dist/.antigravity/skills/threejs/references/07-math.md +260 -0
- package/dist/.antigravity/skills/threejs/references/08-interaction.md +267 -0
- package/dist/.antigravity/skills/threejs/references/09-postprocessing.md +240 -0
- package/dist/.antigravity/skills/threejs/references/10-controls.md +259 -0
- package/dist/.antigravity/skills/threejs/references/11-materials-advanced.md +270 -0
- package/dist/.antigravity/skills/threejs/references/12-performance.md +269 -0
- package/dist/.antigravity/skills/threejs/references/13-node-materials.md +298 -0
- package/dist/.antigravity/skills/threejs/references/14-physics-vr.md +304 -0
- package/dist/.antigravity/skills/threejs/references/15-specialized-loaders.md +333 -0
- package/dist/.antigravity/skills/threejs/references/16-webgpu.md +302 -0
- package/dist/.antigravity/skills/ui-styling/LICENSE.txt +202 -0
- package/dist/.antigravity/skills/ui-styling/SKILL.md +321 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/ArsenalSC-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/BigShoulders-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Boldonse-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Boldonse-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/CrimsonPro-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/DMMono-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/DMMono-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/EricaOne-OFL.txt +94 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/EricaOne-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/GeistMono-Bold.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/GeistMono-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/GeistMono-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Gloock-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Gloock-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/InstrumentSans-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Italiana-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Italiana-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Jura-Light.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Jura-Medium.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Jura-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Lora-Bold.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Lora-Italic.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Lora-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Lora-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/NationalPark-Bold.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/NationalPark-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/NationalPark-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Outfit-Bold.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Outfit-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Outfit-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/PixelifySans-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/PoiretOne-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/RedHatMono-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Silkscreen-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/SmoochSans-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Tektur-Medium.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Tektur-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/Tektur-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/WorkSans-Bold.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/WorkSans-Italic.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/WorkSans-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/WorkSans-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/YoungSerif-OFL.txt +93 -0
- package/dist/.antigravity/skills/ui-styling/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- package/dist/.antigravity/skills/ui-styling/references/canvas-design-system.md +320 -0
- package/dist/.antigravity/skills/ui-styling/references/shadcn-accessibility.md +471 -0
- package/dist/.antigravity/skills/ui-styling/references/shadcn-components.md +424 -0
- package/dist/.antigravity/skills/ui-styling/references/shadcn-theming.md +373 -0
- package/dist/.antigravity/skills/ui-styling/references/tailwind-customization.md +483 -0
- package/dist/.antigravity/skills/ui-styling/references/tailwind-responsive.md +382 -0
- package/dist/.antigravity/skills/ui-styling/references/tailwind-utilities.md +455 -0
- package/dist/.antigravity/skills/ui-styling/scripts/requirements.txt +17 -0
- package/dist/.antigravity/skills/ui-styling/scripts/shadcn_add.py +292 -0
- package/dist/.antigravity/skills/ui-styling/scripts/tailwind_config_gen.py +456 -0
- package/dist/.antigravity/skills/ui-styling/scripts/tests/coverage-ui.json +1 -0
- package/dist/.antigravity/skills/ui-styling/scripts/tests/requirements.txt +3 -0
- package/dist/.antigravity/skills/ui-styling/scripts/tests/test_shadcn_add.py +266 -0
- package/dist/.antigravity/skills/ui-styling/scripts/tests/test_tailwind_config_gen.py +336 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/SKILL.md +227 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/charts.csv +26 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/colors.csv +97 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/landing.csv +31 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/products.csv +97 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/prompts.csv +24 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +51 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/styles.csv +59 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/typography.csv +58 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/scripts/core.py +236 -0
- package/dist/.antigravity/skills/ui-ux-pro-max/scripts/search.py +61 -0
- package/dist/.antigravity/skills/web-frameworks/SKILL.md +324 -0
- package/dist/.antigravity/skills/web-frameworks/references/nextjs-app-router.md +465 -0
- package/dist/.antigravity/skills/web-frameworks/references/nextjs-data-fetching.md +459 -0
- package/dist/.antigravity/skills/web-frameworks/references/nextjs-optimization.md +511 -0
- package/dist/.antigravity/skills/web-frameworks/references/nextjs-server-components.md +495 -0
- package/dist/.antigravity/skills/web-frameworks/references/remix-icon-integration.md +603 -0
- package/dist/.antigravity/skills/web-frameworks/references/turborepo-caching.md +551 -0
- package/dist/.antigravity/skills/web-frameworks/references/turborepo-pipelines.md +517 -0
- package/dist/.antigravity/skills/web-frameworks/references/turborepo-setup.md +542 -0
- package/dist/.antigravity/skills/web-frameworks/scripts/__init__.py +0 -0
- package/dist/.antigravity/skills/web-frameworks/scripts/nextjs_init.py +547 -0
- package/dist/.antigravity/skills/web-frameworks/scripts/requirements.txt +16 -0
- package/dist/.antigravity/skills/web-frameworks/scripts/tests/coverage-web.json +1 -0
- package/dist/.antigravity/skills/web-frameworks/scripts/tests/requirements.txt +3 -0
- package/dist/.antigravity/skills/web-frameworks/scripts/tests/test_nextjs_init.py +319 -0
- package/dist/.antigravity/skills/web-frameworks/scripts/tests/test_turborepo_migrate.py +374 -0
- package/dist/.antigravity/skills/web-frameworks/scripts/turborepo_migrate.py +394 -0
- package/dist/.antigravity/team.yaml +154 -0
- package/dist/.antigravity/workflows/audit.md +116 -0
- package/dist/.antigravity/workflows/commit.md +116 -0
- package/dist/.antigravity/workflows/config.md +144 -0
- package/dist/.antigravity/workflows/demo.md +50 -0
- package/dist/.antigravity/workflows/design.md +177 -0
- package/dist/.antigravity/workflows/do.md +366 -0
- package/dist/.antigravity/workflows/docs.md +101 -0
- package/dist/.antigravity/workflows/generate.md +140 -0
- package/dist/.antigravity/workflows/help.md +128 -0
- package/dist/.antigravity/workflows/integrate.md +119 -0
- package/dist/.antigravity/workflows/memory.md +97 -0
- package/dist/.antigravity/workflows/migrate.md +180 -0
- package/dist/.antigravity/workflows/review.md +108 -0
- package/dist/.antigravity/workflows/scout.md +111 -0
- package/dist/.antigravity/workflows/skill-learn.md +48 -0
- package/dist/.antigravity/workflows/start.md +56 -0
- package/dist/.antigravity/workflows/status.md +163 -0
- package/dist/.antigravity/workflows/test.md +121 -0
- package/dist/.antigravity/workflows/theme.md +158 -0
- package/dist/.antigravity/workflows/undo.md +166 -0
- package/dist/.antigravity/workflows/why.md +155 -0
- package/dist/.cursor/MODEL_COSTS.md +61 -0
- package/dist/.cursor/UX_GUIDELINES.md +146 -0
- package/dist/.cursor/agent-skill-index.yaml +426 -0
- package/dist/.cursor/agents/brainstormer.md +115 -0
- package/dist/.cursor/agents/code-reviewer.md +168 -0
- package/dist/.cursor/agents/copywriter.md +110 -0
- package/dist/.cursor/agents/database-admin.md +104 -0
- package/dist/.cursor/agents/ddd-architect.md +128 -0
- package/dist/.cursor/agents/debugger.md +149 -0
- package/dist/.cursor/agents/design-system-architect.md +166 -0
- package/dist/.cursor/agents/docs-manager.md +133 -0
- package/dist/.cursor/agents/fullstack-developer.md +105 -0
- package/dist/.cursor/agents/git-manager.md +321 -0
- package/dist/.cursor/agents/graph-architect.md +30 -0
- package/dist/.cursor/agents/journal-writer.md +113 -0
- package/dist/.cursor/agents/mcp-manager.md +93 -0
- package/dist/.cursor/agents/planner.md +61 -0
- package/dist/.cursor/agents/project-manager.md +131 -0
- package/dist/.cursor/agents/researcher.md +50 -0
- package/dist/.cursor/agents/scout-external.md +151 -0
- package/dist/.cursor/agents/scout.md +117 -0
- package/dist/.cursor/agents/tester.md +117 -0
- package/dist/.cursor/agents/trend-watcher.md +24 -0
- package/dist/.cursor/agents/ui-ux-designer.md +233 -0
- package/dist/.cursor/anchi-toolkit.config.yaml +32 -0
- package/dist/.cursor/commands/audit.md +116 -0
- package/dist/.cursor/commands/commit.md +116 -0
- package/dist/.cursor/commands/config.md +144 -0
- package/dist/.cursor/commands/demo.md +50 -0
- package/dist/.cursor/commands/design.md +177 -0
- package/dist/.cursor/commands/do.md +403 -0
- package/dist/.cursor/commands/docs.md +101 -0
- package/dist/.cursor/commands/generate.md +140 -0
- package/dist/.cursor/commands/help.md +128 -0
- package/dist/.cursor/commands/integrate.md +119 -0
- package/dist/.cursor/commands/memory.md +97 -0
- package/dist/.cursor/commands/migrate.md +180 -0
- package/dist/.cursor/commands/review.md +108 -0
- package/dist/.cursor/commands/scout.md +111 -0
- package/dist/.cursor/commands/skill-learn.md +48 -0
- package/dist/.cursor/commands/start.md +56 -0
- package/dist/.cursor/commands/status.md +163 -0
- package/dist/.cursor/commands/test.md +121 -0
- package/dist/.cursor/commands/theme.md +158 -0
- package/dist/.cursor/commands/undo.md +166 -0
- package/dist/.cursor/commands/why.md +155 -0
- package/dist/.cursor/custom-commands/example.md +30 -0
- package/dist/.cursor/failure-modes.yaml +148 -0
- package/dist/.cursor/hooks/dev-rules-reminder.cjs +115 -0
- package/dist/.cursor/hooks/dev-rules-reminder.js +115 -0
- package/dist/.cursor/hooks/discord-hook-setup.md +412 -0
- package/dist/.cursor/hooks/discord_notify.sh +221 -0
- package/dist/.cursor/hooks/scout-block.cjs +100 -0
- package/dist/.cursor/hooks/scout-block.js +104 -0
- package/dist/.cursor/hooks/scout-block.ps1 +92 -0
- package/dist/.cursor/hooks/scout-block.sh +119 -0
- package/dist/.cursor/hooks/send-discord.sh +75 -0
- package/dist/.cursor/hooks/telegram-hook-setup.md +774 -0
- package/dist/.cursor/hooks/telegram_notify.sh +158 -0
- package/dist/.cursor/hooks/tests/test-ckignore.js +194 -0
- package/dist/.cursor/hooks/tests/test-modularization-hook.js +126 -0
- package/dist/.cursor/hooks/tests/test-scout-block.js +125 -0
- package/dist/.cursor/hooks.yaml +28 -0
- package/dist/.cursor/metadata.json +15 -0
- package/dist/.cursor/orchestration.yaml +144 -0
- package/dist/.cursor/scripts/ck-help.py +489 -0
- package/dist/.cursor/scripts/commands_data.yaml +363 -0
- package/dist/.cursor/scripts/generate_catalogs.py +163 -0
- package/dist/.cursor/scripts/requirements.txt +1 -0
- package/dist/.cursor/scripts/resolve_env.py +329 -0
- package/dist/.cursor/scripts/scan_commands.py +99 -0
- package/dist/.cursor/scripts/scan_skills.py +187 -0
- package/dist/.cursor/scripts/skills_data.yaml +367 -0
- package/dist/.cursor/settings.json +31 -0
- package/dist/.cursor/skills/INSTALLATION.md +360 -0
- package/dist/.cursor/skills/SKILLS_INDEX.md +118 -0
- package/dist/.cursor/skills/THIRD_PARTY_NOTICES.md +405 -0
- package/dist/.cursor/skills/_template.md +30 -0
- package/dist/.cursor/skills/aesthetic/SKILL.md +121 -0
- package/dist/.cursor/skills/aesthetic/assets/design-guideline-template.md +163 -0
- package/dist/.cursor/skills/aesthetic/assets/design-story-template.md +135 -0
- package/dist/.cursor/skills/aesthetic/references/design-principles.md +62 -0
- package/dist/.cursor/skills/aesthetic/references/design-resources.md +75 -0
- package/dist/.cursor/skills/aesthetic/references/micro-interactions.md +53 -0
- package/dist/.cursor/skills/aesthetic/references/storytelling-design.md +50 -0
- package/dist/.cursor/skills/agent_skills_spec.md +55 -0
- package/dist/.cursor/skills/ai-multimodal/SKILL.md +65 -0
- package/dist/.cursor/skills/ai-multimodal/references/audio-processing.md +386 -0
- package/dist/.cursor/skills/ai-multimodal/references/image-generation.md +722 -0
- package/dist/.cursor/skills/ai-multimodal/references/video-analysis.md +515 -0
- package/dist/.cursor/skills/ai-multimodal/references/video-generation.md +457 -0
- package/dist/.cursor/skills/ai-multimodal/references/vision-understanding.md +492 -0
- package/dist/.cursor/skills/ai-multimodal/scripts/check_setup.py +299 -0
- package/dist/.cursor/skills/ai-multimodal/scripts/document_converter.py +395 -0
- package/dist/.cursor/skills/ai-multimodal/scripts/gemini_batch_process.py +896 -0
- package/dist/.cursor/skills/ai-multimodal/scripts/media_optimizer.py +506 -0
- package/dist/.cursor/skills/ai-multimodal/scripts/requirements.txt +26 -0
- package/dist/.cursor/skills/ai-multimodal/scripts/tests/requirements.txt +20 -0
- package/dist/.cursor/skills/ai-multimodal/scripts/tests/test_document_converter.py +74 -0
- package/dist/.cursor/skills/ai-multimodal/scripts/tests/test_failures.log +258 -0
- package/dist/.cursor/skills/ai-multimodal/scripts/tests/test_gemini_batch_process.py +362 -0
- package/dist/.cursor/skills/ai-multimodal/scripts/tests/test_media_optimizer.py +373 -0
- package/dist/.cursor/skills/backend-development/SKILL.md +95 -0
- package/dist/.cursor/skills/backend-development/references/backend-api-design.md +495 -0
- package/dist/.cursor/skills/backend-development/references/backend-architecture.md +454 -0
- package/dist/.cursor/skills/backend-development/references/backend-authentication.md +338 -0
- package/dist/.cursor/skills/backend-development/references/backend-code-quality.md +659 -0
- package/dist/.cursor/skills/backend-development/references/backend-debugging.md +904 -0
- package/dist/.cursor/skills/backend-development/references/backend-devops.md +494 -0
- package/dist/.cursor/skills/backend-development/references/backend-mindset.md +387 -0
- package/dist/.cursor/skills/backend-development/references/backend-performance.md +397 -0
- package/dist/.cursor/skills/backend-development/references/backend-security.md +290 -0
- package/dist/.cursor/skills/backend-development/references/backend-technologies.md +256 -0
- package/dist/.cursor/skills/backend-development/references/backend-testing.md +429 -0
- package/dist/.cursor/skills/better-auth/SKILL.md +204 -0
- package/dist/.cursor/skills/better-auth/references/advanced-features.md +553 -0
- package/dist/.cursor/skills/better-auth/references/database-integration.md +577 -0
- package/dist/.cursor/skills/better-auth/references/email-password-auth.md +416 -0
- package/dist/.cursor/skills/better-auth/references/oauth-providers.md +430 -0
- package/dist/.cursor/skills/better-auth/scripts/better_auth_init.py +521 -0
- package/dist/.cursor/skills/better-auth/scripts/requirements.txt +15 -0
- package/dist/.cursor/skills/better-auth/scripts/tests/test_better_auth_init.py +421 -0
- package/dist/.cursor/skills/chrome-devtools/SKILL.md +360 -0
- package/dist/.cursor/skills/chrome-devtools/references/cdp-domains.md +694 -0
- package/dist/.cursor/skills/chrome-devtools/references/performance-guide.md +940 -0
- package/dist/.cursor/skills/chrome-devtools/references/puppeteer-reference.md +953 -0
- package/dist/.cursor/skills/chrome-devtools/scripts/__tests__/selector.test.js +210 -0
- package/dist/.cursor/skills/chrome-devtools/scripts/click.js +79 -0
- package/dist/.cursor/skills/chrome-devtools/scripts/console.js +75 -0
- package/dist/.cursor/skills/chrome-devtools/scripts/evaluate.js +49 -0
- package/dist/.cursor/skills/chrome-devtools/scripts/fill.js +72 -0
- package/dist/.cursor/skills/chrome-devtools/scripts/install-deps.sh +181 -0
- package/dist/.cursor/skills/chrome-devtools/scripts/install.sh +83 -0
- package/dist/.cursor/skills/chrome-devtools/scripts/lib/browser.js +122 -0
- package/dist/.cursor/skills/chrome-devtools/scripts/lib/selector.js +178 -0
- package/dist/.cursor/skills/chrome-devtools/scripts/navigate.js +46 -0
- package/dist/.cursor/skills/chrome-devtools/scripts/network.js +102 -0
- package/dist/.cursor/skills/chrome-devtools/scripts/package.json +15 -0
- package/dist/.cursor/skills/chrome-devtools/scripts/performance.js +145 -0
- package/dist/.cursor/skills/chrome-devtools/scripts/screenshot.js +180 -0
- package/dist/.cursor/skills/chrome-devtools/scripts/snapshot.js +131 -0
- package/dist/.cursor/skills/claude-code/references/advanced-features.md +399 -0
- package/dist/.cursor/skills/claude-code/references/agent-skills.md +399 -0
- package/dist/.cursor/skills/claude-code/references/api-reference.md +498 -0
- package/dist/.cursor/skills/claude-code/references/best-practices.md +447 -0
- package/dist/.cursor/skills/claude-code/references/cicd-integration.md +428 -0
- package/dist/.cursor/skills/claude-code/references/common-workflows.md +119 -0
- package/dist/.cursor/skills/claude-code/references/configuration.md +480 -0
- package/dist/.cursor/skills/claude-code/references/enterprise-features.md +472 -0
- package/dist/.cursor/skills/claude-code/references/getting-started.md +252 -0
- package/dist/.cursor/skills/claude-code/references/hooks-and-plugins.md +444 -0
- package/dist/.cursor/skills/claude-code/references/hooks-comprehensive.md +622 -0
- package/dist/.cursor/skills/claude-code/references/ide-integration.md +316 -0
- package/dist/.cursor/skills/claude-code/references/mcp-integration.md +386 -0
- package/dist/.cursor/skills/claude-code/references/slash-commands.md +489 -0
- package/dist/.cursor/skills/claude-code/references/troubleshooting.md +456 -0
- package/dist/.cursor/skills/claude-code/skill.md +60 -0
- package/dist/.cursor/skills/code-review/SKILL.md +143 -0
- package/dist/.cursor/skills/code-review/references/code-review-reception.md +209 -0
- package/dist/.cursor/skills/code-review/references/requesting-code-review.md +105 -0
- package/dist/.cursor/skills/code-review/references/verification-before-completion.md +139 -0
- package/dist/.cursor/skills/common/api_key_helper.py +300 -0
- package/dist/.cursor/skills/databases/SKILL.md +232 -0
- package/dist/.cursor/skills/databases/references/mongodb-aggregation.md +447 -0
- package/dist/.cursor/skills/databases/references/mongodb-atlas.md +465 -0
- package/dist/.cursor/skills/databases/references/mongodb-crud.md +408 -0
- package/dist/.cursor/skills/databases/references/mongodb-indexing.md +442 -0
- package/dist/.cursor/skills/databases/references/postgresql-administration.md +594 -0
- package/dist/.cursor/skills/databases/references/postgresql-performance.md +527 -0
- package/dist/.cursor/skills/databases/references/postgresql-psql-cli.md +467 -0
- package/dist/.cursor/skills/databases/references/postgresql-queries.md +475 -0
- package/dist/.cursor/skills/databases/scripts/db_backup.py +502 -0
- package/dist/.cursor/skills/databases/scripts/db_migrate.py +414 -0
- package/dist/.cursor/skills/databases/scripts/db_performance_check.py +444 -0
- package/dist/.cursor/skills/databases/scripts/requirements.txt +20 -0
- package/dist/.cursor/skills/databases/scripts/tests/coverage-db.json +1 -0
- package/dist/.cursor/skills/databases/scripts/tests/requirements.txt +4 -0
- package/dist/.cursor/skills/databases/scripts/tests/test_db_backup.py +340 -0
- package/dist/.cursor/skills/databases/scripts/tests/test_db_migrate.py +277 -0
- package/dist/.cursor/skills/databases/scripts/tests/test_db_performance_check.py +370 -0
- package/dist/.cursor/skills/debugging/SKILL.md +84 -0
- package/dist/.cursor/skills/debugging/references/defense-in-depth.md +124 -0
- package/dist/.cursor/skills/debugging/references/root-cause-tracing.md +122 -0
- package/dist/.cursor/skills/debugging/references/systematic-debugging.md +102 -0
- package/dist/.cursor/skills/debugging/references/verification.md +123 -0
- package/dist/.cursor/skills/debugging/scripts/find-polluter.sh +63 -0
- package/dist/.cursor/skills/debugging/scripts/find-polluter.test.md +102 -0
- package/dist/.cursor/skills/devops/SKILL.md +285 -0
- package/dist/.cursor/skills/devops/references/browser-rendering.md +305 -0
- package/dist/.cursor/skills/devops/references/cloudflare-d1-kv.md +123 -0
- package/dist/.cursor/skills/devops/references/cloudflare-platform.md +271 -0
- package/dist/.cursor/skills/devops/references/cloudflare-r2-storage.md +280 -0
- package/dist/.cursor/skills/devops/references/cloudflare-workers-advanced.md +312 -0
- package/dist/.cursor/skills/devops/references/cloudflare-workers-apis.md +309 -0
- package/dist/.cursor/skills/devops/references/cloudflare-workers-basics.md +418 -0
- package/dist/.cursor/skills/devops/references/docker-basics.md +297 -0
- package/dist/.cursor/skills/devops/references/docker-compose.md +292 -0
- package/dist/.cursor/skills/devops/references/gcloud-platform.md +297 -0
- package/dist/.cursor/skills/devops/references/gcloud-services.md +304 -0
- package/dist/.cursor/skills/devops/scripts/cloudflare_deploy.py +269 -0
- package/dist/.cursor/skills/devops/scripts/docker_optimize.py +320 -0
- package/dist/.cursor/skills/devops/scripts/requirements.txt +20 -0
- package/dist/.cursor/skills/devops/scripts/tests/requirements.txt +3 -0
- package/dist/.cursor/skills/devops/scripts/tests/test_cloudflare_deploy.py +285 -0
- package/dist/.cursor/skills/devops/scripts/tests/test_docker_optimize.py +436 -0
- package/dist/.cursor/skills/docs-seeker/SKILL.md +97 -0
- package/dist/.cursor/skills/docs-seeker/package.json +25 -0
- package/dist/.cursor/skills/docs-seeker/references/advanced.md +79 -0
- package/dist/.cursor/skills/docs-seeker/references/context7-patterns.md +68 -0
- package/dist/.cursor/skills/docs-seeker/references/errors.md +68 -0
- package/dist/.cursor/skills/docs-seeker/scripts/analyze-llms-txt.js +211 -0
- package/dist/.cursor/skills/docs-seeker/scripts/detect-topic.js +172 -0
- package/dist/.cursor/skills/docs-seeker/scripts/fetch-docs.js +213 -0
- package/dist/.cursor/skills/docs-seeker/scripts/tests/run-tests.js +72 -0
- package/dist/.cursor/skills/docs-seeker/scripts/tests/test-analyze-llms.js +119 -0
- package/dist/.cursor/skills/docs-seeker/scripts/tests/test-detect-topic.js +112 -0
- package/dist/.cursor/skills/docs-seeker/scripts/tests/test-fetch-docs.js +84 -0
- package/dist/.cursor/skills/docs-seeker/scripts/utils/env-loader.js +94 -0
- package/dist/.cursor/skills/docs-seeker/workflows/library-search.md +87 -0
- package/dist/.cursor/skills/docs-seeker/workflows/repo-analysis.md +91 -0
- package/dist/.cursor/skills/docs-seeker/workflows/topic-search.md +77 -0
- package/dist/.cursor/skills/document-skills/docx/LICENSE.txt +30 -0
- package/dist/.cursor/skills/document-skills/docx/SKILL.md +197 -0
- package/dist/.cursor/skills/document-skills/docx/docx-js.md +350 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/scripts/pack.py +159 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/scripts/unpack.py +29 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/scripts/validate.py +69 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/scripts/validation/__init__.py +15 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/scripts/validation/base.py +951 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/scripts/validation/docx.py +274 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/scripts/validation/pptx.py +315 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml/scripts/validation/redlining.py +279 -0
- package/dist/.cursor/skills/document-skills/docx/ooxml.md +610 -0
- package/dist/.cursor/skills/document-skills/docx/scripts/__init__.py +1 -0
- package/dist/.cursor/skills/document-skills/docx/scripts/document.py +1276 -0
- package/dist/.cursor/skills/document-skills/docx/scripts/templates/comments.xml +3 -0
- package/dist/.cursor/skills/document-skills/docx/scripts/templates/commentsExtended.xml +3 -0
- package/dist/.cursor/skills/document-skills/docx/scripts/templates/commentsExtensible.xml +3 -0
- package/dist/.cursor/skills/document-skills/docx/scripts/templates/commentsIds.xml +3 -0
- package/dist/.cursor/skills/document-skills/docx/scripts/templates/people.xml +3 -0
- package/dist/.cursor/skills/document-skills/docx/scripts/utilities.py +374 -0
- package/dist/.cursor/skills/document-skills/pdf/LICENSE.txt +30 -0
- package/dist/.cursor/skills/document-skills/pdf/SKILL.md +294 -0
- package/dist/.cursor/skills/document-skills/pdf/forms.md +205 -0
- package/dist/.cursor/skills/document-skills/pdf/reference.md +612 -0
- package/dist/.cursor/skills/document-skills/pdf/scripts/check_bounding_boxes.py +70 -0
- package/dist/.cursor/skills/document-skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
- package/dist/.cursor/skills/document-skills/pdf/scripts/check_fillable_fields.py +12 -0
- package/dist/.cursor/skills/document-skills/pdf/scripts/convert_pdf_to_images.py +35 -0
- package/dist/.cursor/skills/document-skills/pdf/scripts/create_validation_image.py +41 -0
- package/dist/.cursor/skills/document-skills/pdf/scripts/extract_form_field_info.py +152 -0
- package/dist/.cursor/skills/document-skills/pdf/scripts/fill_fillable_fields.py +114 -0
- package/dist/.cursor/skills/document-skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
- package/dist/.cursor/skills/document-skills/pptx/LICENSE.txt +30 -0
- package/dist/.cursor/skills/document-skills/pptx/SKILL.md +484 -0
- package/dist/.cursor/skills/document-skills/pptx/html2pptx.md +625 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/mce/mc.xsd +75 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/scripts/pack.py +159 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/scripts/unpack.py +29 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/scripts/validate.py +69 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/scripts/validation/__init__.py +15 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/scripts/validation/base.py +951 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/scripts/validation/docx.py +274 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/scripts/validation/pptx.py +315 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml/scripts/validation/redlining.py +279 -0
- package/dist/.cursor/skills/document-skills/pptx/ooxml.md +427 -0
- package/dist/.cursor/skills/document-skills/pptx/scripts/html2pptx.js +979 -0
- package/dist/.cursor/skills/document-skills/pptx/scripts/inventory.py +1020 -0
- package/dist/.cursor/skills/document-skills/pptx/scripts/rearrange.py +231 -0
- package/dist/.cursor/skills/document-skills/pptx/scripts/replace.py +385 -0
- package/dist/.cursor/skills/document-skills/pptx/scripts/thumbnail.py +450 -0
- package/dist/.cursor/skills/document-skills/xlsx/LICENSE.txt +30 -0
- package/dist/.cursor/skills/document-skills/xlsx/SKILL.md +289 -0
- package/dist/.cursor/skills/document-skills/xlsx/recalc.py +178 -0
- package/dist/.cursor/skills/frontend-design/SKILL.md +91 -0
- package/dist/.cursor/skills/frontend-design/references/ai-multimodal-overview.md +165 -0
- package/dist/.cursor/skills/frontend-design/references/analysis-best-practices.md +80 -0
- package/dist/.cursor/skills/frontend-design/references/analysis-prompts.md +141 -0
- package/dist/.cursor/skills/frontend-design/references/analysis-techniques.md +118 -0
- package/dist/.cursor/skills/frontend-design/references/animejs.md +396 -0
- package/dist/.cursor/skills/frontend-design/references/asset-generation.md +337 -0
- package/dist/.cursor/skills/frontend-design/references/design-extraction-overview.md +71 -0
- package/dist/.cursor/skills/frontend-design/references/extraction-best-practices.md +141 -0
- package/dist/.cursor/skills/frontend-design/references/extraction-output-templates.md +162 -0
- package/dist/.cursor/skills/frontend-design/references/extraction-prompts.md +127 -0
- package/dist/.cursor/skills/frontend-design/references/technical-accessibility.md +119 -0
- package/dist/.cursor/skills/frontend-design/references/technical-best-practices.md +97 -0
- package/dist/.cursor/skills/frontend-design/references/technical-optimization.md +44 -0
- package/dist/.cursor/skills/frontend-design/references/technical-overview.md +90 -0
- package/dist/.cursor/skills/frontend-design/references/technical-workflows.md +150 -0
- package/dist/.cursor/skills/frontend-design/references/visual-analysis-overview.md +95 -0
- package/dist/.cursor/skills/frontend-design-pro/SKILL.md +58 -0
- package/dist/.cursor/skills/frontend-development/SKILL.md +399 -0
- package/dist/.cursor/skills/frontend-development/resources/common-patterns.md +331 -0
- package/dist/.cursor/skills/frontend-development/resources/complete-examples.md +872 -0
- package/dist/.cursor/skills/frontend-development/resources/component-patterns.md +502 -0
- package/dist/.cursor/skills/frontend-development/resources/data-fetching.md +767 -0
- package/dist/.cursor/skills/frontend-development/resources/file-organization.md +502 -0
- package/dist/.cursor/skills/frontend-development/resources/loading-and-error-states.md +501 -0
- package/dist/.cursor/skills/frontend-development/resources/performance.md +406 -0
- package/dist/.cursor/skills/frontend-development/resources/routing-guide.md +364 -0
- package/dist/.cursor/skills/frontend-development/resources/styling-guide.md +428 -0
- package/dist/.cursor/skills/frontend-development/resources/typescript-standards.md +418 -0
- package/dist/.cursor/skills/google-adk-python/SKILL.md +237 -0
- package/dist/.cursor/skills/install.ps1 +600 -0
- package/dist/.cursor/skills/install.sh +685 -0
- package/dist/.cursor/skills/mcp-builder/LICENSE.txt +202 -0
- package/dist/.cursor/skills/mcp-builder/SKILL.md +328 -0
- package/dist/.cursor/skills/mcp-builder/reference/evaluation.md +602 -0
- package/dist/.cursor/skills/mcp-builder/reference/mcp_best_practices.md +915 -0
- package/dist/.cursor/skills/mcp-builder/reference/node_mcp_server.md +916 -0
- package/dist/.cursor/skills/mcp-builder/reference/python_mcp_server.md +752 -0
- package/dist/.cursor/skills/mcp-builder/scripts/connections.py +151 -0
- package/dist/.cursor/skills/mcp-builder/scripts/evaluation.py +373 -0
- package/dist/.cursor/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
- package/dist/.cursor/skills/mcp-builder/scripts/requirements.txt +2 -0
- package/dist/.cursor/skills/mcp-management/SKILL.md +209 -0
- package/dist/.cursor/skills/mcp-management/assets/tools.json +3146 -0
- package/dist/.cursor/skills/mcp-management/references/configuration.md +114 -0
- package/dist/.cursor/skills/mcp-management/references/gemini-cli-integration.md +215 -0
- package/dist/.cursor/skills/mcp-management/references/mcp-protocol.md +116 -0
- package/dist/.cursor/skills/mcp-management/scripts/cli.ts +195 -0
- package/dist/.cursor/skills/mcp-management/scripts/mcp-client.ts +230 -0
- package/dist/.cursor/skills/mcp-management/scripts/package.json +20 -0
- package/dist/.cursor/skills/mcp-management/scripts/tsconfig.json +15 -0
- package/dist/.cursor/skills/media-processing/SKILL.md +91 -0
- package/dist/.cursor/skills/media-processing/references/common-workflows.md +132 -0
- package/dist/.cursor/skills/media-processing/references/ffmpeg-encoding.md +358 -0
- package/dist/.cursor/skills/media-processing/references/ffmpeg-filters.md +503 -0
- package/dist/.cursor/skills/media-processing/references/ffmpeg-streaming.md +403 -0
- package/dist/.cursor/skills/media-processing/references/format-compatibility.md +375 -0
- package/dist/.cursor/skills/media-processing/references/imagemagick-batch.md +612 -0
- package/dist/.cursor/skills/media-processing/references/imagemagick-editing.md +623 -0
- package/dist/.cursor/skills/media-processing/references/rmbg-background-removal.md +66 -0
- package/dist/.cursor/skills/media-processing/references/troubleshooting.md +109 -0
- package/dist/.cursor/skills/media-processing/scripts/batch-remove-background.sh +124 -0
- package/dist/.cursor/skills/media-processing/scripts/batch_resize.py +342 -0
- package/dist/.cursor/skills/media-processing/scripts/media_convert.py +311 -0
- package/dist/.cursor/skills/media-processing/scripts/remove-background.sh +96 -0
- package/dist/.cursor/skills/media-processing/scripts/remove-bg-node.js +158 -0
- package/dist/.cursor/skills/media-processing/scripts/requirements.txt +24 -0
- package/dist/.cursor/skills/media-processing/scripts/tests/requirements.txt +2 -0
- package/dist/.cursor/skills/media-processing/scripts/tests/test_batch_resize.py +372 -0
- package/dist/.cursor/skills/media-processing/scripts/tests/test_media_convert.py +259 -0
- package/dist/.cursor/skills/media-processing/scripts/tests/test_video_optimize.py +397 -0
- package/dist/.cursor/skills/media-processing/scripts/video_optimize.py +414 -0
- package/dist/.cursor/skills/mobile-development/SKILL.md +212 -0
- package/dist/.cursor/skills/mobile-development/references/mobile-android.md +604 -0
- package/dist/.cursor/skills/mobile-development/references/mobile-best-practices.md +545 -0
- package/dist/.cursor/skills/mobile-development/references/mobile-debugging.md +1089 -0
- package/dist/.cursor/skills/mobile-development/references/mobile-frameworks.md +465 -0
- package/dist/.cursor/skills/mobile-development/references/mobile-ios.md +496 -0
- package/dist/.cursor/skills/mobile-development/references/mobile-mindset.md +544 -0
- package/dist/.cursor/skills/payment-integration/SKILL.md +118 -0
- package/dist/.cursor/skills/payment-integration/references/polar/benefits.md +396 -0
- package/dist/.cursor/skills/payment-integration/references/polar/best-practices.md +482 -0
- package/dist/.cursor/skills/payment-integration/references/polar/checkouts.md +266 -0
- package/dist/.cursor/skills/payment-integration/references/polar/overview.md +184 -0
- package/dist/.cursor/skills/payment-integration/references/polar/products.md +244 -0
- package/dist/.cursor/skills/payment-integration/references/polar/sdk.md +436 -0
- package/dist/.cursor/skills/payment-integration/references/polar/subscriptions.md +340 -0
- package/dist/.cursor/skills/payment-integration/references/polar/webhooks.md +405 -0
- package/dist/.cursor/skills/payment-integration/references/sepay/api.md +140 -0
- package/dist/.cursor/skills/payment-integration/references/sepay/best-practices.md +337 -0
- package/dist/.cursor/skills/payment-integration/references/sepay/overview.md +138 -0
- package/dist/.cursor/skills/payment-integration/references/sepay/qr-codes.md +228 -0
- package/dist/.cursor/skills/payment-integration/references/sepay/sdk.md +213 -0
- package/dist/.cursor/skills/payment-integration/references/sepay/webhooks.md +208 -0
- package/dist/.cursor/skills/payment-integration/scripts/checkout-helper.js +244 -0
- package/dist/.cursor/skills/payment-integration/scripts/package.json +17 -0
- package/dist/.cursor/skills/payment-integration/scripts/polar-webhook-verify.js +202 -0
- package/dist/.cursor/skills/payment-integration/scripts/sepay-webhook-verify.js +193 -0
- package/dist/.cursor/skills/payment-integration/scripts/test-scripts.js +237 -0
- package/dist/.cursor/skills/planning/SKILL.md +121 -0
- package/dist/.cursor/skills/planning/references/codebase-understanding.md +62 -0
- package/dist/.cursor/skills/planning/references/output-standards.md +87 -0
- package/dist/.cursor/skills/planning/references/plan-organization.md +123 -0
- package/dist/.cursor/skills/planning/references/research-phase.md +49 -0
- package/dist/.cursor/skills/planning/references/solution-design.md +63 -0
- package/dist/.cursor/skills/problem-solving/SKILL.md +96 -0
- package/dist/.cursor/skills/problem-solving/references/attribution.md +69 -0
- package/dist/.cursor/skills/problem-solving/references/collision-zone-thinking.md +79 -0
- package/dist/.cursor/skills/problem-solving/references/inversion-exercise.md +91 -0
- package/dist/.cursor/skills/problem-solving/references/meta-pattern-recognition.md +87 -0
- package/dist/.cursor/skills/problem-solving/references/scale-game.md +95 -0
- package/dist/.cursor/skills/problem-solving/references/simplification-cascades.md +80 -0
- package/dist/.cursor/skills/problem-solving/references/when-stuck.md +72 -0
- package/dist/.cursor/skills/repomix/SKILL.md +247 -0
- package/dist/.cursor/skills/repomix/references/configuration.md +211 -0
- package/dist/.cursor/skills/repomix/references/usage-patterns.md +232 -0
- package/dist/.cursor/skills/repomix/scripts/repomix_batch.py +455 -0
- package/dist/.cursor/skills/repomix/scripts/repos.example.json +15 -0
- package/dist/.cursor/skills/repomix/scripts/requirements.txt +15 -0
- package/dist/.cursor/skills/repomix/scripts/tests/test_repomix_batch.py +531 -0
- package/dist/.cursor/skills/research/SKILL.md +168 -0
- package/dist/.cursor/skills/sequential-thinking/SKILL.md +94 -0
- package/dist/.cursor/skills/sequential-thinking/package.json +31 -0
- package/dist/.cursor/skills/sequential-thinking/references/advanced-strategies.md +79 -0
- package/dist/.cursor/skills/sequential-thinking/references/advanced-techniques.md +76 -0
- package/dist/.cursor/skills/sequential-thinking/references/core-patterns.md +95 -0
- package/dist/.cursor/skills/sequential-thinking/references/examples-api.md +88 -0
- package/dist/.cursor/skills/sequential-thinking/references/examples-architecture.md +94 -0
- package/dist/.cursor/skills/sequential-thinking/references/examples-debug.md +90 -0
- package/dist/.cursor/skills/sequential-thinking/scripts/format-thought.js +159 -0
- package/dist/.cursor/skills/sequential-thinking/scripts/process-thought.js +236 -0
- package/dist/.cursor/skills/sequential-thinking/tests/format-thought.test.js +133 -0
- package/dist/.cursor/skills/sequential-thinking/tests/process-thought.test.js +215 -0
- package/dist/.cursor/skills/shopify/SKILL.md +319 -0
- package/dist/.cursor/skills/shopify/references/app-development.md +470 -0
- package/dist/.cursor/skills/shopify/references/extensions.md +493 -0
- package/dist/.cursor/skills/shopify/references/themes.md +498 -0
- package/dist/.cursor/skills/shopify/scripts/requirements.txt +19 -0
- package/dist/.cursor/skills/shopify/scripts/shopify_init.py +423 -0
- package/dist/.cursor/skills/shopify/scripts/tests/test_shopify_init.py +385 -0
- package/dist/.cursor/skills/skill-creator/LICENSE.txt +202 -0
- package/dist/.cursor/skills/skill-creator/SKILL.md +266 -0
- package/dist/.cursor/skills/skill-creator/scripts/init_skill.py +303 -0
- package/dist/.cursor/skills/skill-creator/scripts/package_skill.py +110 -0
- package/dist/.cursor/skills/skill-creator/scripts/quick_validate.py +65 -0
- package/dist/.cursor/skills/template-skill/SKILL.md +6 -0
- package/dist/.cursor/skills/threejs/SKILL.md +89 -0
- package/dist/.cursor/skills/threejs/references/01-getting-started.md +177 -0
- package/dist/.cursor/skills/threejs/references/02-loaders.md +169 -0
- package/dist/.cursor/skills/threejs/references/03-textures.md +170 -0
- package/dist/.cursor/skills/threejs/references/04-cameras.md +195 -0
- package/dist/.cursor/skills/threejs/references/05-lights.md +183 -0
- package/dist/.cursor/skills/threejs/references/06-animations.md +214 -0
- package/dist/.cursor/skills/threejs/references/07-math.md +260 -0
- package/dist/.cursor/skills/threejs/references/08-interaction.md +267 -0
- package/dist/.cursor/skills/threejs/references/09-postprocessing.md +240 -0
- package/dist/.cursor/skills/threejs/references/10-controls.md +259 -0
- package/dist/.cursor/skills/threejs/references/11-materials-advanced.md +270 -0
- package/dist/.cursor/skills/threejs/references/12-performance.md +269 -0
- package/dist/.cursor/skills/threejs/references/13-node-materials.md +298 -0
- package/dist/.cursor/skills/threejs/references/14-physics-vr.md +304 -0
- package/dist/.cursor/skills/threejs/references/15-specialized-loaders.md +333 -0
- package/dist/.cursor/skills/threejs/references/16-webgpu.md +302 -0
- package/dist/.cursor/skills/ui-styling/LICENSE.txt +202 -0
- package/dist/.cursor/skills/ui-styling/SKILL.md +321 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/ArsenalSC-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/BigShoulders-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Boldonse-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Boldonse-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/CrimsonPro-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/DMMono-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/DMMono-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/EricaOne-OFL.txt +94 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/EricaOne-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/GeistMono-Bold.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/GeistMono-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/GeistMono-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Gloock-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Gloock-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/InstrumentSans-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Italiana-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Italiana-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Jura-Light.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Jura-Medium.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Jura-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Lora-Bold.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Lora-Italic.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Lora-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Lora-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/NationalPark-Bold.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/NationalPark-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/NationalPark-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Outfit-Bold.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Outfit-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Outfit-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/PixelifySans-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/PoiretOne-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/RedHatMono-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Silkscreen-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/SmoochSans-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Tektur-Medium.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Tektur-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/Tektur-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/WorkSans-Bold.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/WorkSans-Italic.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/WorkSans-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/WorkSans-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/YoungSerif-OFL.txt +93 -0
- package/dist/.cursor/skills/ui-styling/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- package/dist/.cursor/skills/ui-styling/references/canvas-design-system.md +320 -0
- package/dist/.cursor/skills/ui-styling/references/shadcn-accessibility.md +471 -0
- package/dist/.cursor/skills/ui-styling/references/shadcn-components.md +424 -0
- package/dist/.cursor/skills/ui-styling/references/shadcn-theming.md +373 -0
- package/dist/.cursor/skills/ui-styling/references/tailwind-customization.md +483 -0
- package/dist/.cursor/skills/ui-styling/references/tailwind-responsive.md +382 -0
- package/dist/.cursor/skills/ui-styling/references/tailwind-utilities.md +455 -0
- package/dist/.cursor/skills/ui-styling/scripts/requirements.txt +17 -0
- package/dist/.cursor/skills/ui-styling/scripts/shadcn_add.py +292 -0
- package/dist/.cursor/skills/ui-styling/scripts/tailwind_config_gen.py +456 -0
- package/dist/.cursor/skills/ui-styling/scripts/tests/coverage-ui.json +1 -0
- package/dist/.cursor/skills/ui-styling/scripts/tests/requirements.txt +3 -0
- package/dist/.cursor/skills/ui-styling/scripts/tests/test_shadcn_add.py +266 -0
- package/dist/.cursor/skills/ui-styling/scripts/tests/test_tailwind_config_gen.py +336 -0
- package/dist/.cursor/skills/ui-ux-pro-max/SKILL.md +227 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/charts.csv +26 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/colors.csv +97 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/landing.csv +31 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/products.csv +97 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/prompts.csv +24 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +51 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/styles.csv +59 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/typography.csv +58 -0
- package/dist/.cursor/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/dist/.cursor/skills/ui-ux-pro-max/scripts/core.py +236 -0
- package/dist/.cursor/skills/ui-ux-pro-max/scripts/search.py +61 -0
- package/dist/.cursor/skills/web-frameworks/SKILL.md +324 -0
- package/dist/.cursor/skills/web-frameworks/references/nextjs-app-router.md +465 -0
- package/dist/.cursor/skills/web-frameworks/references/nextjs-data-fetching.md +459 -0
- package/dist/.cursor/skills/web-frameworks/references/nextjs-optimization.md +511 -0
- package/dist/.cursor/skills/web-frameworks/references/nextjs-server-components.md +495 -0
- package/dist/.cursor/skills/web-frameworks/references/remix-icon-integration.md +603 -0
- package/dist/.cursor/skills/web-frameworks/references/turborepo-caching.md +551 -0
- package/dist/.cursor/skills/web-frameworks/references/turborepo-pipelines.md +517 -0
- package/dist/.cursor/skills/web-frameworks/references/turborepo-setup.md +542 -0
- package/dist/.cursor/skills/web-frameworks/scripts/__init__.py +0 -0
- package/dist/.cursor/skills/web-frameworks/scripts/nextjs_init.py +547 -0
- package/dist/.cursor/skills/web-frameworks/scripts/requirements.txt +16 -0
- package/dist/.cursor/skills/web-frameworks/scripts/tests/coverage-web.json +1 -0
- package/dist/.cursor/skills/web-frameworks/scripts/tests/requirements.txt +3 -0
- package/dist/.cursor/skills/web-frameworks/scripts/tests/test_nextjs_init.py +319 -0
- package/dist/.cursor/skills/web-frameworks/scripts/tests/test_turborepo_migrate.py +374 -0
- package/dist/.cursor/skills/web-frameworks/scripts/turborepo_migrate.py +394 -0
- package/dist/.cursor/statusline.cjs +274 -0
- package/dist/.cursor/statusline.ps1 +318 -0
- package/dist/.cursor/statusline.sh +165 -0
- package/dist/.cursor/team.yaml +154 -0
- package/dist/.cursor/workflows/development-rules.md +42 -0
- package/dist/.cursor/workflows/documentation-management.md +121 -0
- package/dist/.cursor/workflows/feature.yaml +51 -0
- package/dist/.cursor/workflows/hotfix.yaml +35 -0
- package/dist/.cursor/workflows/orchestration-protocol.md +16 -0
- package/dist/.cursor/workflows/primary-workflow.md +45 -0
- package/dist/.cursor/workflows/release.yaml +61 -0
- package/dist/.cursorrules +106 -0
- package/dist/ANTIGRAVITY.md +84 -0
- package/dist/CURSOR.md +84 -0
- package/dist/MODEL_COSTS.md +61 -0
- package/dist/agents/brainstormer.md +115 -0
- package/dist/agents/code-reviewer.md +168 -0
- package/dist/agents/copywriter.md +110 -0
- package/dist/agents/database-admin.md +104 -0
- package/dist/agents/ddd-architect.md +128 -0
- package/dist/agents/debugger.md +149 -0
- package/dist/agents/design-system-architect.md +166 -0
- package/dist/agents/docs-manager.md +133 -0
- package/dist/agents/fullstack-developer.md +105 -0
- package/dist/agents/git-manager.md +321 -0
- package/dist/agents/graph-architect.md +30 -0
- package/dist/agents/journal-writer.md +113 -0
- package/dist/agents/mcp-manager.md +93 -0
- package/dist/agents/planner.md +61 -0
- package/dist/agents/project-manager.md +131 -0
- package/dist/agents/researcher.md +50 -0
- package/dist/agents/scout-external.md +151 -0
- package/dist/agents/scout.md +117 -0
- package/dist/agents/tester.md +117 -0
- package/dist/agents/trend-watcher.md +24 -0
- package/dist/agents/ui-ux-designer.md +233 -0
- package/dist/commands/audit.md +116 -0
- package/dist/commands/commit.md +116 -0
- package/dist/commands/config.md +144 -0
- package/dist/commands/demo.md +50 -0
- package/dist/commands/design.md +177 -0
- package/dist/commands/do.md +403 -0
- package/dist/commands/docs.md +101 -0
- package/dist/commands/generate.md +140 -0
- package/dist/commands/help.md +128 -0
- package/dist/commands/integrate.md +119 -0
- package/dist/commands/memory.md +97 -0
- package/dist/commands/migrate.md +180 -0
- package/dist/commands/review.md +108 -0
- package/dist/commands/scout.md +111 -0
- package/dist/commands/skill-learn.md +48 -0
- package/dist/commands/start.md +56 -0
- package/dist/commands/status.md +163 -0
- package/dist/commands/test.md +121 -0
- package/dist/commands/theme.md +158 -0
- package/dist/commands/undo.md +166 -0
- package/dist/commands/why.md +155 -0
- package/dist/docs/AI_CONTRACT.md +150 -0
- package/dist/docs/ALL_COMMANDS.md +52 -0
- package/dist/docs/ARCHITECTURE.md +186 -0
- package/dist/docs/CI_CD.md +44 -0
- package/dist/docs/CODE_STYLE.md +333 -0
- package/dist/docs/COMPARISON.md +65 -0
- package/dist/docs/ORCHESTRATION.md +345 -0
- package/dist/docs/PROJECT.md +140 -0
- package/dist/docs/ROADMAP.md +75 -0
- package/dist/docs/UX_MODES.md +173 -0
- package/dist/docs/WORKFLOW.md +125 -0
- package/dist/index.js +1 -0
- package/dist/presets/MIGRATION_GUIDE.md +270 -0
- package/dist/presets/ci-cd/ai-review.yml +49 -0
- package/dist/presets/enterprise/contract.json +93 -0
- package/dist/presets/professional/contract.json +72 -0
- package/dist/presets/rapid/contract.json +53 -0
- package/dist/scripts/check-setup.ps1 +59 -0
- package/dist/scripts/install-hooks.ps1 +74 -0
- package/dist/scripts/install-hooks.sh +69 -0
- package/dist/scripts/install.ps1 +204 -0
- package/dist/scripts/install.sh +208 -0
- package/dist/scripts/new-project.ps1 +101 -0
- package/dist/scripts/new-project.sh +61 -0
- package/dist/scripts/setup-enterprise.ps1 +319 -0
- package/dist/scripts/setup-enterprise.sh +259 -0
- package/dist/scripts/setup-professional.ps1 +232 -0
- package/dist/scripts/setup-professional.sh +146 -0
- package/dist/scripts/setup-rapid.ps1 +138 -0
- package/dist/scripts/setup-rapid.sh +134 -0
- package/dist/skills/INSTALLATION.md +360 -0
- package/dist/skills/SKILLS_INDEX.md +118 -0
- package/dist/skills/THIRD_PARTY_NOTICES.md +405 -0
- package/dist/skills/_template.md +30 -0
- package/dist/skills/aesthetic/SKILL.md +121 -0
- package/dist/skills/aesthetic/assets/design-guideline-template.md +163 -0
- package/dist/skills/aesthetic/assets/design-story-template.md +135 -0
- package/dist/skills/aesthetic/references/design-principles.md +62 -0
- package/dist/skills/aesthetic/references/design-resources.md +75 -0
- package/dist/skills/aesthetic/references/micro-interactions.md +53 -0
- package/dist/skills/aesthetic/references/storytelling-design.md +50 -0
- package/dist/skills/agent_skills_spec.md +55 -0
- package/dist/skills/ai-multimodal/SKILL.md +65 -0
- package/dist/skills/ai-multimodal/references/audio-processing.md +386 -0
- package/dist/skills/ai-multimodal/references/image-generation.md +722 -0
- package/dist/skills/ai-multimodal/references/video-analysis.md +515 -0
- package/dist/skills/ai-multimodal/references/video-generation.md +457 -0
- package/dist/skills/ai-multimodal/references/vision-understanding.md +492 -0
- package/dist/skills/ai-multimodal/scripts/check_setup.py +299 -0
- package/dist/skills/ai-multimodal/scripts/document_converter.py +395 -0
- package/dist/skills/ai-multimodal/scripts/gemini_batch_process.py +896 -0
- package/dist/skills/ai-multimodal/scripts/media_optimizer.py +506 -0
- package/dist/skills/ai-multimodal/scripts/requirements.txt +26 -0
- package/dist/skills/ai-multimodal/scripts/tests/requirements.txt +20 -0
- package/dist/skills/ai-multimodal/scripts/tests/test_document_converter.py +74 -0
- package/dist/skills/ai-multimodal/scripts/tests/test_failures.log +258 -0
- package/dist/skills/ai-multimodal/scripts/tests/test_gemini_batch_process.py +362 -0
- package/dist/skills/ai-multimodal/scripts/tests/test_media_optimizer.py +373 -0
- package/dist/skills/backend-development/SKILL.md +95 -0
- package/dist/skills/backend-development/references/backend-api-design.md +495 -0
- package/dist/skills/backend-development/references/backend-architecture.md +454 -0
- package/dist/skills/backend-development/references/backend-authentication.md +338 -0
- package/dist/skills/backend-development/references/backend-code-quality.md +659 -0
- package/dist/skills/backend-development/references/backend-debugging.md +904 -0
- package/dist/skills/backend-development/references/backend-devops.md +494 -0
- package/dist/skills/backend-development/references/backend-mindset.md +387 -0
- package/dist/skills/backend-development/references/backend-performance.md +397 -0
- package/dist/skills/backend-development/references/backend-security.md +290 -0
- package/dist/skills/backend-development/references/backend-technologies.md +256 -0
- package/dist/skills/backend-development/references/backend-testing.md +429 -0
- package/dist/skills/better-auth/SKILL.md +204 -0
- package/dist/skills/better-auth/references/advanced-features.md +553 -0
- package/dist/skills/better-auth/references/database-integration.md +577 -0
- package/dist/skills/better-auth/references/email-password-auth.md +416 -0
- package/dist/skills/better-auth/references/oauth-providers.md +430 -0
- package/dist/skills/better-auth/scripts/better_auth_init.py +521 -0
- package/dist/skills/better-auth/scripts/requirements.txt +15 -0
- package/dist/skills/better-auth/scripts/tests/test_better_auth_init.py +421 -0
- package/dist/skills/chrome-devtools/SKILL.md +360 -0
- package/dist/skills/chrome-devtools/references/cdp-domains.md +694 -0
- package/dist/skills/chrome-devtools/references/performance-guide.md +940 -0
- package/dist/skills/chrome-devtools/references/puppeteer-reference.md +953 -0
- package/dist/skills/chrome-devtools/scripts/__tests__/selector.test.js +210 -0
- package/dist/skills/chrome-devtools/scripts/click.js +79 -0
- package/dist/skills/chrome-devtools/scripts/console.js +75 -0
- package/dist/skills/chrome-devtools/scripts/evaluate.js +49 -0
- package/dist/skills/chrome-devtools/scripts/fill.js +72 -0
- package/dist/skills/chrome-devtools/scripts/install-deps.sh +181 -0
- package/dist/skills/chrome-devtools/scripts/install.sh +83 -0
- package/dist/skills/chrome-devtools/scripts/lib/browser.js +122 -0
- package/dist/skills/chrome-devtools/scripts/lib/selector.js +178 -0
- package/dist/skills/chrome-devtools/scripts/navigate.js +46 -0
- package/dist/skills/chrome-devtools/scripts/network.js +102 -0
- package/dist/skills/chrome-devtools/scripts/package.json +15 -0
- package/dist/skills/chrome-devtools/scripts/performance.js +145 -0
- package/dist/skills/chrome-devtools/scripts/screenshot.js +180 -0
- package/dist/skills/chrome-devtools/scripts/snapshot.js +131 -0
- package/dist/skills/claude-code/references/advanced-features.md +399 -0
- package/dist/skills/claude-code/references/agent-skills.md +399 -0
- package/dist/skills/claude-code/references/api-reference.md +498 -0
- package/dist/skills/claude-code/references/best-practices.md +447 -0
- package/dist/skills/claude-code/references/cicd-integration.md +428 -0
- package/dist/skills/claude-code/references/common-workflows.md +119 -0
- package/dist/skills/claude-code/references/configuration.md +480 -0
- package/dist/skills/claude-code/references/enterprise-features.md +472 -0
- package/dist/skills/claude-code/references/getting-started.md +252 -0
- package/dist/skills/claude-code/references/hooks-and-plugins.md +444 -0
- package/dist/skills/claude-code/references/hooks-comprehensive.md +622 -0
- package/dist/skills/claude-code/references/ide-integration.md +316 -0
- package/dist/skills/claude-code/references/mcp-integration.md +386 -0
- package/dist/skills/claude-code/references/slash-commands.md +489 -0
- package/dist/skills/claude-code/references/troubleshooting.md +456 -0
- package/dist/skills/claude-code/skill.md +60 -0
- package/dist/skills/code-review/SKILL.md +143 -0
- package/dist/skills/code-review/references/code-review-reception.md +209 -0
- package/dist/skills/code-review/references/requesting-code-review.md +105 -0
- package/dist/skills/code-review/references/verification-before-completion.md +139 -0
- package/dist/skills/common/api_key_helper.py +300 -0
- package/dist/skills/databases/SKILL.md +232 -0
- package/dist/skills/databases/references/mongodb-aggregation.md +447 -0
- package/dist/skills/databases/references/mongodb-atlas.md +465 -0
- package/dist/skills/databases/references/mongodb-crud.md +408 -0
- package/dist/skills/databases/references/mongodb-indexing.md +442 -0
- package/dist/skills/databases/references/postgresql-administration.md +594 -0
- package/dist/skills/databases/references/postgresql-performance.md +527 -0
- package/dist/skills/databases/references/postgresql-psql-cli.md +467 -0
- package/dist/skills/databases/references/postgresql-queries.md +475 -0
- package/dist/skills/databases/scripts/db_backup.py +502 -0
- package/dist/skills/databases/scripts/db_migrate.py +414 -0
- package/dist/skills/databases/scripts/db_performance_check.py +444 -0
- package/dist/skills/databases/scripts/requirements.txt +20 -0
- package/dist/skills/databases/scripts/tests/coverage-db.json +1 -0
- package/dist/skills/databases/scripts/tests/requirements.txt +4 -0
- package/dist/skills/databases/scripts/tests/test_db_backup.py +340 -0
- package/dist/skills/databases/scripts/tests/test_db_migrate.py +277 -0
- package/dist/skills/databases/scripts/tests/test_db_performance_check.py +370 -0
- package/dist/skills/debugging/SKILL.md +84 -0
- package/dist/skills/debugging/references/defense-in-depth.md +124 -0
- package/dist/skills/debugging/references/root-cause-tracing.md +122 -0
- package/dist/skills/debugging/references/systematic-debugging.md +102 -0
- package/dist/skills/debugging/references/verification.md +123 -0
- package/dist/skills/debugging/scripts/find-polluter.sh +63 -0
- package/dist/skills/debugging/scripts/find-polluter.test.md +102 -0
- package/dist/skills/devops/SKILL.md +285 -0
- package/dist/skills/devops/references/browser-rendering.md +305 -0
- package/dist/skills/devops/references/cloudflare-d1-kv.md +123 -0
- package/dist/skills/devops/references/cloudflare-platform.md +271 -0
- package/dist/skills/devops/references/cloudflare-r2-storage.md +280 -0
- package/dist/skills/devops/references/cloudflare-workers-advanced.md +312 -0
- package/dist/skills/devops/references/cloudflare-workers-apis.md +309 -0
- package/dist/skills/devops/references/cloudflare-workers-basics.md +418 -0
- package/dist/skills/devops/references/docker-basics.md +297 -0
- package/dist/skills/devops/references/docker-compose.md +292 -0
- package/dist/skills/devops/references/gcloud-platform.md +297 -0
- package/dist/skills/devops/references/gcloud-services.md +304 -0
- package/dist/skills/devops/scripts/cloudflare_deploy.py +269 -0
- package/dist/skills/devops/scripts/docker_optimize.py +320 -0
- package/dist/skills/devops/scripts/requirements.txt +20 -0
- package/dist/skills/devops/scripts/tests/requirements.txt +3 -0
- package/dist/skills/devops/scripts/tests/test_cloudflare_deploy.py +285 -0
- package/dist/skills/devops/scripts/tests/test_docker_optimize.py +436 -0
- package/dist/skills/docs-seeker/SKILL.md +97 -0
- package/dist/skills/docs-seeker/package.json +25 -0
- package/dist/skills/docs-seeker/references/advanced.md +79 -0
- package/dist/skills/docs-seeker/references/context7-patterns.md +68 -0
- package/dist/skills/docs-seeker/references/errors.md +68 -0
- package/dist/skills/docs-seeker/scripts/analyze-llms-txt.js +211 -0
- package/dist/skills/docs-seeker/scripts/detect-topic.js +172 -0
- package/dist/skills/docs-seeker/scripts/fetch-docs.js +213 -0
- package/dist/skills/docs-seeker/scripts/tests/run-tests.js +72 -0
- package/dist/skills/docs-seeker/scripts/tests/test-analyze-llms.js +119 -0
- package/dist/skills/docs-seeker/scripts/tests/test-detect-topic.js +112 -0
- package/dist/skills/docs-seeker/scripts/tests/test-fetch-docs.js +84 -0
- package/dist/skills/docs-seeker/scripts/utils/env-loader.js +94 -0
- package/dist/skills/docs-seeker/workflows/library-search.md +87 -0
- package/dist/skills/docs-seeker/workflows/repo-analysis.md +91 -0
- package/dist/skills/docs-seeker/workflows/topic-search.md +77 -0
- package/dist/skills/document-skills/docx/LICENSE.txt +30 -0
- package/dist/skills/document-skills/docx/SKILL.md +197 -0
- package/dist/skills/document-skills/docx/docx-js.md +350 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/mce/mc.xsd +75 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/dist/skills/document-skills/docx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/dist/skills/document-skills/docx/ooxml/scripts/pack.py +159 -0
- package/dist/skills/document-skills/docx/ooxml/scripts/unpack.py +29 -0
- package/dist/skills/document-skills/docx/ooxml/scripts/validate.py +69 -0
- package/dist/skills/document-skills/docx/ooxml/scripts/validation/__init__.py +15 -0
- package/dist/skills/document-skills/docx/ooxml/scripts/validation/base.py +951 -0
- package/dist/skills/document-skills/docx/ooxml/scripts/validation/docx.py +274 -0
- package/dist/skills/document-skills/docx/ooxml/scripts/validation/pptx.py +315 -0
- package/dist/skills/document-skills/docx/ooxml/scripts/validation/redlining.py +279 -0
- package/dist/skills/document-skills/docx/ooxml.md +610 -0
- package/dist/skills/document-skills/docx/scripts/__init__.py +1 -0
- package/dist/skills/document-skills/docx/scripts/document.py +1276 -0
- package/dist/skills/document-skills/docx/scripts/templates/comments.xml +3 -0
- package/dist/skills/document-skills/docx/scripts/templates/commentsExtended.xml +3 -0
- package/dist/skills/document-skills/docx/scripts/templates/commentsExtensible.xml +3 -0
- package/dist/skills/document-skills/docx/scripts/templates/commentsIds.xml +3 -0
- package/dist/skills/document-skills/docx/scripts/templates/people.xml +3 -0
- package/dist/skills/document-skills/docx/scripts/utilities.py +374 -0
- package/dist/skills/document-skills/pdf/LICENSE.txt +30 -0
- package/dist/skills/document-skills/pdf/SKILL.md +294 -0
- package/dist/skills/document-skills/pdf/forms.md +205 -0
- package/dist/skills/document-skills/pdf/reference.md +612 -0
- package/dist/skills/document-skills/pdf/scripts/check_bounding_boxes.py +70 -0
- package/dist/skills/document-skills/pdf/scripts/check_bounding_boxes_test.py +226 -0
- package/dist/skills/document-skills/pdf/scripts/check_fillable_fields.py +12 -0
- package/dist/skills/document-skills/pdf/scripts/convert_pdf_to_images.py +35 -0
- package/dist/skills/document-skills/pdf/scripts/create_validation_image.py +41 -0
- package/dist/skills/document-skills/pdf/scripts/extract_form_field_info.py +152 -0
- package/dist/skills/document-skills/pdf/scripts/fill_fillable_fields.py +114 -0
- package/dist/skills/document-skills/pdf/scripts/fill_pdf_form_with_annotations.py +108 -0
- package/dist/skills/document-skills/pptx/LICENSE.txt +30 -0
- package/dist/skills/document-skills/pptx/SKILL.md +484 -0
- package/dist/skills/document-skills/pptx/html2pptx.md +625 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-contentTypes.xsd +42 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-coreProperties.xsd +50 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-digSig.xsd +49 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/ecma/fouth-edition/opc-relationships.xsd +33 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/mce/mc.xsd +75 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2010.xsd +560 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2012.xsd +67 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-2018.xsd +14 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cex-2018.xsd +20 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-cid-2016.xsd +13 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
- package/dist/skills/document-skills/pptx/ooxml/schemas/microsoft/wml-symex-2015.xsd +8 -0
- package/dist/skills/document-skills/pptx/ooxml/scripts/pack.py +159 -0
- package/dist/skills/document-skills/pptx/ooxml/scripts/unpack.py +29 -0
- package/dist/skills/document-skills/pptx/ooxml/scripts/validate.py +69 -0
- package/dist/skills/document-skills/pptx/ooxml/scripts/validation/__init__.py +15 -0
- package/dist/skills/document-skills/pptx/ooxml/scripts/validation/base.py +951 -0
- package/dist/skills/document-skills/pptx/ooxml/scripts/validation/docx.py +274 -0
- package/dist/skills/document-skills/pptx/ooxml/scripts/validation/pptx.py +315 -0
- package/dist/skills/document-skills/pptx/ooxml/scripts/validation/redlining.py +279 -0
- package/dist/skills/document-skills/pptx/ooxml.md +427 -0
- package/dist/skills/document-skills/pptx/scripts/html2pptx.js +979 -0
- package/dist/skills/document-skills/pptx/scripts/inventory.py +1020 -0
- package/dist/skills/document-skills/pptx/scripts/rearrange.py +231 -0
- package/dist/skills/document-skills/pptx/scripts/replace.py +385 -0
- package/dist/skills/document-skills/pptx/scripts/thumbnail.py +450 -0
- package/dist/skills/document-skills/xlsx/LICENSE.txt +30 -0
- package/dist/skills/document-skills/xlsx/SKILL.md +289 -0
- package/dist/skills/document-skills/xlsx/recalc.py +178 -0
- package/dist/skills/frontend-design/SKILL.md +91 -0
- package/dist/skills/frontend-design/references/ai-multimodal-overview.md +165 -0
- package/dist/skills/frontend-design/references/analysis-best-practices.md +80 -0
- package/dist/skills/frontend-design/references/analysis-prompts.md +141 -0
- package/dist/skills/frontend-design/references/analysis-techniques.md +118 -0
- package/dist/skills/frontend-design/references/animejs.md +396 -0
- package/dist/skills/frontend-design/references/asset-generation.md +337 -0
- package/dist/skills/frontend-design/references/design-extraction-overview.md +71 -0
- package/dist/skills/frontend-design/references/extraction-best-practices.md +141 -0
- package/dist/skills/frontend-design/references/extraction-output-templates.md +162 -0
- package/dist/skills/frontend-design/references/extraction-prompts.md +127 -0
- package/dist/skills/frontend-design/references/technical-accessibility.md +119 -0
- package/dist/skills/frontend-design/references/technical-best-practices.md +97 -0
- package/dist/skills/frontend-design/references/technical-optimization.md +44 -0
- package/dist/skills/frontend-design/references/technical-overview.md +90 -0
- package/dist/skills/frontend-design/references/technical-workflows.md +150 -0
- package/dist/skills/frontend-design/references/visual-analysis-overview.md +95 -0
- package/dist/skills/frontend-design-pro/SKILL.md +58 -0
- package/dist/skills/frontend-development/SKILL.md +399 -0
- package/dist/skills/frontend-development/resources/common-patterns.md +331 -0
- package/dist/skills/frontend-development/resources/complete-examples.md +872 -0
- package/dist/skills/frontend-development/resources/component-patterns.md +502 -0
- package/dist/skills/frontend-development/resources/data-fetching.md +767 -0
- package/dist/skills/frontend-development/resources/file-organization.md +502 -0
- package/dist/skills/frontend-development/resources/loading-and-error-states.md +501 -0
- package/dist/skills/frontend-development/resources/performance.md +406 -0
- package/dist/skills/frontend-development/resources/routing-guide.md +364 -0
- package/dist/skills/frontend-development/resources/styling-guide.md +428 -0
- package/dist/skills/frontend-development/resources/typescript-standards.md +418 -0
- package/dist/skills/google-adk-python/SKILL.md +237 -0
- package/dist/skills/install.ps1 +600 -0
- package/dist/skills/install.sh +685 -0
- package/dist/skills/mcp-builder/LICENSE.txt +202 -0
- package/dist/skills/mcp-builder/SKILL.md +328 -0
- package/dist/skills/mcp-builder/reference/evaluation.md +602 -0
- package/dist/skills/mcp-builder/reference/mcp_best_practices.md +915 -0
- package/dist/skills/mcp-builder/reference/node_mcp_server.md +916 -0
- package/dist/skills/mcp-builder/reference/python_mcp_server.md +752 -0
- package/dist/skills/mcp-builder/scripts/connections.py +151 -0
- package/dist/skills/mcp-builder/scripts/evaluation.py +373 -0
- package/dist/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
- package/dist/skills/mcp-builder/scripts/requirements.txt +2 -0
- package/dist/skills/mcp-management/SKILL.md +209 -0
- package/dist/skills/mcp-management/assets/tools.json +3146 -0
- package/dist/skills/mcp-management/references/configuration.md +114 -0
- package/dist/skills/mcp-management/references/gemini-cli-integration.md +215 -0
- package/dist/skills/mcp-management/references/mcp-protocol.md +116 -0
- package/dist/skills/mcp-management/scripts/cli.ts +195 -0
- package/dist/skills/mcp-management/scripts/mcp-client.ts +230 -0
- package/dist/skills/mcp-management/scripts/package.json +20 -0
- package/dist/skills/mcp-management/scripts/tsconfig.json +15 -0
- package/dist/skills/media-processing/SKILL.md +91 -0
- package/dist/skills/media-processing/references/common-workflows.md +132 -0
- package/dist/skills/media-processing/references/ffmpeg-encoding.md +358 -0
- package/dist/skills/media-processing/references/ffmpeg-filters.md +503 -0
- package/dist/skills/media-processing/references/ffmpeg-streaming.md +403 -0
- package/dist/skills/media-processing/references/format-compatibility.md +375 -0
- package/dist/skills/media-processing/references/imagemagick-batch.md +612 -0
- package/dist/skills/media-processing/references/imagemagick-editing.md +623 -0
- package/dist/skills/media-processing/references/rmbg-background-removal.md +66 -0
- package/dist/skills/media-processing/references/troubleshooting.md +109 -0
- package/dist/skills/media-processing/scripts/batch-remove-background.sh +124 -0
- package/dist/skills/media-processing/scripts/batch_resize.py +342 -0
- package/dist/skills/media-processing/scripts/media_convert.py +311 -0
- package/dist/skills/media-processing/scripts/remove-background.sh +96 -0
- package/dist/skills/media-processing/scripts/remove-bg-node.js +158 -0
- package/dist/skills/media-processing/scripts/requirements.txt +24 -0
- package/dist/skills/media-processing/scripts/tests/requirements.txt +2 -0
- package/dist/skills/media-processing/scripts/tests/test_batch_resize.py +372 -0
- package/dist/skills/media-processing/scripts/tests/test_media_convert.py +259 -0
- package/dist/skills/media-processing/scripts/tests/test_video_optimize.py +397 -0
- package/dist/skills/media-processing/scripts/video_optimize.py +414 -0
- package/dist/skills/mobile-development/SKILL.md +212 -0
- package/dist/skills/mobile-development/references/mobile-android.md +604 -0
- package/dist/skills/mobile-development/references/mobile-best-practices.md +545 -0
- package/dist/skills/mobile-development/references/mobile-debugging.md +1089 -0
- package/dist/skills/mobile-development/references/mobile-frameworks.md +465 -0
- package/dist/skills/mobile-development/references/mobile-ios.md +496 -0
- package/dist/skills/mobile-development/references/mobile-mindset.md +544 -0
- package/dist/skills/payment-integration/SKILL.md +118 -0
- package/dist/skills/payment-integration/references/polar/benefits.md +396 -0
- package/dist/skills/payment-integration/references/polar/best-practices.md +482 -0
- package/dist/skills/payment-integration/references/polar/checkouts.md +266 -0
- package/dist/skills/payment-integration/references/polar/overview.md +184 -0
- package/dist/skills/payment-integration/references/polar/products.md +244 -0
- package/dist/skills/payment-integration/references/polar/sdk.md +436 -0
- package/dist/skills/payment-integration/references/polar/subscriptions.md +340 -0
- package/dist/skills/payment-integration/references/polar/webhooks.md +405 -0
- package/dist/skills/payment-integration/references/sepay/api.md +140 -0
- package/dist/skills/payment-integration/references/sepay/best-practices.md +337 -0
- package/dist/skills/payment-integration/references/sepay/overview.md +138 -0
- package/dist/skills/payment-integration/references/sepay/qr-codes.md +228 -0
- package/dist/skills/payment-integration/references/sepay/sdk.md +213 -0
- package/dist/skills/payment-integration/references/sepay/webhooks.md +208 -0
- package/dist/skills/payment-integration/scripts/checkout-helper.js +244 -0
- package/dist/skills/payment-integration/scripts/package.json +17 -0
- package/dist/skills/payment-integration/scripts/polar-webhook-verify.js +202 -0
- package/dist/skills/payment-integration/scripts/sepay-webhook-verify.js +193 -0
- package/dist/skills/payment-integration/scripts/test-scripts.js +237 -0
- package/dist/skills/planning/SKILL.md +121 -0
- package/dist/skills/planning/references/codebase-understanding.md +62 -0
- package/dist/skills/planning/references/output-standards.md +87 -0
- package/dist/skills/planning/references/plan-organization.md +123 -0
- package/dist/skills/planning/references/research-phase.md +49 -0
- package/dist/skills/planning/references/solution-design.md +63 -0
- package/dist/skills/problem-solving/SKILL.md +96 -0
- package/dist/skills/problem-solving/references/attribution.md +69 -0
- package/dist/skills/problem-solving/references/collision-zone-thinking.md +79 -0
- package/dist/skills/problem-solving/references/inversion-exercise.md +91 -0
- package/dist/skills/problem-solving/references/meta-pattern-recognition.md +87 -0
- package/dist/skills/problem-solving/references/scale-game.md +95 -0
- package/dist/skills/problem-solving/references/simplification-cascades.md +80 -0
- package/dist/skills/problem-solving/references/when-stuck.md +72 -0
- package/dist/skills/repomix/SKILL.md +247 -0
- package/dist/skills/repomix/references/configuration.md +211 -0
- package/dist/skills/repomix/references/usage-patterns.md +232 -0
- package/dist/skills/repomix/scripts/repomix_batch.py +455 -0
- package/dist/skills/repomix/scripts/repos.example.json +15 -0
- package/dist/skills/repomix/scripts/requirements.txt +15 -0
- package/dist/skills/repomix/scripts/tests/test_repomix_batch.py +531 -0
- package/dist/skills/research/SKILL.md +168 -0
- package/dist/skills/sequential-thinking/SKILL.md +94 -0
- package/dist/skills/sequential-thinking/package.json +31 -0
- package/dist/skills/sequential-thinking/references/advanced-strategies.md +79 -0
- package/dist/skills/sequential-thinking/references/advanced-techniques.md +76 -0
- package/dist/skills/sequential-thinking/references/core-patterns.md +95 -0
- package/dist/skills/sequential-thinking/references/examples-api.md +88 -0
- package/dist/skills/sequential-thinking/references/examples-architecture.md +94 -0
- package/dist/skills/sequential-thinking/references/examples-debug.md +90 -0
- package/dist/skills/sequential-thinking/scripts/format-thought.js +159 -0
- package/dist/skills/sequential-thinking/scripts/process-thought.js +236 -0
- package/dist/skills/sequential-thinking/tests/format-thought.test.js +133 -0
- package/dist/skills/sequential-thinking/tests/process-thought.test.js +215 -0
- package/dist/skills/shopify/SKILL.md +319 -0
- package/dist/skills/shopify/references/app-development.md +470 -0
- package/dist/skills/shopify/references/extensions.md +493 -0
- package/dist/skills/shopify/references/themes.md +498 -0
- package/dist/skills/shopify/scripts/requirements.txt +19 -0
- package/dist/skills/shopify/scripts/shopify_init.py +423 -0
- package/dist/skills/shopify/scripts/tests/test_shopify_init.py +385 -0
- package/dist/skills/skill-creator/LICENSE.txt +202 -0
- package/dist/skills/skill-creator/SKILL.md +266 -0
- package/dist/skills/skill-creator/scripts/init_skill.py +303 -0
- package/dist/skills/skill-creator/scripts/package_skill.py +110 -0
- package/dist/skills/skill-creator/scripts/quick_validate.py +65 -0
- package/dist/skills/template-skill/SKILL.md +6 -0
- package/dist/skills/threejs/SKILL.md +89 -0
- package/dist/skills/threejs/references/01-getting-started.md +177 -0
- package/dist/skills/threejs/references/02-loaders.md +169 -0
- package/dist/skills/threejs/references/03-textures.md +170 -0
- package/dist/skills/threejs/references/04-cameras.md +195 -0
- package/dist/skills/threejs/references/05-lights.md +183 -0
- package/dist/skills/threejs/references/06-animations.md +214 -0
- package/dist/skills/threejs/references/07-math.md +260 -0
- package/dist/skills/threejs/references/08-interaction.md +267 -0
- package/dist/skills/threejs/references/09-postprocessing.md +240 -0
- package/dist/skills/threejs/references/10-controls.md +259 -0
- package/dist/skills/threejs/references/11-materials-advanced.md +270 -0
- package/dist/skills/threejs/references/12-performance.md +269 -0
- package/dist/skills/threejs/references/13-node-materials.md +298 -0
- package/dist/skills/threejs/references/14-physics-vr.md +304 -0
- package/dist/skills/threejs/references/15-specialized-loaders.md +333 -0
- package/dist/skills/threejs/references/16-webgpu.md +302 -0
- package/dist/skills/ui-styling/LICENSE.txt +202 -0
- package/dist/skills/ui-styling/SKILL.md +321 -0
- package/dist/skills/ui-styling/canvas-fonts/ArsenalSC-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/BigShoulders-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/Boldonse-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/Boldonse-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/CrimsonPro-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/DMMono-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/DMMono-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/EricaOne-OFL.txt +94 -0
- package/dist/skills/ui-styling/canvas-fonts/EricaOne-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/GeistMono-Bold.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/GeistMono-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/GeistMono-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/Gloock-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/Gloock-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/InstrumentSans-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/Italiana-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/Italiana-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/Jura-Light.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/Jura-Medium.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/Jura-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/Lora-Bold.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/Lora-Italic.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/Lora-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/Lora-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/NationalPark-Bold.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/NationalPark-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/NationalPark-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/Outfit-Bold.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/Outfit-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/Outfit-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/PixelifySans-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/PoiretOne-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/RedHatMono-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/Silkscreen-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/SmoochSans-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/Tektur-Medium.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/Tektur-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/Tektur-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/WorkSans-Bold.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/WorkSans-Italic.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/WorkSans-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/WorkSans-Regular.ttf +0 -0
- package/dist/skills/ui-styling/canvas-fonts/YoungSerif-OFL.txt +93 -0
- package/dist/skills/ui-styling/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- package/dist/skills/ui-styling/references/canvas-design-system.md +320 -0
- package/dist/skills/ui-styling/references/shadcn-accessibility.md +471 -0
- package/dist/skills/ui-styling/references/shadcn-components.md +424 -0
- package/dist/skills/ui-styling/references/shadcn-theming.md +373 -0
- package/dist/skills/ui-styling/references/tailwind-customization.md +483 -0
- package/dist/skills/ui-styling/references/tailwind-responsive.md +382 -0
- package/dist/skills/ui-styling/references/tailwind-utilities.md +455 -0
- package/dist/skills/ui-styling/scripts/requirements.txt +17 -0
- package/dist/skills/ui-styling/scripts/shadcn_add.py +292 -0
- package/dist/skills/ui-styling/scripts/tailwind_config_gen.py +456 -0
- package/dist/skills/ui-styling/scripts/tests/coverage-ui.json +1 -0
- package/dist/skills/ui-styling/scripts/tests/requirements.txt +3 -0
- package/dist/skills/ui-styling/scripts/tests/test_shadcn_add.py +266 -0
- package/dist/skills/ui-styling/scripts/tests/test_tailwind_config_gen.py +336 -0
- package/dist/skills/ui-ux-pro-max/SKILL.md +227 -0
- package/dist/skills/ui-ux-pro-max/data/charts.csv +26 -0
- package/dist/skills/ui-ux-pro-max/data/colors.csv +97 -0
- package/dist/skills/ui-ux-pro-max/data/landing.csv +31 -0
- package/dist/skills/ui-ux-pro-max/data/products.csv +97 -0
- package/dist/skills/ui-ux-pro-max/data/prompts.csv +24 -0
- package/dist/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/dist/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +51 -0
- package/dist/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/dist/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/dist/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/dist/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/dist/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/dist/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/dist/skills/ui-ux-pro-max/data/styles.csv +59 -0
- package/dist/skills/ui-ux-pro-max/data/typography.csv +58 -0
- package/dist/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/dist/skills/ui-ux-pro-max/scripts/core.py +236 -0
- package/dist/skills/ui-ux-pro-max/scripts/search.py +61 -0
- package/dist/skills/web-frameworks/SKILL.md +324 -0
- package/dist/skills/web-frameworks/references/nextjs-app-router.md +465 -0
- package/dist/skills/web-frameworks/references/nextjs-data-fetching.md +459 -0
- package/dist/skills/web-frameworks/references/nextjs-optimization.md +511 -0
- package/dist/skills/web-frameworks/references/nextjs-server-components.md +495 -0
- package/dist/skills/web-frameworks/references/remix-icon-integration.md +603 -0
- package/dist/skills/web-frameworks/references/turborepo-caching.md +551 -0
- package/dist/skills/web-frameworks/references/turborepo-pipelines.md +517 -0
- package/dist/skills/web-frameworks/references/turborepo-setup.md +542 -0
- package/dist/skills/web-frameworks/scripts/__init__.py +0 -0
- package/dist/skills/web-frameworks/scripts/nextjs_init.py +547 -0
- package/dist/skills/web-frameworks/scripts/requirements.txt +16 -0
- package/dist/skills/web-frameworks/scripts/tests/coverage-web.json +1 -0
- package/dist/skills/web-frameworks/scripts/tests/requirements.txt +3 -0
- package/dist/skills/web-frameworks/scripts/tests/test_nextjs_init.py +319 -0
- package/dist/skills/web-frameworks/scripts/tests/test_turborepo_migrate.py +374 -0
- package/dist/skills/web-frameworks/scripts/turborepo_migrate.py +394 -0
- package/docs/ROADMAP.md +8 -1
- package/package.json +8 -6
- package/scripts/add-shebang.js +13 -0
- package/src/cli.js +0 -501
- package/src/commands/clean.js +0 -87
- package/src/commands/doctor.js +0 -173
- package/src/commands/init.js +0 -360
- package/src/commands/memory.js +0 -158
- package/src/commands/uninstall.js +0 -167
- package/src/commands/update.js +0 -163
- package/src/lib/configManager.js +0 -215
- package/src/lib/contextDatabase.js +0 -362
- package/src/lib/detector.js +0 -140
- package/src/lib/memoryManager.js +0 -253
- package/src/lib/profiles.js +0 -100
- package/src/lib/sizeCalculator.js +0 -121
- package/src/lib/skillPacks.js +0 -109
|
@@ -0,0 +1,3146 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"serverName": "memory",
|
|
4
|
+
"name": "create_entities",
|
|
5
|
+
"description": "Create multiple new entities in the knowledge graph",
|
|
6
|
+
"inputSchema": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"entities": {
|
|
10
|
+
"type": "array",
|
|
11
|
+
"items": {
|
|
12
|
+
"type": "object",
|
|
13
|
+
"properties": {
|
|
14
|
+
"name": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"description": "The name of the entity"
|
|
17
|
+
},
|
|
18
|
+
"entityType": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "The type of the entity"
|
|
21
|
+
},
|
|
22
|
+
"observations": {
|
|
23
|
+
"type": "array",
|
|
24
|
+
"items": {
|
|
25
|
+
"type": "string"
|
|
26
|
+
},
|
|
27
|
+
"description": "An array of observation contents associated with the entity"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"required": [
|
|
31
|
+
"name",
|
|
32
|
+
"entityType",
|
|
33
|
+
"observations"
|
|
34
|
+
],
|
|
35
|
+
"additionalProperties": false
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
"required": [
|
|
40
|
+
"entities"
|
|
41
|
+
],
|
|
42
|
+
"additionalProperties": false
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"serverName": "memory",
|
|
47
|
+
"name": "create_relations",
|
|
48
|
+
"description": "Create multiple new relations between entities in the knowledge graph. Relations should be in active voice",
|
|
49
|
+
"inputSchema": {
|
|
50
|
+
"type": "object",
|
|
51
|
+
"properties": {
|
|
52
|
+
"relations": {
|
|
53
|
+
"type": "array",
|
|
54
|
+
"items": {
|
|
55
|
+
"type": "object",
|
|
56
|
+
"properties": {
|
|
57
|
+
"from": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"description": "The name of the entity where the relation starts"
|
|
60
|
+
},
|
|
61
|
+
"to": {
|
|
62
|
+
"type": "string",
|
|
63
|
+
"description": "The name of the entity where the relation ends"
|
|
64
|
+
},
|
|
65
|
+
"relationType": {
|
|
66
|
+
"type": "string",
|
|
67
|
+
"description": "The type of the relation"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"required": [
|
|
71
|
+
"from",
|
|
72
|
+
"to",
|
|
73
|
+
"relationType"
|
|
74
|
+
],
|
|
75
|
+
"additionalProperties": false
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"required": [
|
|
80
|
+
"relations"
|
|
81
|
+
],
|
|
82
|
+
"additionalProperties": false
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"serverName": "memory",
|
|
87
|
+
"name": "add_observations",
|
|
88
|
+
"description": "Add new observations to existing entities in the knowledge graph",
|
|
89
|
+
"inputSchema": {
|
|
90
|
+
"type": "object",
|
|
91
|
+
"properties": {
|
|
92
|
+
"observations": {
|
|
93
|
+
"type": "array",
|
|
94
|
+
"items": {
|
|
95
|
+
"type": "object",
|
|
96
|
+
"properties": {
|
|
97
|
+
"entityName": {
|
|
98
|
+
"type": "string",
|
|
99
|
+
"description": "The name of the entity to add the observations to"
|
|
100
|
+
},
|
|
101
|
+
"contents": {
|
|
102
|
+
"type": "array",
|
|
103
|
+
"items": {
|
|
104
|
+
"type": "string"
|
|
105
|
+
},
|
|
106
|
+
"description": "An array of observation contents to add"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
"required": [
|
|
110
|
+
"entityName",
|
|
111
|
+
"contents"
|
|
112
|
+
],
|
|
113
|
+
"additionalProperties": false
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"required": [
|
|
118
|
+
"observations"
|
|
119
|
+
],
|
|
120
|
+
"additionalProperties": false
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"serverName": "memory",
|
|
125
|
+
"name": "delete_entities",
|
|
126
|
+
"description": "Delete multiple entities and their associated relations from the knowledge graph",
|
|
127
|
+
"inputSchema": {
|
|
128
|
+
"type": "object",
|
|
129
|
+
"properties": {
|
|
130
|
+
"entityNames": {
|
|
131
|
+
"type": "array",
|
|
132
|
+
"items": {
|
|
133
|
+
"type": "string"
|
|
134
|
+
},
|
|
135
|
+
"description": "An array of entity names to delete"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
"required": [
|
|
139
|
+
"entityNames"
|
|
140
|
+
],
|
|
141
|
+
"additionalProperties": false
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"serverName": "memory",
|
|
146
|
+
"name": "delete_observations",
|
|
147
|
+
"description": "Delete specific observations from entities in the knowledge graph",
|
|
148
|
+
"inputSchema": {
|
|
149
|
+
"type": "object",
|
|
150
|
+
"properties": {
|
|
151
|
+
"deletions": {
|
|
152
|
+
"type": "array",
|
|
153
|
+
"items": {
|
|
154
|
+
"type": "object",
|
|
155
|
+
"properties": {
|
|
156
|
+
"entityName": {
|
|
157
|
+
"type": "string",
|
|
158
|
+
"description": "The name of the entity containing the observations"
|
|
159
|
+
},
|
|
160
|
+
"observations": {
|
|
161
|
+
"type": "array",
|
|
162
|
+
"items": {
|
|
163
|
+
"type": "string"
|
|
164
|
+
},
|
|
165
|
+
"description": "An array of observations to delete"
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
"required": [
|
|
169
|
+
"entityName",
|
|
170
|
+
"observations"
|
|
171
|
+
],
|
|
172
|
+
"additionalProperties": false
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"required": [
|
|
177
|
+
"deletions"
|
|
178
|
+
],
|
|
179
|
+
"additionalProperties": false
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"serverName": "memory",
|
|
184
|
+
"name": "delete_relations",
|
|
185
|
+
"description": "Delete multiple relations from the knowledge graph",
|
|
186
|
+
"inputSchema": {
|
|
187
|
+
"type": "object",
|
|
188
|
+
"properties": {
|
|
189
|
+
"relations": {
|
|
190
|
+
"type": "array",
|
|
191
|
+
"items": {
|
|
192
|
+
"type": "object",
|
|
193
|
+
"properties": {
|
|
194
|
+
"from": {
|
|
195
|
+
"type": "string",
|
|
196
|
+
"description": "The name of the entity where the relation starts"
|
|
197
|
+
},
|
|
198
|
+
"to": {
|
|
199
|
+
"type": "string",
|
|
200
|
+
"description": "The name of the entity where the relation ends"
|
|
201
|
+
},
|
|
202
|
+
"relationType": {
|
|
203
|
+
"type": "string",
|
|
204
|
+
"description": "The type of the relation"
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
"required": [
|
|
208
|
+
"from",
|
|
209
|
+
"to",
|
|
210
|
+
"relationType"
|
|
211
|
+
],
|
|
212
|
+
"additionalProperties": false
|
|
213
|
+
},
|
|
214
|
+
"description": "An array of relations to delete"
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
"required": [
|
|
218
|
+
"relations"
|
|
219
|
+
],
|
|
220
|
+
"additionalProperties": false
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"serverName": "memory",
|
|
225
|
+
"name": "read_graph",
|
|
226
|
+
"description": "Read the entire knowledge graph",
|
|
227
|
+
"inputSchema": {
|
|
228
|
+
"type": "object",
|
|
229
|
+
"properties": {},
|
|
230
|
+
"additionalProperties": false
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"serverName": "memory",
|
|
235
|
+
"name": "search_nodes",
|
|
236
|
+
"description": "Search for nodes in the knowledge graph based on a query",
|
|
237
|
+
"inputSchema": {
|
|
238
|
+
"type": "object",
|
|
239
|
+
"properties": {
|
|
240
|
+
"query": {
|
|
241
|
+
"type": "string",
|
|
242
|
+
"description": "The search query to match against entity names, types, and observation content"
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
"required": [
|
|
246
|
+
"query"
|
|
247
|
+
],
|
|
248
|
+
"additionalProperties": false
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"serverName": "memory",
|
|
253
|
+
"name": "open_nodes",
|
|
254
|
+
"description": "Open specific nodes in the knowledge graph by their names",
|
|
255
|
+
"inputSchema": {
|
|
256
|
+
"type": "object",
|
|
257
|
+
"properties": {
|
|
258
|
+
"names": {
|
|
259
|
+
"type": "array",
|
|
260
|
+
"items": {
|
|
261
|
+
"type": "string"
|
|
262
|
+
},
|
|
263
|
+
"description": "An array of entity names to retrieve"
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"required": [
|
|
267
|
+
"names"
|
|
268
|
+
],
|
|
269
|
+
"additionalProperties": false
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"serverName": "sequential-thinking",
|
|
274
|
+
"name": "sequentialthinking",
|
|
275
|
+
"description": "A detailed tool for dynamic and reflective problem-solving through thoughts.\nThis tool helps analyze problems through a flexible thinking process that can adapt and evolve.\nEach thought can build on, question, or revise previous insights as understanding deepens.\n\nWhen to use this tool:\n- Breaking down complex problems into steps\n- Planning and design with room for revision\n- Analysis that might need course correction\n- Problems where the full scope might not be clear initially\n- Problems that require a multi-step solution\n- Tasks that need to maintain context over multiple steps\n- Situations where irrelevant information needs to be filtered out\n\nKey features:\n- You can adjust total_thoughts up or down as you progress\n- You can question or revise previous thoughts\n- You can add more thoughts even after reaching what seemed like the end\n- You can express uncertainty and explore alternative approaches\n- Not every thought needs to build linearly - you can branch or backtrack\n- Generates a solution hypothesis\n- Verifies the hypothesis based on the Chain of Thought steps\n- Repeats the process until satisfied\n- Provides a correct answer\n\nParameters explained:\n- thought: Your current thinking step, which can include:\n* Regular analytical steps\n* Revisions of previous thoughts\n* Questions about previous decisions\n* Realizations about needing more analysis\n* Changes in approach\n* Hypothesis generation\n* Hypothesis verification\n- next_thought_needed: True if you need more thinking, even if at what seemed like the end\n- thought_number: Current number in sequence (can go beyond initial total if needed)\n- total_thoughts: Current estimate of thoughts needed (can be adjusted up/down)\n- is_revision: A boolean indicating if this thought revises previous thinking\n- revises_thought: If is_revision is true, which thought number is being reconsidered\n- branch_from_thought: If branching, which thought number is the branching point\n- branch_id: Identifier for the current branch (if any)\n- needs_more_thoughts: If reaching end but realizing more thoughts needed\n\nYou should:\n1. Start with an initial estimate of needed thoughts, but be ready to adjust\n2. Feel free to question or revise previous thoughts\n3. Don't hesitate to add more thoughts if needed, even at the \"end\"\n4. Express uncertainty when present\n5. Mark thoughts that revise previous thinking or branch into new paths\n6. Ignore information that is irrelevant to the current step\n7. Generate a solution hypothesis when appropriate\n8. Verify the hypothesis based on the Chain of Thought steps\n9. Repeat the process until satisfied with the solution\n10. Provide a single, ideally correct answer as the final output\n11. Only set next_thought_needed to false when truly done and a satisfactory answer is reached",
|
|
276
|
+
"inputSchema": {
|
|
277
|
+
"type": "object",
|
|
278
|
+
"properties": {
|
|
279
|
+
"thought": {
|
|
280
|
+
"type": "string",
|
|
281
|
+
"description": "Your current thinking step"
|
|
282
|
+
},
|
|
283
|
+
"nextThoughtNeeded": {
|
|
284
|
+
"type": "boolean",
|
|
285
|
+
"description": "Whether another thought step is needed"
|
|
286
|
+
},
|
|
287
|
+
"thoughtNumber": {
|
|
288
|
+
"type": "integer",
|
|
289
|
+
"description": "Current thought number",
|
|
290
|
+
"minimum": 1
|
|
291
|
+
},
|
|
292
|
+
"totalThoughts": {
|
|
293
|
+
"type": "integer",
|
|
294
|
+
"description": "Estimated total thoughts needed",
|
|
295
|
+
"minimum": 1
|
|
296
|
+
},
|
|
297
|
+
"isRevision": {
|
|
298
|
+
"type": "boolean",
|
|
299
|
+
"description": "Whether this revises previous thinking"
|
|
300
|
+
},
|
|
301
|
+
"revisesThought": {
|
|
302
|
+
"type": "integer",
|
|
303
|
+
"description": "Which thought is being reconsidered",
|
|
304
|
+
"minimum": 1
|
|
305
|
+
},
|
|
306
|
+
"branchFromThought": {
|
|
307
|
+
"type": "integer",
|
|
308
|
+
"description": "Branching point thought number",
|
|
309
|
+
"minimum": 1
|
|
310
|
+
},
|
|
311
|
+
"branchId": {
|
|
312
|
+
"type": "string",
|
|
313
|
+
"description": "Branch identifier"
|
|
314
|
+
},
|
|
315
|
+
"needsMoreThoughts": {
|
|
316
|
+
"type": "boolean",
|
|
317
|
+
"description": "If more thoughts are needed"
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
"required": [
|
|
321
|
+
"thought",
|
|
322
|
+
"nextThoughtNeeded",
|
|
323
|
+
"thoughtNumber",
|
|
324
|
+
"totalThoughts"
|
|
325
|
+
]
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"serverName": "context7",
|
|
330
|
+
"name": "resolve-library-id",
|
|
331
|
+
"description": "Resolves a package/product name to a Context7-compatible library ID and returns a list of matching libraries.\n\nYou MUST call this function before 'get-library-docs' to obtain a valid Context7-compatible library ID UNLESS the user explicitly provides a library ID in the format '/org/project' or '/org/project/version' in their query.\n\nSelection Process:\n1. Analyze the query to understand what library/package the user is looking for\n2. Return the most relevant match based on:\n- Name similarity to the query (exact matches prioritized)\n- Description relevance to the query's intent\n- Documentation coverage (prioritize libraries with higher Code Snippet counts)\n- Trust score (consider libraries with scores of 7-10 more authoritative)\n\nResponse Format:\n- Return the selected library ID in a clearly marked section\n- Provide a brief explanation for why this library was chosen\n- If multiple good matches exist, acknowledge this but proceed with the most relevant one\n- If no good matches exist, clearly state this and suggest query refinements\n\nFor ambiguous queries, request clarification before proceeding with a best-guess match.",
|
|
332
|
+
"inputSchema": {
|
|
333
|
+
"type": "object",
|
|
334
|
+
"properties": {
|
|
335
|
+
"libraryName": {
|
|
336
|
+
"type": "string",
|
|
337
|
+
"description": "Library name to search for and retrieve a Context7-compatible library ID."
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
"required": [
|
|
341
|
+
"libraryName"
|
|
342
|
+
],
|
|
343
|
+
"additionalProperties": false,
|
|
344
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"serverName": "context7",
|
|
349
|
+
"name": "get-library-docs",
|
|
350
|
+
"description": "Fetches up-to-date documentation for a library. You must call 'resolve-library-id' first to obtain the exact Context7-compatible library ID required to use this tool, UNLESS the user explicitly provides a library ID in the format '/org/project' or '/org/project/version' in their query.",
|
|
351
|
+
"inputSchema": {
|
|
352
|
+
"type": "object",
|
|
353
|
+
"properties": {
|
|
354
|
+
"context7CompatibleLibraryID": {
|
|
355
|
+
"type": "string",
|
|
356
|
+
"description": "Exact Context7-compatible library ID (e.g., '/mongodb/docs', '/vercel/next.js', '/supabase/supabase', '/vercel/next.js/v14.3.0-canary.87') retrieved from 'resolve-library-id' or directly from user query in the format '/org/project' or '/org/project/version'."
|
|
357
|
+
},
|
|
358
|
+
"topic": {
|
|
359
|
+
"type": "string",
|
|
360
|
+
"description": "Topic to focus documentation on (e.g., 'hooks', 'routing')."
|
|
361
|
+
},
|
|
362
|
+
"tokens": {
|
|
363
|
+
"type": "number",
|
|
364
|
+
"description": "Maximum number of tokens of documentation to retrieve (default: 5000). Higher values provide more context but consume more tokens."
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
"required": [
|
|
368
|
+
"context7CompatibleLibraryID"
|
|
369
|
+
],
|
|
370
|
+
"additionalProperties": false,
|
|
371
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"serverName": "human-mcp",
|
|
376
|
+
"name": "eyes_analyze",
|
|
377
|
+
"description": "Understand images, videos, and GIFs with AI vision",
|
|
378
|
+
"inputSchema": {
|
|
379
|
+
"type": "object",
|
|
380
|
+
"properties": {
|
|
381
|
+
"source": {
|
|
382
|
+
"type": "string",
|
|
383
|
+
"description": "File path, URL, or image to analyze"
|
|
384
|
+
},
|
|
385
|
+
"focus": {
|
|
386
|
+
"type": "string",
|
|
387
|
+
"description": "What to focus on in the analysis"
|
|
388
|
+
},
|
|
389
|
+
"detail": {
|
|
390
|
+
"type": "string",
|
|
391
|
+
"enum": [
|
|
392
|
+
"quick",
|
|
393
|
+
"detailed"
|
|
394
|
+
],
|
|
395
|
+
"default": "detailed",
|
|
396
|
+
"description": "Analysis depth"
|
|
397
|
+
}
|
|
398
|
+
},
|
|
399
|
+
"required": [
|
|
400
|
+
"source"
|
|
401
|
+
],
|
|
402
|
+
"additionalProperties": false,
|
|
403
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"serverName": "human-mcp",
|
|
408
|
+
"name": "eyes_compare",
|
|
409
|
+
"description": "Find differences between images",
|
|
410
|
+
"inputSchema": {
|
|
411
|
+
"type": "object",
|
|
412
|
+
"properties": {
|
|
413
|
+
"image1": {
|
|
414
|
+
"type": "string",
|
|
415
|
+
"description": "First image path or URL"
|
|
416
|
+
},
|
|
417
|
+
"image2": {
|
|
418
|
+
"type": "string",
|
|
419
|
+
"description": "Second image path or URL"
|
|
420
|
+
},
|
|
421
|
+
"focus": {
|
|
422
|
+
"type": "string",
|
|
423
|
+
"enum": [
|
|
424
|
+
"differences",
|
|
425
|
+
"similarities",
|
|
426
|
+
"layout",
|
|
427
|
+
"content"
|
|
428
|
+
],
|
|
429
|
+
"default": "differences",
|
|
430
|
+
"description": "What to compare"
|
|
431
|
+
}
|
|
432
|
+
},
|
|
433
|
+
"required": [
|
|
434
|
+
"image1",
|
|
435
|
+
"image2"
|
|
436
|
+
],
|
|
437
|
+
"additionalProperties": false,
|
|
438
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
439
|
+
}
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"serverName": "human-mcp",
|
|
443
|
+
"name": "eyes_read_document",
|
|
444
|
+
"description": "Extract text and data from documents",
|
|
445
|
+
"inputSchema": {
|
|
446
|
+
"type": "object",
|
|
447
|
+
"properties": {
|
|
448
|
+
"document": {
|
|
449
|
+
"type": "string",
|
|
450
|
+
"description": "Document path or URL"
|
|
451
|
+
},
|
|
452
|
+
"pages": {
|
|
453
|
+
"type": "string",
|
|
454
|
+
"default": "all",
|
|
455
|
+
"description": "Page range (e.g., '1-5' or 'all')"
|
|
456
|
+
},
|
|
457
|
+
"extract": {
|
|
458
|
+
"type": "string",
|
|
459
|
+
"enum": [
|
|
460
|
+
"text",
|
|
461
|
+
"tables",
|
|
462
|
+
"both"
|
|
463
|
+
],
|
|
464
|
+
"default": "both",
|
|
465
|
+
"description": "What to extract"
|
|
466
|
+
}
|
|
467
|
+
},
|
|
468
|
+
"required": [
|
|
469
|
+
"document"
|
|
470
|
+
],
|
|
471
|
+
"additionalProperties": false,
|
|
472
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"serverName": "human-mcp",
|
|
477
|
+
"name": "eyes_summarize_document",
|
|
478
|
+
"description": "Create summaries from documents",
|
|
479
|
+
"inputSchema": {
|
|
480
|
+
"type": "object",
|
|
481
|
+
"properties": {
|
|
482
|
+
"document": {
|
|
483
|
+
"type": "string",
|
|
484
|
+
"description": "Document path or URL"
|
|
485
|
+
},
|
|
486
|
+
"length": {
|
|
487
|
+
"type": "string",
|
|
488
|
+
"enum": [
|
|
489
|
+
"brief",
|
|
490
|
+
"medium",
|
|
491
|
+
"detailed"
|
|
492
|
+
],
|
|
493
|
+
"default": "medium",
|
|
494
|
+
"description": "Summary length"
|
|
495
|
+
},
|
|
496
|
+
"focus": {
|
|
497
|
+
"type": "string",
|
|
498
|
+
"description": "Specific topics to focus on"
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
"required": [
|
|
502
|
+
"document"
|
|
503
|
+
],
|
|
504
|
+
"additionalProperties": false,
|
|
505
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
506
|
+
}
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"serverName": "human-mcp",
|
|
510
|
+
"name": "gemini_gen_image",
|
|
511
|
+
"description": "Generate images from text descriptions using Gemini Imagen API",
|
|
512
|
+
"inputSchema": {
|
|
513
|
+
"type": "object",
|
|
514
|
+
"properties": {
|
|
515
|
+
"prompt": {
|
|
516
|
+
"type": "string",
|
|
517
|
+
"description": "Text description of the image to generate"
|
|
518
|
+
},
|
|
519
|
+
"model": {
|
|
520
|
+
"type": "string",
|
|
521
|
+
"enum": [
|
|
522
|
+
"gemini-2.5-flash-image-preview"
|
|
523
|
+
],
|
|
524
|
+
"default": "gemini-2.5-flash-image-preview",
|
|
525
|
+
"description": "Image generation model"
|
|
526
|
+
},
|
|
527
|
+
"output_format": {
|
|
528
|
+
"type": "string",
|
|
529
|
+
"enum": [
|
|
530
|
+
"base64",
|
|
531
|
+
"url"
|
|
532
|
+
],
|
|
533
|
+
"default": "base64",
|
|
534
|
+
"description": "Output format for the generated image"
|
|
535
|
+
},
|
|
536
|
+
"negative_prompt": {
|
|
537
|
+
"type": "string",
|
|
538
|
+
"description": "Text describing what should NOT be in the image"
|
|
539
|
+
},
|
|
540
|
+
"style": {
|
|
541
|
+
"type": "string",
|
|
542
|
+
"enum": [
|
|
543
|
+
"photorealistic",
|
|
544
|
+
"artistic",
|
|
545
|
+
"cartoon",
|
|
546
|
+
"sketch",
|
|
547
|
+
"digital_art"
|
|
548
|
+
],
|
|
549
|
+
"description": "Style of the generated image"
|
|
550
|
+
},
|
|
551
|
+
"aspect_ratio": {
|
|
552
|
+
"type": "string",
|
|
553
|
+
"enum": [
|
|
554
|
+
"1:1",
|
|
555
|
+
"16:9",
|
|
556
|
+
"9:16",
|
|
557
|
+
"4:3",
|
|
558
|
+
"3:4"
|
|
559
|
+
],
|
|
560
|
+
"default": "1:1",
|
|
561
|
+
"description": "Aspect ratio of the generated image"
|
|
562
|
+
},
|
|
563
|
+
"seed": {
|
|
564
|
+
"type": "number",
|
|
565
|
+
"description": "Random seed for reproducible generation"
|
|
566
|
+
}
|
|
567
|
+
},
|
|
568
|
+
"required": [
|
|
569
|
+
"prompt"
|
|
570
|
+
],
|
|
571
|
+
"additionalProperties": false,
|
|
572
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
573
|
+
}
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"serverName": "human-mcp",
|
|
577
|
+
"name": "gemini_gen_video",
|
|
578
|
+
"description": "Generate videos from text descriptions using Gemini Veo 3.0 API",
|
|
579
|
+
"inputSchema": {
|
|
580
|
+
"type": "object",
|
|
581
|
+
"properties": {
|
|
582
|
+
"prompt": {
|
|
583
|
+
"type": "string",
|
|
584
|
+
"description": "Text description of the video to generate"
|
|
585
|
+
},
|
|
586
|
+
"model": {
|
|
587
|
+
"type": "string",
|
|
588
|
+
"enum": [
|
|
589
|
+
"veo-3.0-generate-001"
|
|
590
|
+
],
|
|
591
|
+
"default": "veo-3.0-generate-001",
|
|
592
|
+
"description": "Video generation model"
|
|
593
|
+
},
|
|
594
|
+
"duration": {
|
|
595
|
+
"type": "string",
|
|
596
|
+
"enum": [
|
|
597
|
+
"4s",
|
|
598
|
+
"8s",
|
|
599
|
+
"12s"
|
|
600
|
+
],
|
|
601
|
+
"default": "4s",
|
|
602
|
+
"description": "Duration of the generated video"
|
|
603
|
+
},
|
|
604
|
+
"output_format": {
|
|
605
|
+
"type": "string",
|
|
606
|
+
"enum": [
|
|
607
|
+
"mp4",
|
|
608
|
+
"webm"
|
|
609
|
+
],
|
|
610
|
+
"default": "mp4",
|
|
611
|
+
"description": "Output format for the generated video"
|
|
612
|
+
},
|
|
613
|
+
"aspect_ratio": {
|
|
614
|
+
"type": "string",
|
|
615
|
+
"enum": [
|
|
616
|
+
"1:1",
|
|
617
|
+
"16:9",
|
|
618
|
+
"9:16",
|
|
619
|
+
"4:3",
|
|
620
|
+
"3:4"
|
|
621
|
+
],
|
|
622
|
+
"default": "16:9",
|
|
623
|
+
"description": "Aspect ratio of the generated video"
|
|
624
|
+
},
|
|
625
|
+
"fps": {
|
|
626
|
+
"type": "integer",
|
|
627
|
+
"minimum": 1,
|
|
628
|
+
"maximum": 60,
|
|
629
|
+
"default": 24,
|
|
630
|
+
"description": "Frames per second"
|
|
631
|
+
},
|
|
632
|
+
"image_input": {
|
|
633
|
+
"type": "string",
|
|
634
|
+
"description": "Base64 encoded image or image URL to use as starting frame"
|
|
635
|
+
},
|
|
636
|
+
"style": {
|
|
637
|
+
"type": "string",
|
|
638
|
+
"enum": [
|
|
639
|
+
"realistic",
|
|
640
|
+
"cinematic",
|
|
641
|
+
"artistic",
|
|
642
|
+
"cartoon",
|
|
643
|
+
"animation"
|
|
644
|
+
],
|
|
645
|
+
"description": "Style of the generated video"
|
|
646
|
+
},
|
|
647
|
+
"camera_movement": {
|
|
648
|
+
"type": "string",
|
|
649
|
+
"enum": [
|
|
650
|
+
"static",
|
|
651
|
+
"pan_left",
|
|
652
|
+
"pan_right",
|
|
653
|
+
"zoom_in",
|
|
654
|
+
"zoom_out",
|
|
655
|
+
"dolly_forward",
|
|
656
|
+
"dolly_backward"
|
|
657
|
+
],
|
|
658
|
+
"description": "Camera movement type"
|
|
659
|
+
},
|
|
660
|
+
"seed": {
|
|
661
|
+
"type": "number",
|
|
662
|
+
"description": "Random seed for reproducible generation"
|
|
663
|
+
}
|
|
664
|
+
},
|
|
665
|
+
"required": [
|
|
666
|
+
"prompt"
|
|
667
|
+
],
|
|
668
|
+
"additionalProperties": false,
|
|
669
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
670
|
+
}
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
"serverName": "human-mcp",
|
|
674
|
+
"name": "gemini_image_to_video",
|
|
675
|
+
"description": "Generate videos from images and text descriptions using Gemini Imagen + Veo 3.0 APIs",
|
|
676
|
+
"inputSchema": {
|
|
677
|
+
"type": "object",
|
|
678
|
+
"properties": {
|
|
679
|
+
"prompt": {
|
|
680
|
+
"type": "string",
|
|
681
|
+
"description": "Text description of the video animation"
|
|
682
|
+
},
|
|
683
|
+
"image_input": {
|
|
684
|
+
"type": "string",
|
|
685
|
+
"description": "Base64 encoded image or image URL to use as starting frame"
|
|
686
|
+
},
|
|
687
|
+
"model": {
|
|
688
|
+
"type": "string",
|
|
689
|
+
"enum": [
|
|
690
|
+
"veo-3.0-generate-001"
|
|
691
|
+
],
|
|
692
|
+
"default": "veo-3.0-generate-001",
|
|
693
|
+
"description": "Video generation model"
|
|
694
|
+
},
|
|
695
|
+
"duration": {
|
|
696
|
+
"type": "string",
|
|
697
|
+
"enum": [
|
|
698
|
+
"4s",
|
|
699
|
+
"8s",
|
|
700
|
+
"12s"
|
|
701
|
+
],
|
|
702
|
+
"default": "4s",
|
|
703
|
+
"description": "Duration of the generated video"
|
|
704
|
+
},
|
|
705
|
+
"output_format": {
|
|
706
|
+
"type": "string",
|
|
707
|
+
"enum": [
|
|
708
|
+
"mp4",
|
|
709
|
+
"webm"
|
|
710
|
+
],
|
|
711
|
+
"default": "mp4",
|
|
712
|
+
"description": "Output format for the generated video"
|
|
713
|
+
},
|
|
714
|
+
"aspect_ratio": {
|
|
715
|
+
"type": "string",
|
|
716
|
+
"enum": [
|
|
717
|
+
"1:1",
|
|
718
|
+
"16:9",
|
|
719
|
+
"9:16",
|
|
720
|
+
"4:3",
|
|
721
|
+
"3:4"
|
|
722
|
+
],
|
|
723
|
+
"default": "16:9",
|
|
724
|
+
"description": "Aspect ratio of the generated video"
|
|
725
|
+
},
|
|
726
|
+
"fps": {
|
|
727
|
+
"type": "integer",
|
|
728
|
+
"minimum": 1,
|
|
729
|
+
"maximum": 60,
|
|
730
|
+
"default": 24,
|
|
731
|
+
"description": "Frames per second"
|
|
732
|
+
},
|
|
733
|
+
"style": {
|
|
734
|
+
"type": "string",
|
|
735
|
+
"enum": [
|
|
736
|
+
"realistic",
|
|
737
|
+
"cinematic",
|
|
738
|
+
"artistic",
|
|
739
|
+
"cartoon",
|
|
740
|
+
"animation"
|
|
741
|
+
],
|
|
742
|
+
"description": "Style of the generated video"
|
|
743
|
+
},
|
|
744
|
+
"camera_movement": {
|
|
745
|
+
"type": "string",
|
|
746
|
+
"enum": [
|
|
747
|
+
"static",
|
|
748
|
+
"pan_left",
|
|
749
|
+
"pan_right",
|
|
750
|
+
"zoom_in",
|
|
751
|
+
"zoom_out",
|
|
752
|
+
"dolly_forward",
|
|
753
|
+
"dolly_backward"
|
|
754
|
+
],
|
|
755
|
+
"description": "Camera movement type"
|
|
756
|
+
},
|
|
757
|
+
"seed": {
|
|
758
|
+
"type": "number",
|
|
759
|
+
"description": "Random seed for reproducible generation"
|
|
760
|
+
}
|
|
761
|
+
},
|
|
762
|
+
"required": [
|
|
763
|
+
"prompt",
|
|
764
|
+
"image_input"
|
|
765
|
+
],
|
|
766
|
+
"additionalProperties": false,
|
|
767
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
768
|
+
}
|
|
769
|
+
},
|
|
770
|
+
{
|
|
771
|
+
"serverName": "human-mcp",
|
|
772
|
+
"name": "gemini_edit_image",
|
|
773
|
+
"description": "Edit images using AI with text-based instructions for inpainting, outpainting, style transfer, object manipulation, and composition. No masks required - just describe what you want to change.",
|
|
774
|
+
"inputSchema": {
|
|
775
|
+
"type": "object",
|
|
776
|
+
"properties": {
|
|
777
|
+
"operation": {
|
|
778
|
+
"type": "string",
|
|
779
|
+
"enum": [
|
|
780
|
+
"inpaint",
|
|
781
|
+
"outpaint",
|
|
782
|
+
"style_transfer",
|
|
783
|
+
"object_manipulation",
|
|
784
|
+
"multi_image_compose"
|
|
785
|
+
],
|
|
786
|
+
"description": "Type of image editing operation to perform"
|
|
787
|
+
},
|
|
788
|
+
"input_image": {
|
|
789
|
+
"type": "string",
|
|
790
|
+
"description": "Base64 encoded image or file path to the input image"
|
|
791
|
+
},
|
|
792
|
+
"prompt": {
|
|
793
|
+
"type": "string",
|
|
794
|
+
"minLength": 1,
|
|
795
|
+
"description": "Text description of the desired edit"
|
|
796
|
+
},
|
|
797
|
+
"mask_image": {
|
|
798
|
+
"type": "string",
|
|
799
|
+
"description": "Base64 encoded mask image for inpainting (white = edit area, black = keep)"
|
|
800
|
+
},
|
|
801
|
+
"mask_prompt": {
|
|
802
|
+
"type": "string",
|
|
803
|
+
"description": "Text description of the area to mask for editing"
|
|
804
|
+
},
|
|
805
|
+
"expand_direction": {
|
|
806
|
+
"type": "string",
|
|
807
|
+
"enum": [
|
|
808
|
+
"all",
|
|
809
|
+
"left",
|
|
810
|
+
"right",
|
|
811
|
+
"top",
|
|
812
|
+
"bottom",
|
|
813
|
+
"horizontal",
|
|
814
|
+
"vertical"
|
|
815
|
+
],
|
|
816
|
+
"description": "Direction to expand the image"
|
|
817
|
+
},
|
|
818
|
+
"expansion_ratio": {
|
|
819
|
+
"type": "number",
|
|
820
|
+
"minimum": 0.1,
|
|
821
|
+
"maximum": 3,
|
|
822
|
+
"default": 1.5,
|
|
823
|
+
"description": "How much to expand the image (1.0 = no expansion)"
|
|
824
|
+
},
|
|
825
|
+
"style_image": {
|
|
826
|
+
"type": "string",
|
|
827
|
+
"description": "Base64 encoded reference image for style transfer"
|
|
828
|
+
},
|
|
829
|
+
"style_strength": {
|
|
830
|
+
"type": "number",
|
|
831
|
+
"minimum": 0.1,
|
|
832
|
+
"maximum": 1,
|
|
833
|
+
"default": 0.7,
|
|
834
|
+
"description": "Strength of style application"
|
|
835
|
+
},
|
|
836
|
+
"target_object": {
|
|
837
|
+
"type": "string",
|
|
838
|
+
"description": "Description of the object to manipulate"
|
|
839
|
+
},
|
|
840
|
+
"manipulation_type": {
|
|
841
|
+
"type": "string",
|
|
842
|
+
"enum": [
|
|
843
|
+
"move",
|
|
844
|
+
"resize",
|
|
845
|
+
"remove",
|
|
846
|
+
"replace",
|
|
847
|
+
"duplicate"
|
|
848
|
+
],
|
|
849
|
+
"description": "Type of object manipulation"
|
|
850
|
+
},
|
|
851
|
+
"target_position": {
|
|
852
|
+
"type": "string",
|
|
853
|
+
"description": "New position for the object (e.g., 'center', 'top-left')"
|
|
854
|
+
},
|
|
855
|
+
"secondary_images": {
|
|
856
|
+
"type": "array",
|
|
857
|
+
"items": {
|
|
858
|
+
"type": "string"
|
|
859
|
+
},
|
|
860
|
+
"description": "Array of base64 encoded images for composition"
|
|
861
|
+
},
|
|
862
|
+
"composition_layout": {
|
|
863
|
+
"type": "string",
|
|
864
|
+
"enum": [
|
|
865
|
+
"blend",
|
|
866
|
+
"collage",
|
|
867
|
+
"overlay",
|
|
868
|
+
"side_by_side"
|
|
869
|
+
],
|
|
870
|
+
"description": "How to combine multiple images"
|
|
871
|
+
},
|
|
872
|
+
"blend_mode": {
|
|
873
|
+
"type": "string",
|
|
874
|
+
"enum": [
|
|
875
|
+
"normal",
|
|
876
|
+
"multiply",
|
|
877
|
+
"screen",
|
|
878
|
+
"overlay",
|
|
879
|
+
"soft_light"
|
|
880
|
+
],
|
|
881
|
+
"description": "Blending mode for image composition"
|
|
882
|
+
},
|
|
883
|
+
"negative_prompt": {
|
|
884
|
+
"type": "string",
|
|
885
|
+
"description": "What to avoid in the edited image"
|
|
886
|
+
},
|
|
887
|
+
"strength": {
|
|
888
|
+
"type": "number",
|
|
889
|
+
"minimum": 0.1,
|
|
890
|
+
"maximum": 1,
|
|
891
|
+
"default": 0.8,
|
|
892
|
+
"description": "Strength of the editing effect"
|
|
893
|
+
},
|
|
894
|
+
"guidance_scale": {
|
|
895
|
+
"type": "number",
|
|
896
|
+
"minimum": 1,
|
|
897
|
+
"maximum": 20,
|
|
898
|
+
"default": 7.5,
|
|
899
|
+
"description": "How closely to follow the prompt"
|
|
900
|
+
},
|
|
901
|
+
"seed": {
|
|
902
|
+
"type": "integer",
|
|
903
|
+
"minimum": 0,
|
|
904
|
+
"description": "Random seed for reproducible results"
|
|
905
|
+
},
|
|
906
|
+
"output_format": {
|
|
907
|
+
"type": "string",
|
|
908
|
+
"enum": [
|
|
909
|
+
"base64",
|
|
910
|
+
"url"
|
|
911
|
+
],
|
|
912
|
+
"default": "base64",
|
|
913
|
+
"description": "Output format for the edited image"
|
|
914
|
+
},
|
|
915
|
+
"quality": {
|
|
916
|
+
"type": "string",
|
|
917
|
+
"enum": [
|
|
918
|
+
"draft",
|
|
919
|
+
"standard",
|
|
920
|
+
"high"
|
|
921
|
+
],
|
|
922
|
+
"default": "standard",
|
|
923
|
+
"description": "Quality level of the editing"
|
|
924
|
+
}
|
|
925
|
+
},
|
|
926
|
+
"required": [
|
|
927
|
+
"operation",
|
|
928
|
+
"input_image",
|
|
929
|
+
"prompt"
|
|
930
|
+
],
|
|
931
|
+
"additionalProperties": false,
|
|
932
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
933
|
+
}
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"serverName": "human-mcp",
|
|
937
|
+
"name": "gemini_inpaint_image",
|
|
938
|
+
"description": "Add or modify specific areas of an image using natural language descriptions. No mask required - just describe what to change and where.",
|
|
939
|
+
"inputSchema": {
|
|
940
|
+
"type": "object",
|
|
941
|
+
"properties": {
|
|
942
|
+
"input_image": {
|
|
943
|
+
"type": "string",
|
|
944
|
+
"description": "Base64 encoded image or file path to the input image"
|
|
945
|
+
},
|
|
946
|
+
"prompt": {
|
|
947
|
+
"type": "string",
|
|
948
|
+
"minLength": 1,
|
|
949
|
+
"description": "Text description of what to add or change in the image"
|
|
950
|
+
},
|
|
951
|
+
"mask_image": {
|
|
952
|
+
"type": "string",
|
|
953
|
+
"description": "(Optional) Base64 encoded mask image - not used by Gemini but kept for compatibility"
|
|
954
|
+
},
|
|
955
|
+
"mask_prompt": {
|
|
956
|
+
"type": "string",
|
|
957
|
+
"description": "Text description of WHERE in the image to make changes (e.g., 'the empty space beside the cat', 'the top-left corner')"
|
|
958
|
+
},
|
|
959
|
+
"negative_prompt": {
|
|
960
|
+
"type": "string",
|
|
961
|
+
"description": "What to avoid in the edited area"
|
|
962
|
+
},
|
|
963
|
+
"strength": {
|
|
964
|
+
"type": "number",
|
|
965
|
+
"minimum": 0.1,
|
|
966
|
+
"maximum": 1,
|
|
967
|
+
"default": 0.8,
|
|
968
|
+
"description": "Strength of the editing effect"
|
|
969
|
+
},
|
|
970
|
+
"guidance_scale": {
|
|
971
|
+
"type": "number",
|
|
972
|
+
"minimum": 1,
|
|
973
|
+
"maximum": 20,
|
|
974
|
+
"default": 7.5,
|
|
975
|
+
"description": "How closely to follow the prompt"
|
|
976
|
+
},
|
|
977
|
+
"seed": {
|
|
978
|
+
"type": "integer",
|
|
979
|
+
"minimum": 0,
|
|
980
|
+
"description": "Random seed for reproducible results"
|
|
981
|
+
},
|
|
982
|
+
"output_format": {
|
|
983
|
+
"type": "string",
|
|
984
|
+
"enum": [
|
|
985
|
+
"base64",
|
|
986
|
+
"url"
|
|
987
|
+
],
|
|
988
|
+
"default": "base64",
|
|
989
|
+
"description": "Output format"
|
|
990
|
+
},
|
|
991
|
+
"quality": {
|
|
992
|
+
"type": "string",
|
|
993
|
+
"enum": [
|
|
994
|
+
"draft",
|
|
995
|
+
"standard",
|
|
996
|
+
"high"
|
|
997
|
+
],
|
|
998
|
+
"default": "standard",
|
|
999
|
+
"description": "Quality level"
|
|
1000
|
+
}
|
|
1001
|
+
},
|
|
1002
|
+
"required": [
|
|
1003
|
+
"input_image",
|
|
1004
|
+
"prompt"
|
|
1005
|
+
],
|
|
1006
|
+
"additionalProperties": false,
|
|
1007
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1008
|
+
}
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"serverName": "human-mcp",
|
|
1012
|
+
"name": "gemini_outpaint_image",
|
|
1013
|
+
"description": "Expand an image beyond its original borders in specified directions",
|
|
1014
|
+
"inputSchema": {
|
|
1015
|
+
"type": "object",
|
|
1016
|
+
"properties": {
|
|
1017
|
+
"input_image": {
|
|
1018
|
+
"type": "string",
|
|
1019
|
+
"description": "Base64 encoded image or file path to the input image"
|
|
1020
|
+
},
|
|
1021
|
+
"prompt": {
|
|
1022
|
+
"type": "string",
|
|
1023
|
+
"minLength": 1,
|
|
1024
|
+
"description": "Text description of what to add in the expanded areas"
|
|
1025
|
+
},
|
|
1026
|
+
"expand_direction": {
|
|
1027
|
+
"type": "string",
|
|
1028
|
+
"enum": [
|
|
1029
|
+
"all",
|
|
1030
|
+
"left",
|
|
1031
|
+
"right",
|
|
1032
|
+
"top",
|
|
1033
|
+
"bottom",
|
|
1034
|
+
"horizontal",
|
|
1035
|
+
"vertical"
|
|
1036
|
+
],
|
|
1037
|
+
"default": "all",
|
|
1038
|
+
"description": "Direction to expand the image"
|
|
1039
|
+
},
|
|
1040
|
+
"expansion_ratio": {
|
|
1041
|
+
"type": "number",
|
|
1042
|
+
"minimum": 0.1,
|
|
1043
|
+
"maximum": 3,
|
|
1044
|
+
"default": 1.5,
|
|
1045
|
+
"description": "How much to expand the image (1.0 = no expansion)"
|
|
1046
|
+
},
|
|
1047
|
+
"negative_prompt": {
|
|
1048
|
+
"type": "string",
|
|
1049
|
+
"description": "What to avoid in the expanded areas"
|
|
1050
|
+
},
|
|
1051
|
+
"strength": {
|
|
1052
|
+
"type": "number",
|
|
1053
|
+
"minimum": 0.1,
|
|
1054
|
+
"maximum": 1,
|
|
1055
|
+
"default": 0.8,
|
|
1056
|
+
"description": "Strength of the editing effect"
|
|
1057
|
+
},
|
|
1058
|
+
"guidance_scale": {
|
|
1059
|
+
"type": "number",
|
|
1060
|
+
"minimum": 1,
|
|
1061
|
+
"maximum": 20,
|
|
1062
|
+
"default": 7.5,
|
|
1063
|
+
"description": "How closely to follow the prompt"
|
|
1064
|
+
},
|
|
1065
|
+
"seed": {
|
|
1066
|
+
"type": "integer",
|
|
1067
|
+
"minimum": 0,
|
|
1068
|
+
"description": "Random seed for reproducible results"
|
|
1069
|
+
},
|
|
1070
|
+
"output_format": {
|
|
1071
|
+
"type": "string",
|
|
1072
|
+
"enum": [
|
|
1073
|
+
"base64",
|
|
1074
|
+
"url"
|
|
1075
|
+
],
|
|
1076
|
+
"default": "base64",
|
|
1077
|
+
"description": "Output format"
|
|
1078
|
+
},
|
|
1079
|
+
"quality": {
|
|
1080
|
+
"type": "string",
|
|
1081
|
+
"enum": [
|
|
1082
|
+
"draft",
|
|
1083
|
+
"standard",
|
|
1084
|
+
"high"
|
|
1085
|
+
],
|
|
1086
|
+
"default": "standard",
|
|
1087
|
+
"description": "Quality level"
|
|
1088
|
+
}
|
|
1089
|
+
},
|
|
1090
|
+
"required": [
|
|
1091
|
+
"input_image",
|
|
1092
|
+
"prompt"
|
|
1093
|
+
],
|
|
1094
|
+
"additionalProperties": false,
|
|
1095
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1096
|
+
}
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
"serverName": "human-mcp",
|
|
1100
|
+
"name": "gemini_style_transfer_image",
|
|
1101
|
+
"description": "Transfer the style from one image to another using AI",
|
|
1102
|
+
"inputSchema": {
|
|
1103
|
+
"type": "object",
|
|
1104
|
+
"properties": {
|
|
1105
|
+
"input_image": {
|
|
1106
|
+
"type": "string",
|
|
1107
|
+
"description": "Base64 encoded image or file path to the input image"
|
|
1108
|
+
},
|
|
1109
|
+
"prompt": {
|
|
1110
|
+
"type": "string",
|
|
1111
|
+
"minLength": 1,
|
|
1112
|
+
"description": "Text description of the desired style"
|
|
1113
|
+
},
|
|
1114
|
+
"style_image": {
|
|
1115
|
+
"type": "string",
|
|
1116
|
+
"description": "Base64 encoded reference image for style transfer"
|
|
1117
|
+
},
|
|
1118
|
+
"style_strength": {
|
|
1119
|
+
"type": "number",
|
|
1120
|
+
"minimum": 0.1,
|
|
1121
|
+
"maximum": 1,
|
|
1122
|
+
"default": 0.7,
|
|
1123
|
+
"description": "Strength of style application"
|
|
1124
|
+
},
|
|
1125
|
+
"negative_prompt": {
|
|
1126
|
+
"type": "string",
|
|
1127
|
+
"description": "What style elements to avoid"
|
|
1128
|
+
},
|
|
1129
|
+
"guidance_scale": {
|
|
1130
|
+
"type": "number",
|
|
1131
|
+
"minimum": 1,
|
|
1132
|
+
"maximum": 20,
|
|
1133
|
+
"default": 7.5,
|
|
1134
|
+
"description": "How closely to follow the prompt"
|
|
1135
|
+
},
|
|
1136
|
+
"seed": {
|
|
1137
|
+
"type": "integer",
|
|
1138
|
+
"minimum": 0,
|
|
1139
|
+
"description": "Random seed for reproducible results"
|
|
1140
|
+
},
|
|
1141
|
+
"output_format": {
|
|
1142
|
+
"type": "string",
|
|
1143
|
+
"enum": [
|
|
1144
|
+
"base64",
|
|
1145
|
+
"url"
|
|
1146
|
+
],
|
|
1147
|
+
"default": "base64",
|
|
1148
|
+
"description": "Output format"
|
|
1149
|
+
},
|
|
1150
|
+
"quality": {
|
|
1151
|
+
"type": "string",
|
|
1152
|
+
"enum": [
|
|
1153
|
+
"draft",
|
|
1154
|
+
"standard",
|
|
1155
|
+
"high"
|
|
1156
|
+
],
|
|
1157
|
+
"default": "standard",
|
|
1158
|
+
"description": "Quality level"
|
|
1159
|
+
}
|
|
1160
|
+
},
|
|
1161
|
+
"required": [
|
|
1162
|
+
"input_image",
|
|
1163
|
+
"prompt"
|
|
1164
|
+
],
|
|
1165
|
+
"additionalProperties": false,
|
|
1166
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1167
|
+
}
|
|
1168
|
+
},
|
|
1169
|
+
{
|
|
1170
|
+
"serverName": "human-mcp",
|
|
1171
|
+
"name": "gemini_compose_images",
|
|
1172
|
+
"description": "Combine multiple images into a single composition using AI",
|
|
1173
|
+
"inputSchema": {
|
|
1174
|
+
"type": "object",
|
|
1175
|
+
"properties": {
|
|
1176
|
+
"input_image": {
|
|
1177
|
+
"type": "string",
|
|
1178
|
+
"description": "Base64 encoded primary image"
|
|
1179
|
+
},
|
|
1180
|
+
"secondary_images": {
|
|
1181
|
+
"type": "array",
|
|
1182
|
+
"items": {
|
|
1183
|
+
"type": "string"
|
|
1184
|
+
},
|
|
1185
|
+
"description": "Array of base64 encoded secondary images to compose"
|
|
1186
|
+
},
|
|
1187
|
+
"prompt": {
|
|
1188
|
+
"type": "string",
|
|
1189
|
+
"minLength": 1,
|
|
1190
|
+
"description": "Text description of how to compose the images"
|
|
1191
|
+
},
|
|
1192
|
+
"composition_layout": {
|
|
1193
|
+
"type": "string",
|
|
1194
|
+
"enum": [
|
|
1195
|
+
"blend",
|
|
1196
|
+
"collage",
|
|
1197
|
+
"overlay",
|
|
1198
|
+
"side_by_side"
|
|
1199
|
+
],
|
|
1200
|
+
"default": "blend",
|
|
1201
|
+
"description": "How to combine the images"
|
|
1202
|
+
},
|
|
1203
|
+
"blend_mode": {
|
|
1204
|
+
"type": "string",
|
|
1205
|
+
"enum": [
|
|
1206
|
+
"normal",
|
|
1207
|
+
"multiply",
|
|
1208
|
+
"screen",
|
|
1209
|
+
"overlay",
|
|
1210
|
+
"soft_light"
|
|
1211
|
+
],
|
|
1212
|
+
"default": "normal",
|
|
1213
|
+
"description": "Blending mode for image composition"
|
|
1214
|
+
},
|
|
1215
|
+
"negative_prompt": {
|
|
1216
|
+
"type": "string",
|
|
1217
|
+
"description": "What to avoid in the composition"
|
|
1218
|
+
},
|
|
1219
|
+
"strength": {
|
|
1220
|
+
"type": "number",
|
|
1221
|
+
"minimum": 0.1,
|
|
1222
|
+
"maximum": 1,
|
|
1223
|
+
"default": 0.8,
|
|
1224
|
+
"description": "Strength of the composition effect"
|
|
1225
|
+
},
|
|
1226
|
+
"guidance_scale": {
|
|
1227
|
+
"type": "number",
|
|
1228
|
+
"minimum": 1,
|
|
1229
|
+
"maximum": 20,
|
|
1230
|
+
"default": 7.5,
|
|
1231
|
+
"description": "How closely to follow the prompt"
|
|
1232
|
+
},
|
|
1233
|
+
"seed": {
|
|
1234
|
+
"type": "integer",
|
|
1235
|
+
"minimum": 0,
|
|
1236
|
+
"description": "Random seed for reproducible results"
|
|
1237
|
+
},
|
|
1238
|
+
"output_format": {
|
|
1239
|
+
"type": "string",
|
|
1240
|
+
"enum": [
|
|
1241
|
+
"base64",
|
|
1242
|
+
"url"
|
|
1243
|
+
],
|
|
1244
|
+
"default": "base64",
|
|
1245
|
+
"description": "Output format"
|
|
1246
|
+
},
|
|
1247
|
+
"quality": {
|
|
1248
|
+
"type": "string",
|
|
1249
|
+
"enum": [
|
|
1250
|
+
"draft",
|
|
1251
|
+
"standard",
|
|
1252
|
+
"high"
|
|
1253
|
+
],
|
|
1254
|
+
"default": "standard",
|
|
1255
|
+
"description": "Quality level"
|
|
1256
|
+
}
|
|
1257
|
+
},
|
|
1258
|
+
"required": [
|
|
1259
|
+
"input_image",
|
|
1260
|
+
"secondary_images",
|
|
1261
|
+
"prompt"
|
|
1262
|
+
],
|
|
1263
|
+
"additionalProperties": false,
|
|
1264
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1265
|
+
}
|
|
1266
|
+
},
|
|
1267
|
+
{
|
|
1268
|
+
"serverName": "human-mcp",
|
|
1269
|
+
"name": "jimp_crop_image",
|
|
1270
|
+
"description": "Crop an image using Jimp with various modes (manual, center, aspect ratio, etc.)",
|
|
1271
|
+
"inputSchema": {
|
|
1272
|
+
"type": "object",
|
|
1273
|
+
"properties": {
|
|
1274
|
+
"input_image": {
|
|
1275
|
+
"type": "string",
|
|
1276
|
+
"description": "Input image - supports file paths, URLs, or base64 data URIs"
|
|
1277
|
+
},
|
|
1278
|
+
"mode": {
|
|
1279
|
+
"type": "string",
|
|
1280
|
+
"enum": [
|
|
1281
|
+
"manual",
|
|
1282
|
+
"center",
|
|
1283
|
+
"top_left",
|
|
1284
|
+
"top_right",
|
|
1285
|
+
"bottom_left",
|
|
1286
|
+
"bottom_right",
|
|
1287
|
+
"aspect_ratio"
|
|
1288
|
+
],
|
|
1289
|
+
"default": "manual",
|
|
1290
|
+
"description": "Crop mode"
|
|
1291
|
+
},
|
|
1292
|
+
"x": {
|
|
1293
|
+
"type": "integer",
|
|
1294
|
+
"minimum": 0,
|
|
1295
|
+
"description": "X coordinate for crop start (manual mode)"
|
|
1296
|
+
},
|
|
1297
|
+
"y": {
|
|
1298
|
+
"type": "integer",
|
|
1299
|
+
"minimum": 0,
|
|
1300
|
+
"description": "Y coordinate for crop start (manual mode)"
|
|
1301
|
+
},
|
|
1302
|
+
"width": {
|
|
1303
|
+
"type": "integer",
|
|
1304
|
+
"minimum": 1,
|
|
1305
|
+
"description": "Width of crop region"
|
|
1306
|
+
},
|
|
1307
|
+
"height": {
|
|
1308
|
+
"type": "integer",
|
|
1309
|
+
"minimum": 1,
|
|
1310
|
+
"description": "Height of crop region"
|
|
1311
|
+
},
|
|
1312
|
+
"aspect_ratio": {
|
|
1313
|
+
"type": "string",
|
|
1314
|
+
"description": "Aspect ratio (e.g., '16:9', '4:3')"
|
|
1315
|
+
},
|
|
1316
|
+
"output_format": {
|
|
1317
|
+
"type": "string",
|
|
1318
|
+
"enum": [
|
|
1319
|
+
"png",
|
|
1320
|
+
"jpeg",
|
|
1321
|
+
"bmp"
|
|
1322
|
+
],
|
|
1323
|
+
"default": "png",
|
|
1324
|
+
"description": "Output image format"
|
|
1325
|
+
},
|
|
1326
|
+
"quality": {
|
|
1327
|
+
"type": "integer",
|
|
1328
|
+
"minimum": 0,
|
|
1329
|
+
"maximum": 100,
|
|
1330
|
+
"description": "JPEG quality (0-100)"
|
|
1331
|
+
}
|
|
1332
|
+
},
|
|
1333
|
+
"required": [
|
|
1334
|
+
"input_image"
|
|
1335
|
+
],
|
|
1336
|
+
"additionalProperties": false,
|
|
1337
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1338
|
+
}
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
"serverName": "human-mcp",
|
|
1342
|
+
"name": "jimp_resize_image",
|
|
1343
|
+
"description": "Resize an image using Jimp with various algorithms and options",
|
|
1344
|
+
"inputSchema": {
|
|
1345
|
+
"type": "object",
|
|
1346
|
+
"properties": {
|
|
1347
|
+
"input_image": {
|
|
1348
|
+
"type": "string",
|
|
1349
|
+
"description": "Input image - supports file paths, URLs, or base64 data URIs"
|
|
1350
|
+
},
|
|
1351
|
+
"width": {
|
|
1352
|
+
"type": "integer",
|
|
1353
|
+
"minimum": 1,
|
|
1354
|
+
"description": "Target width in pixels"
|
|
1355
|
+
},
|
|
1356
|
+
"height": {
|
|
1357
|
+
"type": "integer",
|
|
1358
|
+
"minimum": 1,
|
|
1359
|
+
"description": "Target height in pixels"
|
|
1360
|
+
},
|
|
1361
|
+
"scale": {
|
|
1362
|
+
"type": "number",
|
|
1363
|
+
"minimum": 0.01,
|
|
1364
|
+
"maximum": 10,
|
|
1365
|
+
"description": "Scale factor (e.g., 0.5 for 50%, 2.0 for 200%)"
|
|
1366
|
+
},
|
|
1367
|
+
"maintain_aspect_ratio": {
|
|
1368
|
+
"type": "boolean",
|
|
1369
|
+
"default": true,
|
|
1370
|
+
"description": "Maintain aspect ratio when resizing"
|
|
1371
|
+
},
|
|
1372
|
+
"algorithm": {
|
|
1373
|
+
"type": "string",
|
|
1374
|
+
"enum": [
|
|
1375
|
+
"nearestNeighbor",
|
|
1376
|
+
"bilinear",
|
|
1377
|
+
"bicubic",
|
|
1378
|
+
"hermite",
|
|
1379
|
+
"bezier"
|
|
1380
|
+
],
|
|
1381
|
+
"default": "bilinear",
|
|
1382
|
+
"description": "Resize algorithm"
|
|
1383
|
+
},
|
|
1384
|
+
"output_format": {
|
|
1385
|
+
"type": "string",
|
|
1386
|
+
"enum": [
|
|
1387
|
+
"png",
|
|
1388
|
+
"jpeg",
|
|
1389
|
+
"bmp"
|
|
1390
|
+
],
|
|
1391
|
+
"default": "png",
|
|
1392
|
+
"description": "Output image format"
|
|
1393
|
+
},
|
|
1394
|
+
"quality": {
|
|
1395
|
+
"type": "integer",
|
|
1396
|
+
"minimum": 0,
|
|
1397
|
+
"maximum": 100,
|
|
1398
|
+
"description": "JPEG quality (0-100)"
|
|
1399
|
+
}
|
|
1400
|
+
},
|
|
1401
|
+
"required": [
|
|
1402
|
+
"input_image"
|
|
1403
|
+
],
|
|
1404
|
+
"additionalProperties": false,
|
|
1405
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1406
|
+
}
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
"serverName": "human-mcp",
|
|
1410
|
+
"name": "jimp_rotate_image",
|
|
1411
|
+
"description": "Rotate an image using Jimp by any angle",
|
|
1412
|
+
"inputSchema": {
|
|
1413
|
+
"type": "object",
|
|
1414
|
+
"properties": {
|
|
1415
|
+
"input_image": {
|
|
1416
|
+
"type": "string",
|
|
1417
|
+
"description": "Input image - supports file paths, URLs, or base64 data URIs"
|
|
1418
|
+
},
|
|
1419
|
+
"angle": {
|
|
1420
|
+
"type": "number",
|
|
1421
|
+
"description": "Rotation angle in degrees (positive = clockwise, negative = counter-clockwise)"
|
|
1422
|
+
},
|
|
1423
|
+
"background_color": {
|
|
1424
|
+
"type": "string",
|
|
1425
|
+
"description": "Background color for areas outside the rotated image (CSS color format, e.g., '#ffffff', 'white')"
|
|
1426
|
+
},
|
|
1427
|
+
"output_format": {
|
|
1428
|
+
"type": "string",
|
|
1429
|
+
"enum": [
|
|
1430
|
+
"png",
|
|
1431
|
+
"jpeg",
|
|
1432
|
+
"bmp"
|
|
1433
|
+
],
|
|
1434
|
+
"default": "png",
|
|
1435
|
+
"description": "Output image format"
|
|
1436
|
+
},
|
|
1437
|
+
"quality": {
|
|
1438
|
+
"type": "integer",
|
|
1439
|
+
"minimum": 0,
|
|
1440
|
+
"maximum": 100,
|
|
1441
|
+
"description": "JPEG quality (0-100)"
|
|
1442
|
+
}
|
|
1443
|
+
},
|
|
1444
|
+
"required": [
|
|
1445
|
+
"input_image",
|
|
1446
|
+
"angle"
|
|
1447
|
+
],
|
|
1448
|
+
"additionalProperties": false,
|
|
1449
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1450
|
+
}
|
|
1451
|
+
},
|
|
1452
|
+
{
|
|
1453
|
+
"serverName": "human-mcp",
|
|
1454
|
+
"name": "jimp_mask_image",
|
|
1455
|
+
"description": "Apply a grayscale alpha mask to an image using Jimp (black pixels = transparent, white pixels = opaque)",
|
|
1456
|
+
"inputSchema": {
|
|
1457
|
+
"type": "object",
|
|
1458
|
+
"properties": {
|
|
1459
|
+
"input_image": {
|
|
1460
|
+
"type": "string",
|
|
1461
|
+
"description": "Input image to apply mask to - supports file paths, URLs, or base64 data URIs"
|
|
1462
|
+
},
|
|
1463
|
+
"mask_image": {
|
|
1464
|
+
"type": "string",
|
|
1465
|
+
"description": "Grayscale mask image (black = transparent, white = opaque) - supports file paths, URLs, or base64 data URIs"
|
|
1466
|
+
},
|
|
1467
|
+
"output_format": {
|
|
1468
|
+
"type": "string",
|
|
1469
|
+
"enum": [
|
|
1470
|
+
"png",
|
|
1471
|
+
"jpeg",
|
|
1472
|
+
"bmp"
|
|
1473
|
+
],
|
|
1474
|
+
"default": "png",
|
|
1475
|
+
"description": "Output image format"
|
|
1476
|
+
},
|
|
1477
|
+
"quality": {
|
|
1478
|
+
"type": "integer",
|
|
1479
|
+
"minimum": 0,
|
|
1480
|
+
"maximum": 100,
|
|
1481
|
+
"description": "JPEG quality (0-100)"
|
|
1482
|
+
}
|
|
1483
|
+
},
|
|
1484
|
+
"required": [
|
|
1485
|
+
"input_image",
|
|
1486
|
+
"mask_image"
|
|
1487
|
+
],
|
|
1488
|
+
"additionalProperties": false,
|
|
1489
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1490
|
+
}
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
"serverName": "human-mcp",
|
|
1494
|
+
"name": "rmbg_remove_background",
|
|
1495
|
+
"description": "Remove background from an image using AI-powered background removal",
|
|
1496
|
+
"inputSchema": {
|
|
1497
|
+
"type": "object",
|
|
1498
|
+
"properties": {
|
|
1499
|
+
"input_image": {
|
|
1500
|
+
"type": "string",
|
|
1501
|
+
"description": "Input image - supports file paths, URLs, or base64 data URIs"
|
|
1502
|
+
},
|
|
1503
|
+
"quality": {
|
|
1504
|
+
"type": "string",
|
|
1505
|
+
"enum": [
|
|
1506
|
+
"fast",
|
|
1507
|
+
"balanced",
|
|
1508
|
+
"high"
|
|
1509
|
+
],
|
|
1510
|
+
"default": "balanced",
|
|
1511
|
+
"description": "Processing quality (fast = quick but less accurate, high = slower but more accurate)"
|
|
1512
|
+
},
|
|
1513
|
+
"output_format": {
|
|
1514
|
+
"type": "string",
|
|
1515
|
+
"enum": [
|
|
1516
|
+
"png",
|
|
1517
|
+
"jpeg"
|
|
1518
|
+
],
|
|
1519
|
+
"default": "png",
|
|
1520
|
+
"description": "Output image format (PNG preserves transparency, JPEG requires background color)"
|
|
1521
|
+
},
|
|
1522
|
+
"background_color": {
|
|
1523
|
+
"type": "string",
|
|
1524
|
+
"description": "Background color for JPEG output (CSS color format, e.g., '#ffffff', 'white')"
|
|
1525
|
+
},
|
|
1526
|
+
"jpeg_quality": {
|
|
1527
|
+
"type": "integer",
|
|
1528
|
+
"minimum": 0,
|
|
1529
|
+
"maximum": 100,
|
|
1530
|
+
"default": 85,
|
|
1531
|
+
"description": "JPEG quality (0-100)"
|
|
1532
|
+
}
|
|
1533
|
+
},
|
|
1534
|
+
"required": [
|
|
1535
|
+
"input_image"
|
|
1536
|
+
],
|
|
1537
|
+
"additionalProperties": false,
|
|
1538
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1539
|
+
}
|
|
1540
|
+
},
|
|
1541
|
+
{
|
|
1542
|
+
"serverName": "human-mcp",
|
|
1543
|
+
"name": "playwright_screenshot_fullpage",
|
|
1544
|
+
"description": "Capture full page screenshot including scrollable content using Playwright",
|
|
1545
|
+
"inputSchema": {
|
|
1546
|
+
"type": "object",
|
|
1547
|
+
"properties": {
|
|
1548
|
+
"url": {
|
|
1549
|
+
"type": "string",
|
|
1550
|
+
"format": "uri",
|
|
1551
|
+
"description": "URL of the webpage to capture"
|
|
1552
|
+
},
|
|
1553
|
+
"format": {
|
|
1554
|
+
"type": "string",
|
|
1555
|
+
"enum": [
|
|
1556
|
+
"png",
|
|
1557
|
+
"jpeg"
|
|
1558
|
+
],
|
|
1559
|
+
"default": "png",
|
|
1560
|
+
"description": "Screenshot format"
|
|
1561
|
+
},
|
|
1562
|
+
"quality": {
|
|
1563
|
+
"type": "integer",
|
|
1564
|
+
"minimum": 0,
|
|
1565
|
+
"maximum": 100,
|
|
1566
|
+
"description": "JPEG quality (0-100), only applicable for jpeg format"
|
|
1567
|
+
},
|
|
1568
|
+
"timeout": {
|
|
1569
|
+
"type": "integer",
|
|
1570
|
+
"minimum": 1000,
|
|
1571
|
+
"maximum": 120000,
|
|
1572
|
+
"default": 30000,
|
|
1573
|
+
"description": "Navigation timeout in milliseconds"
|
|
1574
|
+
},
|
|
1575
|
+
"wait_until": {
|
|
1576
|
+
"type": "string",
|
|
1577
|
+
"enum": [
|
|
1578
|
+
"load",
|
|
1579
|
+
"domcontentloaded",
|
|
1580
|
+
"networkidle"
|
|
1581
|
+
],
|
|
1582
|
+
"default": "networkidle",
|
|
1583
|
+
"description": "When to consider navigation successful"
|
|
1584
|
+
},
|
|
1585
|
+
"viewport": {
|
|
1586
|
+
"type": "object",
|
|
1587
|
+
"properties": {
|
|
1588
|
+
"width": {
|
|
1589
|
+
"type": "integer",
|
|
1590
|
+
"minimum": 320,
|
|
1591
|
+
"maximum": 3840,
|
|
1592
|
+
"default": 1920
|
|
1593
|
+
},
|
|
1594
|
+
"height": {
|
|
1595
|
+
"type": "integer",
|
|
1596
|
+
"minimum": 240,
|
|
1597
|
+
"maximum": 2160,
|
|
1598
|
+
"default": 1080
|
|
1599
|
+
}
|
|
1600
|
+
},
|
|
1601
|
+
"additionalProperties": false,
|
|
1602
|
+
"description": "Viewport dimensions"
|
|
1603
|
+
}
|
|
1604
|
+
},
|
|
1605
|
+
"required": [
|
|
1606
|
+
"url"
|
|
1607
|
+
],
|
|
1608
|
+
"additionalProperties": false,
|
|
1609
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1610
|
+
}
|
|
1611
|
+
},
|
|
1612
|
+
{
|
|
1613
|
+
"serverName": "human-mcp",
|
|
1614
|
+
"name": "playwright_screenshot_viewport",
|
|
1615
|
+
"description": "Capture viewport screenshot (visible area only) using Playwright",
|
|
1616
|
+
"inputSchema": {
|
|
1617
|
+
"type": "object",
|
|
1618
|
+
"properties": {
|
|
1619
|
+
"url": {
|
|
1620
|
+
"type": "string",
|
|
1621
|
+
"format": "uri",
|
|
1622
|
+
"description": "URL of the webpage to capture"
|
|
1623
|
+
},
|
|
1624
|
+
"format": {
|
|
1625
|
+
"type": "string",
|
|
1626
|
+
"enum": [
|
|
1627
|
+
"png",
|
|
1628
|
+
"jpeg"
|
|
1629
|
+
],
|
|
1630
|
+
"default": "png",
|
|
1631
|
+
"description": "Screenshot format"
|
|
1632
|
+
},
|
|
1633
|
+
"quality": {
|
|
1634
|
+
"type": "integer",
|
|
1635
|
+
"minimum": 0,
|
|
1636
|
+
"maximum": 100,
|
|
1637
|
+
"description": "JPEG quality (0-100), only applicable for jpeg format"
|
|
1638
|
+
},
|
|
1639
|
+
"timeout": {
|
|
1640
|
+
"type": "integer",
|
|
1641
|
+
"minimum": 1000,
|
|
1642
|
+
"maximum": 120000,
|
|
1643
|
+
"default": 30000,
|
|
1644
|
+
"description": "Navigation timeout in milliseconds"
|
|
1645
|
+
},
|
|
1646
|
+
"wait_until": {
|
|
1647
|
+
"type": "string",
|
|
1648
|
+
"enum": [
|
|
1649
|
+
"load",
|
|
1650
|
+
"domcontentloaded",
|
|
1651
|
+
"networkidle"
|
|
1652
|
+
],
|
|
1653
|
+
"default": "networkidle",
|
|
1654
|
+
"description": "When to consider navigation successful"
|
|
1655
|
+
},
|
|
1656
|
+
"viewport": {
|
|
1657
|
+
"type": "object",
|
|
1658
|
+
"properties": {
|
|
1659
|
+
"width": {
|
|
1660
|
+
"type": "integer",
|
|
1661
|
+
"minimum": 320,
|
|
1662
|
+
"maximum": 3840,
|
|
1663
|
+
"default": 1920
|
|
1664
|
+
},
|
|
1665
|
+
"height": {
|
|
1666
|
+
"type": "integer",
|
|
1667
|
+
"minimum": 240,
|
|
1668
|
+
"maximum": 2160,
|
|
1669
|
+
"default": 1080
|
|
1670
|
+
}
|
|
1671
|
+
},
|
|
1672
|
+
"additionalProperties": false,
|
|
1673
|
+
"description": "Viewport dimensions"
|
|
1674
|
+
}
|
|
1675
|
+
},
|
|
1676
|
+
"required": [
|
|
1677
|
+
"url"
|
|
1678
|
+
],
|
|
1679
|
+
"additionalProperties": false,
|
|
1680
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1681
|
+
}
|
|
1682
|
+
},
|
|
1683
|
+
{
|
|
1684
|
+
"serverName": "human-mcp",
|
|
1685
|
+
"name": "playwright_screenshot_element",
|
|
1686
|
+
"description": "Capture screenshot of specific element using Playwright",
|
|
1687
|
+
"inputSchema": {
|
|
1688
|
+
"type": "object",
|
|
1689
|
+
"properties": {
|
|
1690
|
+
"url": {
|
|
1691
|
+
"type": "string",
|
|
1692
|
+
"format": "uri",
|
|
1693
|
+
"description": "URL of the webpage to capture"
|
|
1694
|
+
},
|
|
1695
|
+
"selector": {
|
|
1696
|
+
"type": "string",
|
|
1697
|
+
"minLength": 1,
|
|
1698
|
+
"description": "CSS selector, text content, or role of the element to capture"
|
|
1699
|
+
},
|
|
1700
|
+
"selector_type": {
|
|
1701
|
+
"type": "string",
|
|
1702
|
+
"enum": [
|
|
1703
|
+
"css",
|
|
1704
|
+
"text",
|
|
1705
|
+
"role"
|
|
1706
|
+
],
|
|
1707
|
+
"default": "css",
|
|
1708
|
+
"description": "Type of selector (css, text, or role)"
|
|
1709
|
+
},
|
|
1710
|
+
"format": {
|
|
1711
|
+
"type": "string",
|
|
1712
|
+
"enum": [
|
|
1713
|
+
"png",
|
|
1714
|
+
"jpeg"
|
|
1715
|
+
],
|
|
1716
|
+
"default": "png",
|
|
1717
|
+
"description": "Screenshot format"
|
|
1718
|
+
},
|
|
1719
|
+
"quality": {
|
|
1720
|
+
"type": "integer",
|
|
1721
|
+
"minimum": 0,
|
|
1722
|
+
"maximum": 100,
|
|
1723
|
+
"description": "JPEG quality (0-100), only applicable for jpeg format"
|
|
1724
|
+
},
|
|
1725
|
+
"timeout": {
|
|
1726
|
+
"type": "integer",
|
|
1727
|
+
"minimum": 1000,
|
|
1728
|
+
"maximum": 120000,
|
|
1729
|
+
"default": 30000,
|
|
1730
|
+
"description": "Navigation and element wait timeout in milliseconds"
|
|
1731
|
+
},
|
|
1732
|
+
"wait_until": {
|
|
1733
|
+
"type": "string",
|
|
1734
|
+
"enum": [
|
|
1735
|
+
"load",
|
|
1736
|
+
"domcontentloaded",
|
|
1737
|
+
"networkidle"
|
|
1738
|
+
],
|
|
1739
|
+
"default": "networkidle",
|
|
1740
|
+
"description": "When to consider navigation successful"
|
|
1741
|
+
},
|
|
1742
|
+
"viewport": {
|
|
1743
|
+
"type": "object",
|
|
1744
|
+
"properties": {
|
|
1745
|
+
"width": {
|
|
1746
|
+
"type": "integer",
|
|
1747
|
+
"minimum": 320,
|
|
1748
|
+
"maximum": 3840,
|
|
1749
|
+
"default": 1920
|
|
1750
|
+
},
|
|
1751
|
+
"height": {
|
|
1752
|
+
"type": "integer",
|
|
1753
|
+
"minimum": 240,
|
|
1754
|
+
"maximum": 2160,
|
|
1755
|
+
"default": 1080
|
|
1756
|
+
}
|
|
1757
|
+
},
|
|
1758
|
+
"additionalProperties": false,
|
|
1759
|
+
"description": "Viewport dimensions"
|
|
1760
|
+
},
|
|
1761
|
+
"wait_for_selector": {
|
|
1762
|
+
"type": "boolean",
|
|
1763
|
+
"default": true,
|
|
1764
|
+
"description": "Wait for the selector to be visible before capturing"
|
|
1765
|
+
}
|
|
1766
|
+
},
|
|
1767
|
+
"required": [
|
|
1768
|
+
"url",
|
|
1769
|
+
"selector"
|
|
1770
|
+
],
|
|
1771
|
+
"additionalProperties": false,
|
|
1772
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1773
|
+
}
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"serverName": "human-mcp",
|
|
1777
|
+
"name": "mouth_speak",
|
|
1778
|
+
"description": "Generate speech from text using Gemini Speech Generation API with voice customization",
|
|
1779
|
+
"inputSchema": {
|
|
1780
|
+
"type": "object",
|
|
1781
|
+
"properties": {
|
|
1782
|
+
"text": {
|
|
1783
|
+
"type": "string",
|
|
1784
|
+
"minLength": 1,
|
|
1785
|
+
"maxLength": 32000,
|
|
1786
|
+
"description": "Text to convert to speech (max 32k tokens)"
|
|
1787
|
+
},
|
|
1788
|
+
"voice": {
|
|
1789
|
+
"type": "string",
|
|
1790
|
+
"enum": [
|
|
1791
|
+
"Astrid",
|
|
1792
|
+
"Charon",
|
|
1793
|
+
"Fenrir",
|
|
1794
|
+
"Kore",
|
|
1795
|
+
"Odin",
|
|
1796
|
+
"Puck",
|
|
1797
|
+
"Sage",
|
|
1798
|
+
"Vox",
|
|
1799
|
+
"Zephyr",
|
|
1800
|
+
"Aoede",
|
|
1801
|
+
"Apollo",
|
|
1802
|
+
"Elektra",
|
|
1803
|
+
"Iris",
|
|
1804
|
+
"Nemesis",
|
|
1805
|
+
"Perseus",
|
|
1806
|
+
"Selene",
|
|
1807
|
+
"Thalia",
|
|
1808
|
+
"Argus",
|
|
1809
|
+
"Ares",
|
|
1810
|
+
"Demeter",
|
|
1811
|
+
"Dione",
|
|
1812
|
+
"Echo",
|
|
1813
|
+
"Eros",
|
|
1814
|
+
"Hephaestus",
|
|
1815
|
+
"Hermes",
|
|
1816
|
+
"Hyperion",
|
|
1817
|
+
"Iapetus",
|
|
1818
|
+
"Kronos",
|
|
1819
|
+
"Leto",
|
|
1820
|
+
"Maia",
|
|
1821
|
+
"Mnemosyne"
|
|
1822
|
+
],
|
|
1823
|
+
"default": "Zephyr",
|
|
1824
|
+
"description": "Voice to use for speech generation"
|
|
1825
|
+
},
|
|
1826
|
+
"model": {
|
|
1827
|
+
"type": "string",
|
|
1828
|
+
"enum": [
|
|
1829
|
+
"gemini-2.5-flash-preview-tts",
|
|
1830
|
+
"gemini-2.5-pro-preview-tts"
|
|
1831
|
+
],
|
|
1832
|
+
"default": "gemini-2.5-flash-preview-tts",
|
|
1833
|
+
"description": "Speech generation model"
|
|
1834
|
+
},
|
|
1835
|
+
"language": {
|
|
1836
|
+
"type": "string",
|
|
1837
|
+
"enum": [
|
|
1838
|
+
"ar-EG",
|
|
1839
|
+
"de-DE",
|
|
1840
|
+
"en-US",
|
|
1841
|
+
"es-US",
|
|
1842
|
+
"fr-FR",
|
|
1843
|
+
"hi-IN",
|
|
1844
|
+
"id-ID",
|
|
1845
|
+
"it-IT",
|
|
1846
|
+
"ja-JP",
|
|
1847
|
+
"ko-KR",
|
|
1848
|
+
"pt-BR",
|
|
1849
|
+
"ru-RU",
|
|
1850
|
+
"nl-NL",
|
|
1851
|
+
"pl-PL",
|
|
1852
|
+
"th-TH",
|
|
1853
|
+
"tr-TR",
|
|
1854
|
+
"vi-VN",
|
|
1855
|
+
"ro-RO",
|
|
1856
|
+
"uk-UA",
|
|
1857
|
+
"bn-BD",
|
|
1858
|
+
"en-IN",
|
|
1859
|
+
"mr-IN",
|
|
1860
|
+
"ta-IN",
|
|
1861
|
+
"te-IN"
|
|
1862
|
+
],
|
|
1863
|
+
"default": "en-US",
|
|
1864
|
+
"description": "Language for speech generation"
|
|
1865
|
+
},
|
|
1866
|
+
"output_format": {
|
|
1867
|
+
"type": "string",
|
|
1868
|
+
"enum": [
|
|
1869
|
+
"wav",
|
|
1870
|
+
"base64",
|
|
1871
|
+
"url"
|
|
1872
|
+
],
|
|
1873
|
+
"default": "base64",
|
|
1874
|
+
"description": "Output format for generated audio"
|
|
1875
|
+
},
|
|
1876
|
+
"style_prompt": {
|
|
1877
|
+
"type": "string",
|
|
1878
|
+
"description": "Natural language prompt to control speaking style"
|
|
1879
|
+
}
|
|
1880
|
+
},
|
|
1881
|
+
"required": [
|
|
1882
|
+
"text"
|
|
1883
|
+
],
|
|
1884
|
+
"additionalProperties": false,
|
|
1885
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1886
|
+
}
|
|
1887
|
+
},
|
|
1888
|
+
{
|
|
1889
|
+
"serverName": "human-mcp",
|
|
1890
|
+
"name": "mouth_narrate",
|
|
1891
|
+
"description": "Generate narration for long-form content with chapter breaks and style control",
|
|
1892
|
+
"inputSchema": {
|
|
1893
|
+
"type": "object",
|
|
1894
|
+
"properties": {
|
|
1895
|
+
"content": {
|
|
1896
|
+
"type": "string",
|
|
1897
|
+
"minLength": 1,
|
|
1898
|
+
"description": "Long-form content to narrate"
|
|
1899
|
+
},
|
|
1900
|
+
"voice": {
|
|
1901
|
+
"type": "string",
|
|
1902
|
+
"enum": [
|
|
1903
|
+
"Astrid",
|
|
1904
|
+
"Charon",
|
|
1905
|
+
"Fenrir",
|
|
1906
|
+
"Kore",
|
|
1907
|
+
"Odin",
|
|
1908
|
+
"Puck",
|
|
1909
|
+
"Sage",
|
|
1910
|
+
"Vox",
|
|
1911
|
+
"Zephyr",
|
|
1912
|
+
"Aoede",
|
|
1913
|
+
"Apollo",
|
|
1914
|
+
"Elektra",
|
|
1915
|
+
"Iris",
|
|
1916
|
+
"Nemesis",
|
|
1917
|
+
"Perseus",
|
|
1918
|
+
"Selene",
|
|
1919
|
+
"Thalia",
|
|
1920
|
+
"Argus",
|
|
1921
|
+
"Ares",
|
|
1922
|
+
"Demeter",
|
|
1923
|
+
"Dione",
|
|
1924
|
+
"Echo",
|
|
1925
|
+
"Eros",
|
|
1926
|
+
"Hephaestus",
|
|
1927
|
+
"Hermes",
|
|
1928
|
+
"Hyperion",
|
|
1929
|
+
"Iapetus",
|
|
1930
|
+
"Kronos",
|
|
1931
|
+
"Leto",
|
|
1932
|
+
"Maia",
|
|
1933
|
+
"Mnemosyne"
|
|
1934
|
+
],
|
|
1935
|
+
"default": "Sage",
|
|
1936
|
+
"description": "Voice to use for narration"
|
|
1937
|
+
},
|
|
1938
|
+
"model": {
|
|
1939
|
+
"type": "string",
|
|
1940
|
+
"enum": [
|
|
1941
|
+
"gemini-2.5-flash-preview-tts",
|
|
1942
|
+
"gemini-2.5-pro-preview-tts"
|
|
1943
|
+
],
|
|
1944
|
+
"default": "gemini-2.5-pro-preview-tts",
|
|
1945
|
+
"description": "Speech generation model"
|
|
1946
|
+
},
|
|
1947
|
+
"language": {
|
|
1948
|
+
"type": "string",
|
|
1949
|
+
"enum": [
|
|
1950
|
+
"ar-EG",
|
|
1951
|
+
"de-DE",
|
|
1952
|
+
"en-US",
|
|
1953
|
+
"es-US",
|
|
1954
|
+
"fr-FR",
|
|
1955
|
+
"hi-IN",
|
|
1956
|
+
"id-ID",
|
|
1957
|
+
"it-IT",
|
|
1958
|
+
"ja-JP",
|
|
1959
|
+
"ko-KR",
|
|
1960
|
+
"pt-BR",
|
|
1961
|
+
"ru-RU",
|
|
1962
|
+
"nl-NL",
|
|
1963
|
+
"pl-PL",
|
|
1964
|
+
"th-TH",
|
|
1965
|
+
"tr-TR",
|
|
1966
|
+
"vi-VN",
|
|
1967
|
+
"ro-RO",
|
|
1968
|
+
"uk-UA",
|
|
1969
|
+
"bn-BD",
|
|
1970
|
+
"en-IN",
|
|
1971
|
+
"mr-IN",
|
|
1972
|
+
"ta-IN",
|
|
1973
|
+
"te-IN"
|
|
1974
|
+
],
|
|
1975
|
+
"default": "en-US",
|
|
1976
|
+
"description": "Language for narration"
|
|
1977
|
+
},
|
|
1978
|
+
"output_format": {
|
|
1979
|
+
"type": "string",
|
|
1980
|
+
"enum": [
|
|
1981
|
+
"wav",
|
|
1982
|
+
"base64",
|
|
1983
|
+
"url"
|
|
1984
|
+
],
|
|
1985
|
+
"default": "base64",
|
|
1986
|
+
"description": "Output format for generated audio"
|
|
1987
|
+
},
|
|
1988
|
+
"narration_style": {
|
|
1989
|
+
"type": "string",
|
|
1990
|
+
"enum": [
|
|
1991
|
+
"professional",
|
|
1992
|
+
"casual",
|
|
1993
|
+
"educational",
|
|
1994
|
+
"storytelling"
|
|
1995
|
+
],
|
|
1996
|
+
"default": "professional",
|
|
1997
|
+
"description": "Narration style"
|
|
1998
|
+
},
|
|
1999
|
+
"chapter_breaks": {
|
|
2000
|
+
"type": "boolean",
|
|
2001
|
+
"default": false,
|
|
2002
|
+
"description": "Add pauses between chapters/sections"
|
|
2003
|
+
},
|
|
2004
|
+
"max_chunk_size": {
|
|
2005
|
+
"type": "number",
|
|
2006
|
+
"default": 8000,
|
|
2007
|
+
"description": "Maximum characters per audio chunk"
|
|
2008
|
+
}
|
|
2009
|
+
},
|
|
2010
|
+
"required": [
|
|
2011
|
+
"content"
|
|
2012
|
+
],
|
|
2013
|
+
"additionalProperties": false,
|
|
2014
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2015
|
+
}
|
|
2016
|
+
},
|
|
2017
|
+
{
|
|
2018
|
+
"serverName": "human-mcp",
|
|
2019
|
+
"name": "mouth_explain",
|
|
2020
|
+
"description": "Generate spoken explanations of code with technical analysis",
|
|
2021
|
+
"inputSchema": {
|
|
2022
|
+
"type": "object",
|
|
2023
|
+
"properties": {
|
|
2024
|
+
"code": {
|
|
2025
|
+
"type": "string",
|
|
2026
|
+
"minLength": 1,
|
|
2027
|
+
"description": "Code to explain"
|
|
2028
|
+
},
|
|
2029
|
+
"language": {
|
|
2030
|
+
"type": "string",
|
|
2031
|
+
"enum": [
|
|
2032
|
+
"ar-EG",
|
|
2033
|
+
"de-DE",
|
|
2034
|
+
"en-US",
|
|
2035
|
+
"es-US",
|
|
2036
|
+
"fr-FR",
|
|
2037
|
+
"hi-IN",
|
|
2038
|
+
"id-ID",
|
|
2039
|
+
"it-IT",
|
|
2040
|
+
"ja-JP",
|
|
2041
|
+
"ko-KR",
|
|
2042
|
+
"pt-BR",
|
|
2043
|
+
"ru-RU",
|
|
2044
|
+
"nl-NL",
|
|
2045
|
+
"pl-PL",
|
|
2046
|
+
"th-TH",
|
|
2047
|
+
"tr-TR",
|
|
2048
|
+
"vi-VN",
|
|
2049
|
+
"ro-RO",
|
|
2050
|
+
"uk-UA",
|
|
2051
|
+
"bn-BD",
|
|
2052
|
+
"en-IN",
|
|
2053
|
+
"mr-IN",
|
|
2054
|
+
"ta-IN",
|
|
2055
|
+
"te-IN"
|
|
2056
|
+
],
|
|
2057
|
+
"default": "en-US",
|
|
2058
|
+
"description": "Language for explanation"
|
|
2059
|
+
},
|
|
2060
|
+
"programming_language": {
|
|
2061
|
+
"type": "string",
|
|
2062
|
+
"description": "Programming language of the code"
|
|
2063
|
+
},
|
|
2064
|
+
"voice": {
|
|
2065
|
+
"type": "string",
|
|
2066
|
+
"enum": [
|
|
2067
|
+
"Astrid",
|
|
2068
|
+
"Charon",
|
|
2069
|
+
"Fenrir",
|
|
2070
|
+
"Kore",
|
|
2071
|
+
"Odin",
|
|
2072
|
+
"Puck",
|
|
2073
|
+
"Sage",
|
|
2074
|
+
"Vox",
|
|
2075
|
+
"Zephyr",
|
|
2076
|
+
"Aoede",
|
|
2077
|
+
"Apollo",
|
|
2078
|
+
"Elektra",
|
|
2079
|
+
"Iris",
|
|
2080
|
+
"Nemesis",
|
|
2081
|
+
"Perseus",
|
|
2082
|
+
"Selene",
|
|
2083
|
+
"Thalia",
|
|
2084
|
+
"Argus",
|
|
2085
|
+
"Ares",
|
|
2086
|
+
"Demeter",
|
|
2087
|
+
"Dione",
|
|
2088
|
+
"Echo",
|
|
2089
|
+
"Eros",
|
|
2090
|
+
"Hephaestus",
|
|
2091
|
+
"Hermes",
|
|
2092
|
+
"Hyperion",
|
|
2093
|
+
"Iapetus",
|
|
2094
|
+
"Kronos",
|
|
2095
|
+
"Leto",
|
|
2096
|
+
"Maia",
|
|
2097
|
+
"Mnemosyne"
|
|
2098
|
+
],
|
|
2099
|
+
"default": "Apollo",
|
|
2100
|
+
"description": "Voice to use for explanation"
|
|
2101
|
+
},
|
|
2102
|
+
"model": {
|
|
2103
|
+
"type": "string",
|
|
2104
|
+
"enum": [
|
|
2105
|
+
"gemini-2.5-flash-preview-tts",
|
|
2106
|
+
"gemini-2.5-pro-preview-tts"
|
|
2107
|
+
],
|
|
2108
|
+
"default": "gemini-2.5-pro-preview-tts",
|
|
2109
|
+
"description": "Speech generation model"
|
|
2110
|
+
},
|
|
2111
|
+
"output_format": {
|
|
2112
|
+
"type": "string",
|
|
2113
|
+
"enum": [
|
|
2114
|
+
"wav",
|
|
2115
|
+
"base64",
|
|
2116
|
+
"url"
|
|
2117
|
+
],
|
|
2118
|
+
"default": "base64",
|
|
2119
|
+
"description": "Output format for generated audio"
|
|
2120
|
+
},
|
|
2121
|
+
"explanation_level": {
|
|
2122
|
+
"type": "string",
|
|
2123
|
+
"enum": [
|
|
2124
|
+
"beginner",
|
|
2125
|
+
"intermediate",
|
|
2126
|
+
"advanced"
|
|
2127
|
+
],
|
|
2128
|
+
"default": "intermediate",
|
|
2129
|
+
"description": "Technical level of explanation"
|
|
2130
|
+
},
|
|
2131
|
+
"include_examples": {
|
|
2132
|
+
"type": "boolean",
|
|
2133
|
+
"default": true,
|
|
2134
|
+
"description": "Include examples in explanation"
|
|
2135
|
+
}
|
|
2136
|
+
},
|
|
2137
|
+
"required": [
|
|
2138
|
+
"code"
|
|
2139
|
+
],
|
|
2140
|
+
"additionalProperties": false,
|
|
2141
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2142
|
+
}
|
|
2143
|
+
},
|
|
2144
|
+
{
|
|
2145
|
+
"serverName": "human-mcp",
|
|
2146
|
+
"name": "mouth_customize",
|
|
2147
|
+
"description": "Test different voices and styles to find the best fit for your content",
|
|
2148
|
+
"inputSchema": {
|
|
2149
|
+
"type": "object",
|
|
2150
|
+
"properties": {
|
|
2151
|
+
"text": {
|
|
2152
|
+
"type": "string",
|
|
2153
|
+
"minLength": 1,
|
|
2154
|
+
"maxLength": 1000,
|
|
2155
|
+
"description": "Sample text to test voice customization"
|
|
2156
|
+
},
|
|
2157
|
+
"voice": {
|
|
2158
|
+
"type": "string",
|
|
2159
|
+
"enum": [
|
|
2160
|
+
"Astrid",
|
|
2161
|
+
"Charon",
|
|
2162
|
+
"Fenrir",
|
|
2163
|
+
"Kore",
|
|
2164
|
+
"Odin",
|
|
2165
|
+
"Puck",
|
|
2166
|
+
"Sage",
|
|
2167
|
+
"Vox",
|
|
2168
|
+
"Zephyr",
|
|
2169
|
+
"Aoede",
|
|
2170
|
+
"Apollo",
|
|
2171
|
+
"Elektra",
|
|
2172
|
+
"Iris",
|
|
2173
|
+
"Nemesis",
|
|
2174
|
+
"Perseus",
|
|
2175
|
+
"Selene",
|
|
2176
|
+
"Thalia",
|
|
2177
|
+
"Argus",
|
|
2178
|
+
"Ares",
|
|
2179
|
+
"Demeter",
|
|
2180
|
+
"Dione",
|
|
2181
|
+
"Echo",
|
|
2182
|
+
"Eros",
|
|
2183
|
+
"Hephaestus",
|
|
2184
|
+
"Hermes",
|
|
2185
|
+
"Hyperion",
|
|
2186
|
+
"Iapetus",
|
|
2187
|
+
"Kronos",
|
|
2188
|
+
"Leto",
|
|
2189
|
+
"Maia",
|
|
2190
|
+
"Mnemosyne"
|
|
2191
|
+
],
|
|
2192
|
+
"description": "Base voice to customize"
|
|
2193
|
+
},
|
|
2194
|
+
"model": {
|
|
2195
|
+
"type": "string",
|
|
2196
|
+
"enum": [
|
|
2197
|
+
"gemini-2.5-flash-preview-tts",
|
|
2198
|
+
"gemini-2.5-pro-preview-tts"
|
|
2199
|
+
],
|
|
2200
|
+
"default": "gemini-2.5-flash-preview-tts",
|
|
2201
|
+
"description": "Speech generation model"
|
|
2202
|
+
},
|
|
2203
|
+
"language": {
|
|
2204
|
+
"type": "string",
|
|
2205
|
+
"enum": [
|
|
2206
|
+
"ar-EG",
|
|
2207
|
+
"de-DE",
|
|
2208
|
+
"en-US",
|
|
2209
|
+
"es-US",
|
|
2210
|
+
"fr-FR",
|
|
2211
|
+
"hi-IN",
|
|
2212
|
+
"id-ID",
|
|
2213
|
+
"it-IT",
|
|
2214
|
+
"ja-JP",
|
|
2215
|
+
"ko-KR",
|
|
2216
|
+
"pt-BR",
|
|
2217
|
+
"ru-RU",
|
|
2218
|
+
"nl-NL",
|
|
2219
|
+
"pl-PL",
|
|
2220
|
+
"th-TH",
|
|
2221
|
+
"tr-TR",
|
|
2222
|
+
"vi-VN",
|
|
2223
|
+
"ro-RO",
|
|
2224
|
+
"uk-UA",
|
|
2225
|
+
"bn-BD",
|
|
2226
|
+
"en-IN",
|
|
2227
|
+
"mr-IN",
|
|
2228
|
+
"ta-IN",
|
|
2229
|
+
"te-IN"
|
|
2230
|
+
],
|
|
2231
|
+
"default": "en-US",
|
|
2232
|
+
"description": "Language for speech generation"
|
|
2233
|
+
},
|
|
2234
|
+
"output_format": {
|
|
2235
|
+
"type": "string",
|
|
2236
|
+
"enum": [
|
|
2237
|
+
"wav",
|
|
2238
|
+
"base64",
|
|
2239
|
+
"url"
|
|
2240
|
+
],
|
|
2241
|
+
"default": "base64",
|
|
2242
|
+
"description": "Output format for generated audio"
|
|
2243
|
+
},
|
|
2244
|
+
"style_variations": {
|
|
2245
|
+
"type": "array",
|
|
2246
|
+
"items": {
|
|
2247
|
+
"type": "string"
|
|
2248
|
+
},
|
|
2249
|
+
"description": "Array of different style prompts to test"
|
|
2250
|
+
},
|
|
2251
|
+
"compare_voices": {
|
|
2252
|
+
"type": "array",
|
|
2253
|
+
"items": {
|
|
2254
|
+
"type": "string",
|
|
2255
|
+
"enum": [
|
|
2256
|
+
"Astrid",
|
|
2257
|
+
"Charon",
|
|
2258
|
+
"Fenrir",
|
|
2259
|
+
"Kore",
|
|
2260
|
+
"Odin",
|
|
2261
|
+
"Puck",
|
|
2262
|
+
"Sage",
|
|
2263
|
+
"Vox",
|
|
2264
|
+
"Zephyr",
|
|
2265
|
+
"Aoede",
|
|
2266
|
+
"Apollo",
|
|
2267
|
+
"Elektra",
|
|
2268
|
+
"Iris",
|
|
2269
|
+
"Nemesis",
|
|
2270
|
+
"Perseus",
|
|
2271
|
+
"Selene",
|
|
2272
|
+
"Thalia",
|
|
2273
|
+
"Argus",
|
|
2274
|
+
"Ares",
|
|
2275
|
+
"Demeter",
|
|
2276
|
+
"Dione",
|
|
2277
|
+
"Echo",
|
|
2278
|
+
"Eros",
|
|
2279
|
+
"Hephaestus",
|
|
2280
|
+
"Hermes",
|
|
2281
|
+
"Hyperion",
|
|
2282
|
+
"Iapetus",
|
|
2283
|
+
"Kronos",
|
|
2284
|
+
"Leto",
|
|
2285
|
+
"Maia",
|
|
2286
|
+
"Mnemosyne"
|
|
2287
|
+
]
|
|
2288
|
+
},
|
|
2289
|
+
"description": "Additional voices to compare with the main voice"
|
|
2290
|
+
}
|
|
2291
|
+
},
|
|
2292
|
+
"required": [
|
|
2293
|
+
"text",
|
|
2294
|
+
"voice"
|
|
2295
|
+
],
|
|
2296
|
+
"additionalProperties": false,
|
|
2297
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2298
|
+
}
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
"serverName": "human-mcp",
|
|
2302
|
+
"name": "mcp__reasoning__sequentialthinking",
|
|
2303
|
+
"description": "Advanced sequential thinking for complex problems with thought revision and branching",
|
|
2304
|
+
"inputSchema": {
|
|
2305
|
+
"type": "object",
|
|
2306
|
+
"properties": {
|
|
2307
|
+
"thought": {
|
|
2308
|
+
"type": "string",
|
|
2309
|
+
"description": "Your current thinking step"
|
|
2310
|
+
},
|
|
2311
|
+
"nextThoughtNeeded": {
|
|
2312
|
+
"type": "boolean",
|
|
2313
|
+
"description": "Whether another thought step is needed"
|
|
2314
|
+
},
|
|
2315
|
+
"thoughtNumber": {
|
|
2316
|
+
"type": "integer",
|
|
2317
|
+
"minimum": 1,
|
|
2318
|
+
"description": "Current thought number"
|
|
2319
|
+
},
|
|
2320
|
+
"totalThoughts": {
|
|
2321
|
+
"type": "integer",
|
|
2322
|
+
"minimum": 1,
|
|
2323
|
+
"description": "Estimated total thoughts needed"
|
|
2324
|
+
},
|
|
2325
|
+
"sessionId": {
|
|
2326
|
+
"type": "string",
|
|
2327
|
+
"description": "Thinking session ID (auto-generated if not provided)"
|
|
2328
|
+
},
|
|
2329
|
+
"problem": {
|
|
2330
|
+
"type": "string",
|
|
2331
|
+
"description": "The problem to think through (required for new sessions)"
|
|
2332
|
+
},
|
|
2333
|
+
"isRevision": {
|
|
2334
|
+
"type": "boolean",
|
|
2335
|
+
"default": false,
|
|
2336
|
+
"description": "Whether this revises previous thinking"
|
|
2337
|
+
},
|
|
2338
|
+
"revisesThought": {
|
|
2339
|
+
"type": "integer",
|
|
2340
|
+
"minimum": 1,
|
|
2341
|
+
"description": "Which thought is being reconsidered"
|
|
2342
|
+
},
|
|
2343
|
+
"branchId": {
|
|
2344
|
+
"type": "string",
|
|
2345
|
+
"description": "Branch identifier"
|
|
2346
|
+
},
|
|
2347
|
+
"branchFromThought": {
|
|
2348
|
+
"type": "integer",
|
|
2349
|
+
"minimum": 1,
|
|
2350
|
+
"description": "Branching point thought number"
|
|
2351
|
+
}
|
|
2352
|
+
},
|
|
2353
|
+
"required": [
|
|
2354
|
+
"thought",
|
|
2355
|
+
"nextThoughtNeeded",
|
|
2356
|
+
"thoughtNumber",
|
|
2357
|
+
"totalThoughts"
|
|
2358
|
+
],
|
|
2359
|
+
"additionalProperties": false,
|
|
2360
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2361
|
+
}
|
|
2362
|
+
},
|
|
2363
|
+
{
|
|
2364
|
+
"serverName": "human-mcp",
|
|
2365
|
+
"name": "brain_analyze_simple",
|
|
2366
|
+
"description": "Fast pattern-based analysis using proven frameworks",
|
|
2367
|
+
"inputSchema": {
|
|
2368
|
+
"type": "object",
|
|
2369
|
+
"properties": {
|
|
2370
|
+
"problem": {
|
|
2371
|
+
"type": "string",
|
|
2372
|
+
"description": "The problem or situation to analyze"
|
|
2373
|
+
},
|
|
2374
|
+
"pattern": {
|
|
2375
|
+
"type": "string",
|
|
2376
|
+
"enum": [
|
|
2377
|
+
"problem_solving",
|
|
2378
|
+
"root_cause",
|
|
2379
|
+
"pros_cons",
|
|
2380
|
+
"swot",
|
|
2381
|
+
"cause_effect"
|
|
2382
|
+
],
|
|
2383
|
+
"description": "Analysis framework to use"
|
|
2384
|
+
},
|
|
2385
|
+
"context": {
|
|
2386
|
+
"type": "string",
|
|
2387
|
+
"description": "Additional context or background information"
|
|
2388
|
+
}
|
|
2389
|
+
},
|
|
2390
|
+
"required": [
|
|
2391
|
+
"problem",
|
|
2392
|
+
"pattern"
|
|
2393
|
+
],
|
|
2394
|
+
"additionalProperties": false,
|
|
2395
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2396
|
+
}
|
|
2397
|
+
},
|
|
2398
|
+
{
|
|
2399
|
+
"serverName": "human-mcp",
|
|
2400
|
+
"name": "brain_patterns_info",
|
|
2401
|
+
"description": "List available reasoning patterns and their descriptions",
|
|
2402
|
+
"inputSchema": {
|
|
2403
|
+
"type": "object",
|
|
2404
|
+
"properties": {
|
|
2405
|
+
"pattern": {
|
|
2406
|
+
"type": "string",
|
|
2407
|
+
"description": "Specific pattern to get info about (optional)"
|
|
2408
|
+
}
|
|
2409
|
+
},
|
|
2410
|
+
"additionalProperties": false,
|
|
2411
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2412
|
+
}
|
|
2413
|
+
},
|
|
2414
|
+
{
|
|
2415
|
+
"serverName": "human-mcp",
|
|
2416
|
+
"name": "brain_reflect_enhanced",
|
|
2417
|
+
"description": "AI-powered reflection for complex analysis improvement",
|
|
2418
|
+
"inputSchema": {
|
|
2419
|
+
"type": "object",
|
|
2420
|
+
"properties": {
|
|
2421
|
+
"originalAnalysis": {
|
|
2422
|
+
"type": "string",
|
|
2423
|
+
"minLength": 50,
|
|
2424
|
+
"maxLength": 5000,
|
|
2425
|
+
"description": "The analysis or reasoning to reflect on"
|
|
2426
|
+
},
|
|
2427
|
+
"focusAreas": {
|
|
2428
|
+
"type": "array",
|
|
2429
|
+
"items": {
|
|
2430
|
+
"type": "string",
|
|
2431
|
+
"enum": [
|
|
2432
|
+
"assumptions",
|
|
2433
|
+
"logic_gaps",
|
|
2434
|
+
"alternative_approaches",
|
|
2435
|
+
"evidence_quality",
|
|
2436
|
+
"bias_detection",
|
|
2437
|
+
"completeness"
|
|
2438
|
+
]
|
|
2439
|
+
},
|
|
2440
|
+
"minItems": 1,
|
|
2441
|
+
"maxItems": 3,
|
|
2442
|
+
"description": "Specific aspects to focus reflection on"
|
|
2443
|
+
},
|
|
2444
|
+
"improvementGoal": {
|
|
2445
|
+
"type": "string",
|
|
2446
|
+
"description": "Primary goal for improvement"
|
|
2447
|
+
},
|
|
2448
|
+
"detailLevel": {
|
|
2449
|
+
"type": "string",
|
|
2450
|
+
"enum": [
|
|
2451
|
+
"concise",
|
|
2452
|
+
"detailed"
|
|
2453
|
+
],
|
|
2454
|
+
"default": "detailed",
|
|
2455
|
+
"description": "Level of analysis detail"
|
|
2456
|
+
}
|
|
2457
|
+
},
|
|
2458
|
+
"required": [
|
|
2459
|
+
"originalAnalysis",
|
|
2460
|
+
"focusAreas"
|
|
2461
|
+
],
|
|
2462
|
+
"additionalProperties": false,
|
|
2463
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2464
|
+
}
|
|
2465
|
+
},
|
|
2466
|
+
{
|
|
2467
|
+
"serverName": "chrome-devtools",
|
|
2468
|
+
"name": "click",
|
|
2469
|
+
"description": "Clicks on the provided element",
|
|
2470
|
+
"inputSchema": {
|
|
2471
|
+
"type": "object",
|
|
2472
|
+
"properties": {
|
|
2473
|
+
"uid": {
|
|
2474
|
+
"type": "string",
|
|
2475
|
+
"description": "The uid of an element on the page from the page content snapshot"
|
|
2476
|
+
},
|
|
2477
|
+
"dblClick": {
|
|
2478
|
+
"type": "boolean",
|
|
2479
|
+
"description": "Set to true for double clicks. Default is false."
|
|
2480
|
+
}
|
|
2481
|
+
},
|
|
2482
|
+
"required": [
|
|
2483
|
+
"uid"
|
|
2484
|
+
],
|
|
2485
|
+
"additionalProperties": false,
|
|
2486
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2487
|
+
}
|
|
2488
|
+
},
|
|
2489
|
+
{
|
|
2490
|
+
"serverName": "chrome-devtools",
|
|
2491
|
+
"name": "close_page",
|
|
2492
|
+
"description": "Closes the page by its index. The last open page cannot be closed.",
|
|
2493
|
+
"inputSchema": {
|
|
2494
|
+
"type": "object",
|
|
2495
|
+
"properties": {
|
|
2496
|
+
"pageIdx": {
|
|
2497
|
+
"type": "number",
|
|
2498
|
+
"description": "The index of the page to close. Call list_pages to list pages."
|
|
2499
|
+
}
|
|
2500
|
+
},
|
|
2501
|
+
"required": [
|
|
2502
|
+
"pageIdx"
|
|
2503
|
+
],
|
|
2504
|
+
"additionalProperties": false,
|
|
2505
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2506
|
+
}
|
|
2507
|
+
},
|
|
2508
|
+
{
|
|
2509
|
+
"serverName": "chrome-devtools",
|
|
2510
|
+
"name": "drag",
|
|
2511
|
+
"description": "Drag an element onto another element",
|
|
2512
|
+
"inputSchema": {
|
|
2513
|
+
"type": "object",
|
|
2514
|
+
"properties": {
|
|
2515
|
+
"from_uid": {
|
|
2516
|
+
"type": "string",
|
|
2517
|
+
"description": "The uid of the element to drag"
|
|
2518
|
+
},
|
|
2519
|
+
"to_uid": {
|
|
2520
|
+
"type": "string",
|
|
2521
|
+
"description": "The uid of the element to drop into"
|
|
2522
|
+
}
|
|
2523
|
+
},
|
|
2524
|
+
"required": [
|
|
2525
|
+
"from_uid",
|
|
2526
|
+
"to_uid"
|
|
2527
|
+
],
|
|
2528
|
+
"additionalProperties": false,
|
|
2529
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2530
|
+
}
|
|
2531
|
+
},
|
|
2532
|
+
{
|
|
2533
|
+
"serverName": "chrome-devtools",
|
|
2534
|
+
"name": "emulate",
|
|
2535
|
+
"description": "Emulates various features on the selected page.",
|
|
2536
|
+
"inputSchema": {
|
|
2537
|
+
"type": "object",
|
|
2538
|
+
"properties": {
|
|
2539
|
+
"networkConditions": {
|
|
2540
|
+
"type": "string",
|
|
2541
|
+
"enum": [
|
|
2542
|
+
"No emulation",
|
|
2543
|
+
"Offline",
|
|
2544
|
+
"Slow 3G",
|
|
2545
|
+
"Fast 3G",
|
|
2546
|
+
"Slow 4G",
|
|
2547
|
+
"Fast 4G"
|
|
2548
|
+
],
|
|
2549
|
+
"description": "Throttle network. Set to \"No emulation\" to disable. If omitted, conditions remain unchanged."
|
|
2550
|
+
},
|
|
2551
|
+
"cpuThrottlingRate": {
|
|
2552
|
+
"type": "number",
|
|
2553
|
+
"minimum": 1,
|
|
2554
|
+
"maximum": 20,
|
|
2555
|
+
"description": "Represents the CPU slowdown factor. Set the rate to 1 to disable throttling. If omitted, throttling remains unchanged."
|
|
2556
|
+
}
|
|
2557
|
+
},
|
|
2558
|
+
"additionalProperties": false,
|
|
2559
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2560
|
+
}
|
|
2561
|
+
},
|
|
2562
|
+
{
|
|
2563
|
+
"serverName": "chrome-devtools",
|
|
2564
|
+
"name": "evaluate_script",
|
|
2565
|
+
"description": "Evaluate a JavaScript function inside the currently selected page. Returns the response as JSON\nso returned values have to JSON-serializable.",
|
|
2566
|
+
"inputSchema": {
|
|
2567
|
+
"type": "object",
|
|
2568
|
+
"properties": {
|
|
2569
|
+
"function": {
|
|
2570
|
+
"type": "string",
|
|
2571
|
+
"description": "A JavaScript function declaration to be executed by the tool in the currently selected page.\nExample without arguments: `() => {\n return document.title\n}` or `async () => {\n return await fetch(\"example.com\")\n}`.\nExample with arguments: `(el) => {\n return el.innerText;\n}`\n"
|
|
2572
|
+
},
|
|
2573
|
+
"args": {
|
|
2574
|
+
"type": "array",
|
|
2575
|
+
"items": {
|
|
2576
|
+
"type": "object",
|
|
2577
|
+
"properties": {
|
|
2578
|
+
"uid": {
|
|
2579
|
+
"type": "string",
|
|
2580
|
+
"description": "The uid of an element on the page from the page content snapshot"
|
|
2581
|
+
}
|
|
2582
|
+
},
|
|
2583
|
+
"required": [
|
|
2584
|
+
"uid"
|
|
2585
|
+
],
|
|
2586
|
+
"additionalProperties": false
|
|
2587
|
+
},
|
|
2588
|
+
"description": "An optional list of arguments to pass to the function."
|
|
2589
|
+
}
|
|
2590
|
+
},
|
|
2591
|
+
"required": [
|
|
2592
|
+
"function"
|
|
2593
|
+
],
|
|
2594
|
+
"additionalProperties": false,
|
|
2595
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2596
|
+
}
|
|
2597
|
+
},
|
|
2598
|
+
{
|
|
2599
|
+
"serverName": "chrome-devtools",
|
|
2600
|
+
"name": "fill",
|
|
2601
|
+
"description": "Type text into a input, text area or select an option from a <select> element.",
|
|
2602
|
+
"inputSchema": {
|
|
2603
|
+
"type": "object",
|
|
2604
|
+
"properties": {
|
|
2605
|
+
"uid": {
|
|
2606
|
+
"type": "string",
|
|
2607
|
+
"description": "The uid of an element on the page from the page content snapshot"
|
|
2608
|
+
},
|
|
2609
|
+
"value": {
|
|
2610
|
+
"type": "string",
|
|
2611
|
+
"description": "The value to fill in"
|
|
2612
|
+
}
|
|
2613
|
+
},
|
|
2614
|
+
"required": [
|
|
2615
|
+
"uid",
|
|
2616
|
+
"value"
|
|
2617
|
+
],
|
|
2618
|
+
"additionalProperties": false,
|
|
2619
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2620
|
+
}
|
|
2621
|
+
},
|
|
2622
|
+
{
|
|
2623
|
+
"serverName": "chrome-devtools",
|
|
2624
|
+
"name": "fill_form",
|
|
2625
|
+
"description": "Fill out multiple form elements at once",
|
|
2626
|
+
"inputSchema": {
|
|
2627
|
+
"type": "object",
|
|
2628
|
+
"properties": {
|
|
2629
|
+
"elements": {
|
|
2630
|
+
"type": "array",
|
|
2631
|
+
"items": {
|
|
2632
|
+
"type": "object",
|
|
2633
|
+
"properties": {
|
|
2634
|
+
"uid": {
|
|
2635
|
+
"type": "string",
|
|
2636
|
+
"description": "The uid of the element to fill out"
|
|
2637
|
+
},
|
|
2638
|
+
"value": {
|
|
2639
|
+
"type": "string",
|
|
2640
|
+
"description": "Value for the element"
|
|
2641
|
+
}
|
|
2642
|
+
},
|
|
2643
|
+
"required": [
|
|
2644
|
+
"uid",
|
|
2645
|
+
"value"
|
|
2646
|
+
],
|
|
2647
|
+
"additionalProperties": false
|
|
2648
|
+
},
|
|
2649
|
+
"description": "Elements from snapshot to fill out."
|
|
2650
|
+
}
|
|
2651
|
+
},
|
|
2652
|
+
"required": [
|
|
2653
|
+
"elements"
|
|
2654
|
+
],
|
|
2655
|
+
"additionalProperties": false,
|
|
2656
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2657
|
+
}
|
|
2658
|
+
},
|
|
2659
|
+
{
|
|
2660
|
+
"serverName": "chrome-devtools",
|
|
2661
|
+
"name": "get_console_message",
|
|
2662
|
+
"description": "Gets a console message by its ID. You can get all messages by calling list_console_messages.",
|
|
2663
|
+
"inputSchema": {
|
|
2664
|
+
"type": "object",
|
|
2665
|
+
"properties": {
|
|
2666
|
+
"msgid": {
|
|
2667
|
+
"type": "number",
|
|
2668
|
+
"description": "The msgid of a console message on the page from the listed console messages"
|
|
2669
|
+
}
|
|
2670
|
+
},
|
|
2671
|
+
"required": [
|
|
2672
|
+
"msgid"
|
|
2673
|
+
],
|
|
2674
|
+
"additionalProperties": false,
|
|
2675
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2676
|
+
}
|
|
2677
|
+
},
|
|
2678
|
+
{
|
|
2679
|
+
"serverName": "chrome-devtools",
|
|
2680
|
+
"name": "get_network_request",
|
|
2681
|
+
"description": "Gets a network request by an optional reqid, if omitted returns the currently selected request in the DevTools Network panel.",
|
|
2682
|
+
"inputSchema": {
|
|
2683
|
+
"type": "object",
|
|
2684
|
+
"properties": {
|
|
2685
|
+
"reqid": {
|
|
2686
|
+
"type": "number",
|
|
2687
|
+
"description": "The reqid of the network request. If omitted returns the currently selected request in the DevTools Network panel."
|
|
2688
|
+
}
|
|
2689
|
+
},
|
|
2690
|
+
"additionalProperties": false,
|
|
2691
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2692
|
+
}
|
|
2693
|
+
},
|
|
2694
|
+
{
|
|
2695
|
+
"serverName": "chrome-devtools",
|
|
2696
|
+
"name": "handle_dialog",
|
|
2697
|
+
"description": "If a browser dialog was opened, use this command to handle it",
|
|
2698
|
+
"inputSchema": {
|
|
2699
|
+
"type": "object",
|
|
2700
|
+
"properties": {
|
|
2701
|
+
"action": {
|
|
2702
|
+
"type": "string",
|
|
2703
|
+
"enum": [
|
|
2704
|
+
"accept",
|
|
2705
|
+
"dismiss"
|
|
2706
|
+
],
|
|
2707
|
+
"description": "Whether to dismiss or accept the dialog"
|
|
2708
|
+
},
|
|
2709
|
+
"promptText": {
|
|
2710
|
+
"type": "string",
|
|
2711
|
+
"description": "Optional prompt text to enter into the dialog."
|
|
2712
|
+
}
|
|
2713
|
+
},
|
|
2714
|
+
"required": [
|
|
2715
|
+
"action"
|
|
2716
|
+
],
|
|
2717
|
+
"additionalProperties": false,
|
|
2718
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2719
|
+
}
|
|
2720
|
+
},
|
|
2721
|
+
{
|
|
2722
|
+
"serverName": "chrome-devtools",
|
|
2723
|
+
"name": "hover",
|
|
2724
|
+
"description": "Hover over the provided element",
|
|
2725
|
+
"inputSchema": {
|
|
2726
|
+
"type": "object",
|
|
2727
|
+
"properties": {
|
|
2728
|
+
"uid": {
|
|
2729
|
+
"type": "string",
|
|
2730
|
+
"description": "The uid of an element on the page from the page content snapshot"
|
|
2731
|
+
}
|
|
2732
|
+
},
|
|
2733
|
+
"required": [
|
|
2734
|
+
"uid"
|
|
2735
|
+
],
|
|
2736
|
+
"additionalProperties": false,
|
|
2737
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2738
|
+
}
|
|
2739
|
+
},
|
|
2740
|
+
{
|
|
2741
|
+
"serverName": "chrome-devtools",
|
|
2742
|
+
"name": "list_console_messages",
|
|
2743
|
+
"description": "List all console messages for the currently selected page since the last navigation.",
|
|
2744
|
+
"inputSchema": {
|
|
2745
|
+
"type": "object",
|
|
2746
|
+
"properties": {
|
|
2747
|
+
"pageSize": {
|
|
2748
|
+
"type": "integer",
|
|
2749
|
+
"exclusiveMinimum": 0,
|
|
2750
|
+
"description": "Maximum number of messages to return. When omitted, returns all requests."
|
|
2751
|
+
},
|
|
2752
|
+
"pageIdx": {
|
|
2753
|
+
"type": "integer",
|
|
2754
|
+
"minimum": 0,
|
|
2755
|
+
"description": "Page number to return (0-based). When omitted, returns the first page."
|
|
2756
|
+
},
|
|
2757
|
+
"types": {
|
|
2758
|
+
"type": "array",
|
|
2759
|
+
"items": {
|
|
2760
|
+
"type": "string",
|
|
2761
|
+
"enum": [
|
|
2762
|
+
"log",
|
|
2763
|
+
"debug",
|
|
2764
|
+
"info",
|
|
2765
|
+
"error",
|
|
2766
|
+
"warn",
|
|
2767
|
+
"dir",
|
|
2768
|
+
"dirxml",
|
|
2769
|
+
"table",
|
|
2770
|
+
"trace",
|
|
2771
|
+
"clear",
|
|
2772
|
+
"startGroup",
|
|
2773
|
+
"startGroupCollapsed",
|
|
2774
|
+
"endGroup",
|
|
2775
|
+
"assert",
|
|
2776
|
+
"profile",
|
|
2777
|
+
"profileEnd",
|
|
2778
|
+
"count",
|
|
2779
|
+
"timeEnd",
|
|
2780
|
+
"verbose"
|
|
2781
|
+
]
|
|
2782
|
+
},
|
|
2783
|
+
"description": "Filter messages to only return messages of the specified resource types. When omitted or empty, returns all messages."
|
|
2784
|
+
},
|
|
2785
|
+
"includePreservedMessages": {
|
|
2786
|
+
"type": "boolean",
|
|
2787
|
+
"default": false,
|
|
2788
|
+
"description": "Set to true to return the preserved messages over the last 3 navigations."
|
|
2789
|
+
}
|
|
2790
|
+
},
|
|
2791
|
+
"additionalProperties": false,
|
|
2792
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2793
|
+
}
|
|
2794
|
+
},
|
|
2795
|
+
{
|
|
2796
|
+
"serverName": "chrome-devtools",
|
|
2797
|
+
"name": "list_network_requests",
|
|
2798
|
+
"description": "List all requests for the currently selected page since the last navigation.",
|
|
2799
|
+
"inputSchema": {
|
|
2800
|
+
"type": "object",
|
|
2801
|
+
"properties": {
|
|
2802
|
+
"pageSize": {
|
|
2803
|
+
"type": "integer",
|
|
2804
|
+
"exclusiveMinimum": 0,
|
|
2805
|
+
"description": "Maximum number of requests to return. When omitted, returns all requests."
|
|
2806
|
+
},
|
|
2807
|
+
"pageIdx": {
|
|
2808
|
+
"type": "integer",
|
|
2809
|
+
"minimum": 0,
|
|
2810
|
+
"description": "Page number to return (0-based). When omitted, returns the first page."
|
|
2811
|
+
},
|
|
2812
|
+
"resourceTypes": {
|
|
2813
|
+
"type": "array",
|
|
2814
|
+
"items": {
|
|
2815
|
+
"type": "string",
|
|
2816
|
+
"enum": [
|
|
2817
|
+
"document",
|
|
2818
|
+
"stylesheet",
|
|
2819
|
+
"image",
|
|
2820
|
+
"media",
|
|
2821
|
+
"font",
|
|
2822
|
+
"script",
|
|
2823
|
+
"texttrack",
|
|
2824
|
+
"xhr",
|
|
2825
|
+
"fetch",
|
|
2826
|
+
"prefetch",
|
|
2827
|
+
"eventsource",
|
|
2828
|
+
"websocket",
|
|
2829
|
+
"manifest",
|
|
2830
|
+
"signedexchange",
|
|
2831
|
+
"ping",
|
|
2832
|
+
"cspviolationreport",
|
|
2833
|
+
"preflight",
|
|
2834
|
+
"fedcm",
|
|
2835
|
+
"other"
|
|
2836
|
+
]
|
|
2837
|
+
},
|
|
2838
|
+
"description": "Filter requests to only return requests of the specified resource types. When omitted or empty, returns all requests."
|
|
2839
|
+
},
|
|
2840
|
+
"includePreservedRequests": {
|
|
2841
|
+
"type": "boolean",
|
|
2842
|
+
"default": false,
|
|
2843
|
+
"description": "Set to true to return the preserved requests over the last 3 navigations."
|
|
2844
|
+
}
|
|
2845
|
+
},
|
|
2846
|
+
"additionalProperties": false,
|
|
2847
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2848
|
+
}
|
|
2849
|
+
},
|
|
2850
|
+
{
|
|
2851
|
+
"serverName": "chrome-devtools",
|
|
2852
|
+
"name": "list_pages",
|
|
2853
|
+
"description": "Get a list of pages open in the browser.",
|
|
2854
|
+
"inputSchema": {
|
|
2855
|
+
"type": "object",
|
|
2856
|
+
"properties": {},
|
|
2857
|
+
"additionalProperties": false,
|
|
2858
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2859
|
+
}
|
|
2860
|
+
},
|
|
2861
|
+
{
|
|
2862
|
+
"serverName": "chrome-devtools",
|
|
2863
|
+
"name": "navigate_page",
|
|
2864
|
+
"description": "Navigates the currently selected page to a URL.",
|
|
2865
|
+
"inputSchema": {
|
|
2866
|
+
"type": "object",
|
|
2867
|
+
"properties": {
|
|
2868
|
+
"type": {
|
|
2869
|
+
"type": "string",
|
|
2870
|
+
"enum": [
|
|
2871
|
+
"url",
|
|
2872
|
+
"back",
|
|
2873
|
+
"forward",
|
|
2874
|
+
"reload"
|
|
2875
|
+
],
|
|
2876
|
+
"description": "Navigate the page by URL, back or forward in history, or reload."
|
|
2877
|
+
},
|
|
2878
|
+
"url": {
|
|
2879
|
+
"type": "string",
|
|
2880
|
+
"description": "Target URL (only type=url)"
|
|
2881
|
+
},
|
|
2882
|
+
"ignoreCache": {
|
|
2883
|
+
"type": "boolean",
|
|
2884
|
+
"description": "Whether to ignore cache on reload."
|
|
2885
|
+
},
|
|
2886
|
+
"timeout": {
|
|
2887
|
+
"type": "integer",
|
|
2888
|
+
"description": "Maximum wait time in milliseconds. If set to 0, the default timeout will be used."
|
|
2889
|
+
}
|
|
2890
|
+
},
|
|
2891
|
+
"additionalProperties": false,
|
|
2892
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2893
|
+
}
|
|
2894
|
+
},
|
|
2895
|
+
{
|
|
2896
|
+
"serverName": "chrome-devtools",
|
|
2897
|
+
"name": "new_page",
|
|
2898
|
+
"description": "Creates a new page",
|
|
2899
|
+
"inputSchema": {
|
|
2900
|
+
"type": "object",
|
|
2901
|
+
"properties": {
|
|
2902
|
+
"url": {
|
|
2903
|
+
"type": "string",
|
|
2904
|
+
"description": "URL to load in a new page."
|
|
2905
|
+
},
|
|
2906
|
+
"timeout": {
|
|
2907
|
+
"type": "integer",
|
|
2908
|
+
"description": "Maximum wait time in milliseconds. If set to 0, the default timeout will be used."
|
|
2909
|
+
}
|
|
2910
|
+
},
|
|
2911
|
+
"required": [
|
|
2912
|
+
"url"
|
|
2913
|
+
],
|
|
2914
|
+
"additionalProperties": false,
|
|
2915
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2916
|
+
}
|
|
2917
|
+
},
|
|
2918
|
+
{
|
|
2919
|
+
"serverName": "chrome-devtools",
|
|
2920
|
+
"name": "performance_analyze_insight",
|
|
2921
|
+
"description": "Provides more detailed information on a specific Performance Insight of an insight set that was highlighted in the results of a trace recording.",
|
|
2922
|
+
"inputSchema": {
|
|
2923
|
+
"type": "object",
|
|
2924
|
+
"properties": {
|
|
2925
|
+
"insightSetId": {
|
|
2926
|
+
"type": "string",
|
|
2927
|
+
"description": "The id for the specific insight set. Only use the ids given in the \"Available insight sets\" list."
|
|
2928
|
+
},
|
|
2929
|
+
"insightName": {
|
|
2930
|
+
"type": "string",
|
|
2931
|
+
"description": "The name of the Insight you want more information on. For example: \"DocumentLatency\" or \"LCPBreakdown\""
|
|
2932
|
+
}
|
|
2933
|
+
},
|
|
2934
|
+
"required": [
|
|
2935
|
+
"insightSetId",
|
|
2936
|
+
"insightName"
|
|
2937
|
+
],
|
|
2938
|
+
"additionalProperties": false,
|
|
2939
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2940
|
+
}
|
|
2941
|
+
},
|
|
2942
|
+
{
|
|
2943
|
+
"serverName": "chrome-devtools",
|
|
2944
|
+
"name": "performance_start_trace",
|
|
2945
|
+
"description": "Starts a performance trace recording on the selected page. This can be used to look for performance problems and insights to improve the performance of the page. It will also report Core Web Vital (CWV) scores for the page.",
|
|
2946
|
+
"inputSchema": {
|
|
2947
|
+
"type": "object",
|
|
2948
|
+
"properties": {
|
|
2949
|
+
"reload": {
|
|
2950
|
+
"type": "boolean",
|
|
2951
|
+
"description": "Determines if, once tracing has started, the page should be automatically reloaded."
|
|
2952
|
+
},
|
|
2953
|
+
"autoStop": {
|
|
2954
|
+
"type": "boolean",
|
|
2955
|
+
"description": "Determines if the trace recording should be automatically stopped."
|
|
2956
|
+
}
|
|
2957
|
+
},
|
|
2958
|
+
"required": [
|
|
2959
|
+
"reload",
|
|
2960
|
+
"autoStop"
|
|
2961
|
+
],
|
|
2962
|
+
"additionalProperties": false,
|
|
2963
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2964
|
+
}
|
|
2965
|
+
},
|
|
2966
|
+
{
|
|
2967
|
+
"serverName": "chrome-devtools",
|
|
2968
|
+
"name": "performance_stop_trace",
|
|
2969
|
+
"description": "Stops the active performance trace recording on the selected page.",
|
|
2970
|
+
"inputSchema": {
|
|
2971
|
+
"type": "object",
|
|
2972
|
+
"properties": {},
|
|
2973
|
+
"additionalProperties": false,
|
|
2974
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2975
|
+
}
|
|
2976
|
+
},
|
|
2977
|
+
{
|
|
2978
|
+
"serverName": "chrome-devtools",
|
|
2979
|
+
"name": "press_key",
|
|
2980
|
+
"description": "Press a key or key combination. Use this when other input methods like fill() cannot be used (e.g., keyboard shortcuts, navigation keys, or special key combinations).",
|
|
2981
|
+
"inputSchema": {
|
|
2982
|
+
"type": "object",
|
|
2983
|
+
"properties": {
|
|
2984
|
+
"key": {
|
|
2985
|
+
"type": "string",
|
|
2986
|
+
"description": "A key or a combination (e.g., \"Enter\", \"Control+A\", \"Control++\", \"Control+Shift+R\"). Modifiers: Control, Shift, Alt, Meta"
|
|
2987
|
+
}
|
|
2988
|
+
},
|
|
2989
|
+
"required": [
|
|
2990
|
+
"key"
|
|
2991
|
+
],
|
|
2992
|
+
"additionalProperties": false,
|
|
2993
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2994
|
+
}
|
|
2995
|
+
},
|
|
2996
|
+
{
|
|
2997
|
+
"serverName": "chrome-devtools",
|
|
2998
|
+
"name": "resize_page",
|
|
2999
|
+
"description": "Resizes the selected page's window so that the page has specified dimension",
|
|
3000
|
+
"inputSchema": {
|
|
3001
|
+
"type": "object",
|
|
3002
|
+
"properties": {
|
|
3003
|
+
"width": {
|
|
3004
|
+
"type": "number",
|
|
3005
|
+
"description": "Page width"
|
|
3006
|
+
},
|
|
3007
|
+
"height": {
|
|
3008
|
+
"type": "number",
|
|
3009
|
+
"description": "Page height"
|
|
3010
|
+
}
|
|
3011
|
+
},
|
|
3012
|
+
"required": [
|
|
3013
|
+
"width",
|
|
3014
|
+
"height"
|
|
3015
|
+
],
|
|
3016
|
+
"additionalProperties": false,
|
|
3017
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
3018
|
+
}
|
|
3019
|
+
},
|
|
3020
|
+
{
|
|
3021
|
+
"serverName": "chrome-devtools",
|
|
3022
|
+
"name": "select_page",
|
|
3023
|
+
"description": "Select a page as a context for future tool calls.",
|
|
3024
|
+
"inputSchema": {
|
|
3025
|
+
"type": "object",
|
|
3026
|
+
"properties": {
|
|
3027
|
+
"pageIdx": {
|
|
3028
|
+
"type": "number",
|
|
3029
|
+
"description": "The index of the page to select. Call list_pages to list pages."
|
|
3030
|
+
}
|
|
3031
|
+
},
|
|
3032
|
+
"required": [
|
|
3033
|
+
"pageIdx"
|
|
3034
|
+
],
|
|
3035
|
+
"additionalProperties": false,
|
|
3036
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
3037
|
+
}
|
|
3038
|
+
},
|
|
3039
|
+
{
|
|
3040
|
+
"serverName": "chrome-devtools",
|
|
3041
|
+
"name": "take_screenshot",
|
|
3042
|
+
"description": "Take a screenshot of the page or element.",
|
|
3043
|
+
"inputSchema": {
|
|
3044
|
+
"type": "object",
|
|
3045
|
+
"properties": {
|
|
3046
|
+
"format": {
|
|
3047
|
+
"type": "string",
|
|
3048
|
+
"enum": [
|
|
3049
|
+
"png",
|
|
3050
|
+
"jpeg",
|
|
3051
|
+
"webp"
|
|
3052
|
+
],
|
|
3053
|
+
"default": "png",
|
|
3054
|
+
"description": "Type of format to save the screenshot as. Default is \"png\""
|
|
3055
|
+
},
|
|
3056
|
+
"quality": {
|
|
3057
|
+
"type": "number",
|
|
3058
|
+
"minimum": 0,
|
|
3059
|
+
"maximum": 100,
|
|
3060
|
+
"description": "Compression quality for JPEG and WebP formats (0-100). Higher values mean better quality but larger file sizes. Ignored for PNG format."
|
|
3061
|
+
},
|
|
3062
|
+
"uid": {
|
|
3063
|
+
"type": "string",
|
|
3064
|
+
"description": "The uid of an element on the page from the page content snapshot. If omitted takes a pages screenshot."
|
|
3065
|
+
},
|
|
3066
|
+
"fullPage": {
|
|
3067
|
+
"type": "boolean",
|
|
3068
|
+
"description": "If set to true takes a screenshot of the full page instead of the currently visible viewport. Incompatible with uid."
|
|
3069
|
+
},
|
|
3070
|
+
"filePath": {
|
|
3071
|
+
"type": "string",
|
|
3072
|
+
"description": "The absolute path, or a path relative to the current working directory, to save the screenshot to instead of attaching it to the response."
|
|
3073
|
+
}
|
|
3074
|
+
},
|
|
3075
|
+
"additionalProperties": false,
|
|
3076
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
3077
|
+
}
|
|
3078
|
+
},
|
|
3079
|
+
{
|
|
3080
|
+
"serverName": "chrome-devtools",
|
|
3081
|
+
"name": "take_snapshot",
|
|
3082
|
+
"description": "Take a text snapshot of the currently selected page based on the a11y tree. The snapshot lists page elements along with a unique\nidentifier (uid). Always use the latest snapshot. Prefer taking a snapshot over taking a screenshot. The snapshot indicates the element selected\nin the DevTools Elements panel (if any).",
|
|
3083
|
+
"inputSchema": {
|
|
3084
|
+
"type": "object",
|
|
3085
|
+
"properties": {
|
|
3086
|
+
"verbose": {
|
|
3087
|
+
"type": "boolean",
|
|
3088
|
+
"description": "Whether to include all possible information available in the full a11y tree. Default is false."
|
|
3089
|
+
},
|
|
3090
|
+
"filePath": {
|
|
3091
|
+
"type": "string",
|
|
3092
|
+
"description": "The absolute path, or a path relative to the current working directory, to save the snapshot to instead of attaching it to the response."
|
|
3093
|
+
}
|
|
3094
|
+
},
|
|
3095
|
+
"additionalProperties": false,
|
|
3096
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
3097
|
+
}
|
|
3098
|
+
},
|
|
3099
|
+
{
|
|
3100
|
+
"serverName": "chrome-devtools",
|
|
3101
|
+
"name": "upload_file",
|
|
3102
|
+
"description": "Upload a file through a provided element.",
|
|
3103
|
+
"inputSchema": {
|
|
3104
|
+
"type": "object",
|
|
3105
|
+
"properties": {
|
|
3106
|
+
"uid": {
|
|
3107
|
+
"type": "string",
|
|
3108
|
+
"description": "The uid of the file input element or an element that will open file chooser on the page from the page content snapshot"
|
|
3109
|
+
},
|
|
3110
|
+
"filePath": {
|
|
3111
|
+
"type": "string",
|
|
3112
|
+
"description": "The local path of the file to upload"
|
|
3113
|
+
}
|
|
3114
|
+
},
|
|
3115
|
+
"required": [
|
|
3116
|
+
"uid",
|
|
3117
|
+
"filePath"
|
|
3118
|
+
],
|
|
3119
|
+
"additionalProperties": false,
|
|
3120
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
3121
|
+
}
|
|
3122
|
+
},
|
|
3123
|
+
{
|
|
3124
|
+
"serverName": "chrome-devtools",
|
|
3125
|
+
"name": "wait_for",
|
|
3126
|
+
"description": "Wait for the specified text to appear on the selected page.",
|
|
3127
|
+
"inputSchema": {
|
|
3128
|
+
"type": "object",
|
|
3129
|
+
"properties": {
|
|
3130
|
+
"text": {
|
|
3131
|
+
"type": "string",
|
|
3132
|
+
"description": "Text to appear on the page"
|
|
3133
|
+
},
|
|
3134
|
+
"timeout": {
|
|
3135
|
+
"type": "integer",
|
|
3136
|
+
"description": "Maximum wait time in milliseconds. If set to 0, the default timeout will be used."
|
|
3137
|
+
}
|
|
3138
|
+
},
|
|
3139
|
+
"required": [
|
|
3140
|
+
"text"
|
|
3141
|
+
],
|
|
3142
|
+
"additionalProperties": false,
|
|
3143
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
3144
|
+
}
|
|
3145
|
+
}
|
|
3146
|
+
]
|