@caddis/cli 0.0.0 → 0.2.0
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/LICENSE +21 -0
- package/README.md +163 -1
- package/bundles/antigravity-plugin/agents/code-reviewer.md +47 -0
- package/bundles/antigravity-plugin/agents/preflight.md +53 -0
- package/bundles/antigravity-plugin/guard_agy.py +338 -0
- package/bundles/antigravity-plugin/hooks.json +36 -0
- package/bundles/antigravity-plugin/mcp_config.json +8 -0
- package/bundles/antigravity-plugin/mcp_ping_server.py +55 -0
- package/bundles/antigravity-plugin/plugin.json +5 -0
- package/bundles/antigravity-plugin/session_end_agy.py +57 -0
- package/bundles/antigravity-plugin/skills/_registry.md +115 -0
- package/bundles/antigravity-plugin/skills/add-rules/SKILL.md +45 -0
- package/bundles/antigravity-plugin/skills/api-design/SKILL.md +249 -0
- package/bundles/antigravity-plugin/skills/backend-development/SKILL.md +305 -0
- package/bundles/antigravity-plugin/skills/best-practices/SKILL.md +500 -0
- package/bundles/antigravity-plugin/skills/best-practices/agents/best-practices-referencer.md +263 -0
- package/bundles/antigravity-plugin/skills/best-practices/agents/codebase-context-builder.md +326 -0
- package/bundles/antigravity-plugin/skills/best-practices/agents/task-intent-analyzer.md +245 -0
- package/bundles/antigravity-plugin/skills/best-practices/references/anti-patterns.md +571 -0
- package/bundles/antigravity-plugin/skills/best-practices/references/before-after-examples.md +1114 -0
- package/bundles/antigravity-plugin/skills/best-practices/references/best-practices-guide.md +513 -0
- package/bundles/antigravity-plugin/skills/best-practices/references/common-workflows.md +692 -0
- package/bundles/antigravity-plugin/skills/best-practices/references/prompt-patterns.md +547 -0
- package/bundles/antigravity-plugin/skills/brainstorming/SKILL.md +57 -0
- package/bundles/antigravity-plugin/skills/ci-cd-pipeline/SKILL.md +315 -0
- package/bundles/antigravity-plugin/skills/code-documentation/SKILL.md +271 -0
- package/bundles/antigravity-plugin/skills/code-review/SKILL.md +122 -0
- package/bundles/antigravity-plugin/skills/codebase-audit/SKILL.md +204 -0
- package/bundles/antigravity-plugin/skills/context-curator/SKILL.md +157 -0
- package/bundles/antigravity-plugin/skills/cross-review/SKILL.md +40 -0
- package/bundles/antigravity-plugin/skills/css-architecture/SKILL.md +305 -0
- package/bundles/antigravity-plugin/skills/css-architecture/references/RESPONSIVE-DESIGN.md +604 -0
- package/bundles/antigravity-plugin/skills/database-design/SKILL.md +177 -0
- package/bundles/antigravity-plugin/skills/db-diagram/SKILL.md +148 -0
- package/bundles/antigravity-plugin/skills/db-diagram/scripts/sql_to_graph.py +1212 -0
- package/bundles/antigravity-plugin/skills/digress/SKILL.md +61 -0
- package/bundles/antigravity-plugin/skills/draw-io/SKILL.md +162 -0
- package/bundles/antigravity-plugin/skills/draw-io/references/aws-icons.md +677 -0
- package/bundles/antigravity-plugin/skills/draw-io/references/layout-guidelines.md +142 -0
- package/bundles/antigravity-plugin/skills/draw-io/references/troubleshooting.md +118 -0
- package/bundles/antigravity-plugin/skills/draw-io/references/workflows.md +103 -0
- package/bundles/antigravity-plugin/skills/draw-io/scripts/convert-drawio-to-png.sh +25 -0
- package/bundles/antigravity-plugin/skills/draw-io/scripts/find_aws_icon.py +79 -0
- package/bundles/antigravity-plugin/skills/error-handling/SKILL.md +260 -0
- package/bundles/antigravity-plugin/skills/excalidraw-db/SKILL.md +38 -0
- package/bundles/antigravity-plugin/skills/fastapi-dev/SKILL.md +300 -0
- package/bundles/antigravity-plugin/skills/feature-plan/SKILL.md +198 -0
- package/bundles/antigravity-plugin/skills/frontend-design/SKILL.md +193 -0
- package/bundles/antigravity-plugin/skills/frontend-design/references/my-tech-stack.md +127 -0
- package/bundles/antigravity-plugin/skills/gh-cli/SKILL.md +195 -0
- package/bundles/antigravity-plugin/skills/git-commit/SKILL.md +285 -0
- package/bundles/antigravity-plugin/skills/golden-plan/SKILL.md +577 -0
- package/bundles/antigravity-plugin/skills/handoff/SKILL.md +100 -0
- package/bundles/antigravity-plugin/skills/implement/SKILL.md +114 -0
- package/bundles/antigravity-plugin/skills/javascript-typescript/SKILL.md +142 -0
- package/bundles/antigravity-plugin/skills/kb/SKILL.md +60 -0
- package/bundles/antigravity-plugin/skills/mermaid-db/SKILL.md +33 -0
- package/bundles/antigravity-plugin/skills/mermaid-diagrams/SKILL.md +236 -0
- package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/ENHANCEMENTS.md +264 -0
- package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/MERMAID-SUMMARY.md +137 -0
- package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/advanced-features.md +556 -0
- package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/architecture-diagrams.md +192 -0
- package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/c4-diagrams.md +410 -0
- package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/class-diagrams.md +361 -0
- package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/erd-diagrams.md +510 -0
- package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/flowcharts.md +450 -0
- package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/sequence-diagrams.md +394 -0
- package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/troubleshooting.md +335 -0
- package/bundles/antigravity-plugin/skills/mermaid-diagrams/references/workflows.md +418 -0
- package/bundles/antigravity-plugin/skills/migrate-dir/SKILL.md +68 -0
- package/bundles/antigravity-plugin/skills/mockup/SKILL.md +242 -0
- package/bundles/antigravity-plugin/skills/particle-art/SKILL.md +243 -0
- package/bundles/antigravity-plugin/skills/particle-art/references/canvas-utils.ts +171 -0
- package/bundles/antigravity-plugin/skills/particle-art/references/dot-field.template.tsx +203 -0
- package/bundles/antigravity-plugin/skills/particle-art/references/flow-field.template.tsx +263 -0
- package/bundles/antigravity-plugin/skills/particle-art/references/node-shape.template.tsx +261 -0
- package/bundles/antigravity-plugin/skills/particle-art/references/shape-sampler.ts +281 -0
- package/bundles/antigravity-plugin/skills/particle-art/references/stipple-morph.template.tsx +167 -0
- package/bundles/antigravity-plugin/skills/particle-art/references/stipple.template.tsx +175 -0
- package/bundles/antigravity-plugin/skills/particle-art/references/trail-ghost.template.tsx +266 -0
- package/bundles/antigravity-plugin/skills/particle-art/references/usage-examples.md +320 -0
- package/bundles/antigravity-plugin/skills/playwright/API_REFERENCE.md +653 -0
- package/bundles/antigravity-plugin/skills/playwright/SKILL.md +454 -0
- package/bundles/antigravity-plugin/skills/playwright/lib/helpers.js +441 -0
- package/bundles/antigravity-plugin/skills/playwright/package.json +26 -0
- package/bundles/antigravity-plugin/skills/playwright/run.js +228 -0
- package/bundles/antigravity-plugin/skills/prd/SKILL.md +107 -0
- package/bundles/antigravity-plugin/skills/preflight/SKILL.md +435 -0
- package/bundles/antigravity-plugin/skills/python/SKILL.md +388 -0
- package/bundles/antigravity-plugin/skills/react-best-practices/SKILL.md +269 -0
- package/bundles/antigravity-plugin/skills/react-dev/README.md +404 -0
- package/bundles/antigravity-plugin/skills/react-dev/SKILL.md +459 -0
- package/bundles/antigravity-plugin/skills/react-dev/examples/generic-components.md +579 -0
- package/bundles/antigravity-plugin/skills/react-dev/examples/server-components.md +579 -0
- package/bundles/antigravity-plugin/skills/react-dev/references/event-handlers.md +574 -0
- package/bundles/antigravity-plugin/skills/react-dev/references/hooks.md +456 -0
- package/bundles/antigravity-plugin/skills/react-dev/references/react-19-patterns.md +638 -0
- package/bundles/antigravity-plugin/skills/react-dev/references/react-router.md +1002 -0
- package/bundles/antigravity-plugin/skills/react-dev/references/tanstack-router.md +587 -0
- package/bundles/antigravity-plugin/skills/refactoring/SKILL.md +486 -0
- package/bundles/antigravity-plugin/skills/resume/SKILL.md +36 -0
- package/bundles/antigravity-plugin/skills/security-review/SKILL.md +196 -0
- package/bundles/antigravity-plugin/skills/setup-project-ai/SKILL.md +61 -0
- package/bundles/antigravity-plugin/skills/ship/SKILL.md +107 -0
- package/bundles/antigravity-plugin/skills/ship-merge/SKILL.md +103 -0
- package/bundles/antigravity-plugin/skills/ship-pr/SKILL.md +102 -0
- package/bundles/antigravity-plugin/skills/skill-creator/LICENSE.txt +202 -0
- package/bundles/antigravity-plugin/skills/skill-creator/SKILL.md +491 -0
- package/bundles/antigravity-plugin/skills/skill-creator/agents/analyzer.md +274 -0
- package/bundles/antigravity-plugin/skills/skill-creator/agents/comparator.md +202 -0
- package/bundles/antigravity-plugin/skills/skill-creator/agents/grader.md +223 -0
- package/bundles/antigravity-plugin/skills/skill-creator/assets/eval_review.html +146 -0
- package/bundles/antigravity-plugin/skills/skill-creator/eval-viewer/generate_review.py +471 -0
- package/bundles/antigravity-plugin/skills/skill-creator/eval-viewer/viewer.html +1325 -0
- package/bundles/antigravity-plugin/skills/skill-creator/references/schemas.md +430 -0
- package/bundles/antigravity-plugin/skills/skill-creator/scripts/__init__.py +0 -0
- package/bundles/antigravity-plugin/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/bundles/antigravity-plugin/skills/skill-creator/scripts/generate_report.py +326 -0
- package/bundles/antigravity-plugin/skills/skill-creator/scripts/improve_description.py +247 -0
- package/bundles/antigravity-plugin/skills/skill-creator/scripts/package_skill.py +136 -0
- package/bundles/antigravity-plugin/skills/skill-creator/scripts/quick_validate.py +103 -0
- package/bundles/antigravity-plugin/skills/skill-creator/scripts/run_eval.py +310 -0
- package/bundles/antigravity-plugin/skills/skill-creator/scripts/run_loop.py +328 -0
- package/bundles/antigravity-plugin/skills/skill-creator/scripts/utils.py +47 -0
- package/bundles/antigravity-plugin/skills/sql/SKILL.md +321 -0
- package/bundles/antigravity-plugin/skills/tdd/SKILL.md +37 -0
- package/bundles/antigravity-plugin/skills/tdd-workflow/SKILL.md +188 -0
- package/bundles/antigravity-plugin/skills/technical-writing/SKILL.md +286 -0
- package/bundles/antigravity-plugin/skills/test-strategy/SKILL.md +155 -0
- package/bundles/antigravity-plugin/skills/ui-brief/SKILL.md +84 -0
- package/bundles/antigravity-plugin/skills/ui-review/SKILL.md +176 -0
- package/bundles/antigravity-plugin/skills/ui-review/references/framework-fixes.md +471 -0
- package/bundles/antigravity-plugin/skills/ui-review/references/visual-checklist.md +236 -0
- package/bundles/antigravity-plugin/skills/usage-review/SKILL.md +77 -0
- package/bundles/antigravity-plugin/skills/use-model/SKILL.md +64 -0
- package/bundles/antigravity-plugin/skills/using-git-worktrees/SKILL.md +217 -0
- package/bundles/antigravity-plugin/skills/version/SKILL.md +18 -0
- package/bundles/antigravity-plugin/skills/warm-editorial-ui/DESIGN_TOKENS.md +487 -0
- package/bundles/antigravity-plugin/skills/warm-editorial-ui/IMPLEMENTATION_GUIDE.md +177 -0
- package/bundles/antigravity-plugin/skills/warm-editorial-ui/SKILL.md +732 -0
- package/bundles/antigravity-plugin/skills/webapp-testing/LICENSE.txt +202 -0
- package/bundles/antigravity-plugin/skills/webapp-testing/SKILL.md +97 -0
- package/bundles/antigravity-plugin/skills/webapp-testing/examples/console_logging.py +35 -0
- package/bundles/antigravity-plugin/skills/webapp-testing/examples/element_discovery.py +40 -0
- package/bundles/antigravity-plugin/skills/webapp-testing/examples/static_html_automation.py +33 -0
- package/bundles/antigravity-plugin/skills/webapp-testing/scripts/with_server.py +106 -0
- package/bundles/antigravity-plugin/skills/windows-deployment/SKILL.md +880 -0
- package/bundles/antigravity-plugin/skills/writing-plans/SKILL.md +384 -0
- package/bundles/antigravity-plugin/statusline-command-agy.sh +91 -0
- package/bundles/antigravity-plugin/warm_start_agy.py +149 -0
- package/bundles/antigravity-plugin-extras/plugin.json +5 -0
- package/bundles/antigravity-plugin-extras/skills/_registry.md +154 -0
- package/bundles/antigravity-plugin-extras/skills/agent-md-refactor/SKILL.md +356 -0
- package/bundles/antigravity-plugin-extras/skills/agent-orchestration/SKILL.md +517 -0
- package/bundles/antigravity-plugin-extras/skills/algorithmic-art/SKILL.md +293 -0
- package/bundles/antigravity-plugin-extras/skills/anchor-review/SKILL.md +135 -0
- package/bundles/antigravity-plugin-extras/skills/api-client-patterns/SKILL.md +367 -0
- package/bundles/antigravity-plugin-extras/skills/architecture-design/SKILL.md +244 -0
- package/bundles/antigravity-plugin-extras/skills/architecture-diagram/SKILL.md +156 -0
- package/bundles/antigravity-plugin-extras/skills/architecture-document/SKILL.md +321 -0
- package/bundles/antigravity-plugin-extras/skills/artifacts-builder/LICENSE.txt +202 -0
- package/bundles/antigravity-plugin-extras/skills/artifacts-builder/SKILL.md +74 -0
- package/bundles/antigravity-plugin-extras/skills/artifacts-builder/scripts/bundle-artifact.sh +54 -0
- package/bundles/antigravity-plugin-extras/skills/artifacts-builder/scripts/init-artifact.sh +322 -0
- package/bundles/antigravity-plugin-extras/skills/artifacts-builder/scripts/shadcn-components.tar.gz +0 -0
- package/bundles/antigravity-plugin-extras/skills/ascii-art/SKILL.md +144 -0
- package/bundles/antigravity-plugin-extras/skills/asking-questions/SKILL.md +81 -0
- package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/SKILL.md +118 -0
- package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/cross-service/credential-management.md +450 -0
- package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/browser/README.md +363 -0
- package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/code-interpreter/README.md +232 -0
- package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/gateway/README.md +100 -0
- package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/gateway/deploy-template.sh +117 -0
- package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/gateway/deployment-strategies.md +416 -0
- package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/gateway/troubleshooting-guide.md +384 -0
- package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/gateway/validate-deployment.sh +186 -0
- package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/identity/README.md +186 -0
- package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/memory/README.md +253 -0
- package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/observability/README.md +517 -0
- package/bundles/antigravity-plugin-extras/skills/aws-agentic-ai/services/runtime/README.md +215 -0
- package/bundles/antigravity-plugin-extras/skills/aws-cdk-development/SKILL.md +279 -0
- package/bundles/antigravity-plugin-extras/skills/aws-cdk-development/references/cdk-patterns.md +431 -0
- package/bundles/antigravity-plugin-extras/skills/aws-cdk-development/scripts/validate-stack.sh +240 -0
- package/bundles/antigravity-plugin-extras/skills/aws-cost-operations/SKILL.md +318 -0
- package/bundles/antigravity-plugin-extras/skills/aws-cost-operations/references/cloudwatch-alarms.md +567 -0
- package/bundles/antigravity-plugin-extras/skills/aws-cost-operations/references/operations-patterns.md +394 -0
- package/bundles/antigravity-plugin-extras/skills/aws-serverless-eda/SKILL.md +758 -0
- package/bundles/antigravity-plugin-extras/skills/aws-serverless-eda/references/deployment-best-practices.md +830 -0
- package/bundles/antigravity-plugin-extras/skills/aws-serverless-eda/references/eda-patterns.md +1002 -0
- package/bundles/antigravity-plugin-extras/skills/aws-serverless-eda/references/observability-best-practices.md +770 -0
- package/bundles/antigravity-plugin-extras/skills/aws-serverless-eda/references/performance-optimization.md +671 -0
- package/bundles/antigravity-plugin-extras/skills/aws-serverless-eda/references/security-best-practices.md +625 -0
- package/bundles/antigravity-plugin-extras/skills/aws-serverless-eda/references/serverless-patterns.md +838 -0
- package/bundles/antigravity-plugin-extras/skills/backend-to-frontend-handoff/SKILL.md +139 -0
- package/bundles/antigravity-plugin-extras/skills/banner-design/SKILL.md +188 -0
- package/bundles/antigravity-plugin-extras/skills/brand-design/SKILL.md +298 -0
- package/bundles/antigravity-plugin-extras/skills/brand-guidelines/LICENSE.txt +202 -0
- package/bundles/antigravity-plugin-extras/skills/brand-guidelines/SKILL.md +118 -0
- package/bundles/antigravity-plugin-extras/skills/brand-voice/SKILL.md +93 -0
- package/bundles/antigravity-plugin-extras/skills/building-ai-agent-on-cloudflare/SKILL.md +392 -0
- package/bundles/antigravity-plugin-extras/skills/building-ai-agent-on-cloudflare/references/agent-patterns.md +461 -0
- package/bundles/antigravity-plugin-extras/skills/building-ai-agent-on-cloudflare/references/examples.md +188 -0
- package/bundles/antigravity-plugin-extras/skills/building-ai-agent-on-cloudflare/references/state-patterns.md +360 -0
- package/bundles/antigravity-plugin-extras/skills/building-ai-agent-on-cloudflare/references/troubleshooting.md +362 -0
- package/bundles/antigravity-plugin-extras/skills/building-mcp-server-on-cloudflare/SKILL.md +266 -0
- package/bundles/antigravity-plugin-extras/skills/building-mcp-server-on-cloudflare/references/examples.md +115 -0
- package/bundles/antigravity-plugin-extras/skills/building-mcp-server-on-cloudflare/references/oauth-setup.md +338 -0
- package/bundles/antigravity-plugin-extras/skills/building-mcp-server-on-cloudflare/references/troubleshooting.md +317 -0
- package/bundles/antigravity-plugin-extras/skills/caching-patterns/SKILL.md +385 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/LICENSE.txt +202 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/SKILL.md +91 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/ArsenalSC-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/BigShoulders-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Boldonse-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Boldonse-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/BricolageGrotesque-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/CrimsonPro-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/DMMono-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/DMMono-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/EricaOne-OFL.txt +94 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/EricaOne-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/GeistMono-Bold.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/GeistMono-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/GeistMono-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Gloock-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Gloock-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/IBMPlexMono-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/InstrumentSans-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Italiana-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Italiana-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/JetBrainsMono-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Jura-Light.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Jura-Medium.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Jura-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/LibreBaskerville-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Lora-Bold.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Lora-Italic.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Lora-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Lora-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/NationalPark-Bold.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/NationalPark-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/NationalPark-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/NothingYouCouldDo-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Outfit-Bold.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Outfit-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Outfit-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/PixelifySans-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/PoiretOne-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/RedHatMono-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Silkscreen-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/SmoochSans-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Tektur-Medium.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Tektur-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/Tektur-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/WorkSans-Bold.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/WorkSans-Italic.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/WorkSans-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/WorkSans-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/YoungSerif-OFL.txt +93 -0
- package/bundles/antigravity-plugin-extras/skills/canvas-design/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- package/bundles/antigravity-plugin-extras/skills/changelog-generator/SKILL.md +105 -0
- package/bundles/antigravity-plugin-extras/skills/code-explainer/SKILL.md +91 -0
- package/bundles/antigravity-plugin-extras/skills/competitive-ads-extractor/SKILL.md +294 -0
- package/bundles/antigravity-plugin-extras/skills/component-testing/SKILL.md +310 -0
- package/bundles/antigravity-plugin-extras/skills/content-research-writer/SKILL.md +539 -0
- package/bundles/antigravity-plugin-extras/skills/cross-review/SKILL.md +51 -0
- package/bundles/antigravity-plugin-extras/skills/data-analysis/SKILL.md +111 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/README.md +248 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/SKILL.md +203 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/adapter.py.template +44 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/api-router.py.template +43 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/contract-test.py.template +384 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/display-dto.py.template +39 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/frontend-service.ts.template +46 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/frontend-types.ts.template +38 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/ingestion-model.py.template +42 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/mapping-doc.md.template +46 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/normalizer.py.template +48 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/prompts/extract_requirements.md +36 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/prompts/extract_ui_demand.md +35 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/prompts/reconcile_mapping.md +66 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/assets/query-catalog.md.template +62 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/references/consumer-driven-contracts.md +131 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/references/drift-check-catalog.md +305 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/references/layer-responsibilities.md +333 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/discover_connections.py +170 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/discover_sources.py +161 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/drift_check.py +171 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/extract_schema.py +1363 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/generate_gap_report.py +81 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/generate_mapping_doc.py +294 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/ts_dto_compare.py +214 -0
- package/bundles/antigravity-plugin-extras/skills/data-contract-pipeline/scripts/validate_lineage.py +51 -0
- package/bundles/antigravity-plugin-extras/skills/data-loader/SKILL.md +753 -0
- package/bundles/antigravity-plugin-extras/skills/data-validation/SKILL.md +220 -0
- package/bundles/antigravity-plugin-extras/skills/db-testing/SKILL.md +117 -0
- package/bundles/antigravity-plugin-extras/skills/deploy-local/SKILL.md +259 -0
- package/bundles/antigravity-plugin-extras/skills/design-md/SKILL.md +167 -0
- package/bundles/antigravity-plugin-extras/skills/design-system-tokens/SKILL.md +240 -0
- package/bundles/antigravity-plugin-extras/skills/design-system-tokens/references/DESIGN-SYSTEM-TEMPLATE.md +577 -0
- package/bundles/antigravity-plugin-extras/skills/developer-growth-analysis/SKILL.md +323 -0
- package/bundles/antigravity-plugin-extras/skills/doc-coauthoring/SKILL.md +378 -0
- package/bundles/antigravity-plugin-extras/skills/documentation-analyzer/SKILL.md +78 -0
- package/bundles/antigravity-plugin-extras/skills/domain-name-brainstormer/SKILL.md +213 -0
- package/bundles/antigravity-plugin-extras/skills/enterprise-dashboard-aesthetic-system/SKILL.md +120 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/SKILL.md +193 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/references/element-types.md +497 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/references/excalidraw-schema.md +356 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/references/reliable-diagrams.md +115 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/scripts/README.md +60 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/scripts/add-arrow.py +354 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/scripts/add-icon-to-diagram.py +412 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/scripts/split-excalidraw-library.py +183 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/business-flow-swimlane-template.excalidraw +334 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/class-diagram-template.excalidraw +558 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/data-flow-diagram-template.excalidraw +279 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/er-diagram-template.excalidraw +662 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/flowchart-template.excalidraw +179 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/mindmap-template.excalidraw +244 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/relationship-template.excalidraw +145 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/reliable-flowchart.excalidraw +1 -0
- package/bundles/antigravity-plugin-extras/skills/excalidraw/templates/sequence-diagram-template.excalidraw +509 -0
- package/bundles/antigravity-plugin-extras/skills/file-organizer/SKILL.md +434 -0
- package/bundles/antigravity-plugin-extras/skills/game-changing-features/README.md +221 -0
- package/bundles/antigravity-plugin-extras/skills/game-changing-features/SKILL.md +265 -0
- package/bundles/antigravity-plugin-extras/skills/github-issues/SKILL.md +359 -0
- package/bundles/antigravity-plugin-extras/skills/github-issues/references/templates.md +90 -0
- package/bundles/antigravity-plugin-extras/skills/golden-nuggets/SKILL.md +192 -0
- package/bundles/antigravity-plugin-extras/skills/humanizer/SKILL.md +194 -0
- package/bundles/antigravity-plugin-extras/skills/image-enhancer/SKILL.md +100 -0
- package/bundles/antigravity-plugin-extras/skills/intent-writer/SKILL.md +201 -0
- package/bundles/antigravity-plugin-extras/skills/internal-comms/LICENSE.txt +202 -0
- package/bundles/antigravity-plugin-extras/skills/internal-comms/SKILL.md +124 -0
- package/bundles/antigravity-plugin-extras/skills/internal-comms/examples/3p-updates.md +47 -0
- package/bundles/antigravity-plugin-extras/skills/internal-comms/examples/company-newsletter.md +65 -0
- package/bundles/antigravity-plugin-extras/skills/internal-comms/examples/faq-answers.md +30 -0
- package/bundles/antigravity-plugin-extras/skills/internal-comms/examples/general-comms.md +16 -0
- package/bundles/antigravity-plugin-extras/skills/invoice-organizer/SKILL.md +447 -0
- package/bundles/antigravity-plugin-extras/skills/jira-issues/SKILL.md +182 -0
- package/bundles/antigravity-plugin-extras/skills/job-application/SKILL.md +188 -0
- package/bundles/antigravity-plugin-extras/skills/lead-research-assistant/SKILL.md +200 -0
- package/bundles/antigravity-plugin-extras/skills/llm-application-dev/SKILL.md +217 -0
- package/bundles/antigravity-plugin-extras/skills/mcp-builder/LICENSE.txt +202 -0
- package/bundles/antigravity-plugin-extras/skills/mcp-builder/SKILL.md +100 -0
- package/bundles/antigravity-plugin-extras/skills/mcp-builder/references/evaluation.md +602 -0
- package/bundles/antigravity-plugin-extras/skills/mcp-builder/references/mcp_best_practices.md +915 -0
- package/bundles/antigravity-plugin-extras/skills/mcp-builder/references/node_mcp_server.md +916 -0
- package/bundles/antigravity-plugin-extras/skills/mcp-builder/references/python_mcp_server.md +752 -0
- package/bundles/antigravity-plugin-extras/skills/mcp-builder/scripts/connections.py +151 -0
- package/bundles/antigravity-plugin-extras/skills/mcp-builder/scripts/evaluation.py +373 -0
- package/bundles/antigravity-plugin-extras/skills/mcp-builder/scripts/example_evaluation.xml +22 -0
- package/bundles/antigravity-plugin-extras/skills/mcp-builder/scripts/requirements.txt +2 -0
- package/bundles/antigravity-plugin-extras/skills/meeting-insights-analyzer/SKILL.md +328 -0
- package/bundles/antigravity-plugin-extras/skills/monorepo/SKILL.md +267 -0
- package/bundles/antigravity-plugin-extras/skills/naming-analyzer/SKILL.md +376 -0
- package/bundles/antigravity-plugin-extras/skills/nextjs-app-router/SKILL.md +271 -0
- package/bundles/antigravity-plugin-extras/skills/notebooklm/AUTHENTICATION.md +154 -0
- package/bundles/antigravity-plugin-extras/skills/notebooklm/SKILL.md +270 -0
- package/bundles/antigravity-plugin-extras/skills/notebooklm/references/api_reference.md +309 -0
- package/bundles/antigravity-plugin-extras/skills/notebooklm/references/troubleshooting.md +376 -0
- package/bundles/antigravity-plugin-extras/skills/notebooklm/references/usage_patterns.md +338 -0
- package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/__init__.py +81 -0
- package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/ask_question.py +256 -0
- package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/auth_manager.py +358 -0
- package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/browser_session.py +255 -0
- package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/browser_utils.py +107 -0
- package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/cleanup_manager.py +302 -0
- package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/config.py +44 -0
- package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/notebook_manager.py +410 -0
- package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/run.py +102 -0
- package/bundles/antigravity-plugin-extras/skills/notebooklm/scripts/setup_environment.py +204 -0
- package/bundles/antigravity-plugin-extras/skills/observability/SKILL.md +371 -0
- package/bundles/antigravity-plugin-extras/skills/onboard-project/SKILL.md +192 -0
- package/bundles/antigravity-plugin-extras/skills/performance-testing/SKILL.md +226 -0
- package/bundles/antigravity-plugin-extras/skills/pipeline-state/SKILL.md +208 -0
- package/bundles/antigravity-plugin-extras/skills/plantuml/SKILL.md +228 -0
- package/bundles/antigravity-plugin-extras/skills/popular-web-designs/SKILL.md +142 -0
- package/bundles/antigravity-plugin-extras/skills/popular-web-designs/templates/linear.app.md +196 -0
- package/bundles/antigravity-plugin-extras/skills/popular-web-designs/templates/stripe.md +214 -0
- package/bundles/antigravity-plugin-extras/skills/popular-web-designs/templates/vercel.md +218 -0
- package/bundles/antigravity-plugin-extras/skills/prd-to-code/SKILL.md +127 -0
- package/bundles/antigravity-plugin-extras/skills/raffle-winner-picker/SKILL.md +159 -0
- package/bundles/antigravity-plugin-extras/skills/react-useeffect/README.md +320 -0
- package/bundles/antigravity-plugin-extras/skills/react-useeffect/SKILL.md +53 -0
- package/bundles/antigravity-plugin-extras/skills/react-useeffect/alternatives.md +258 -0
- package/bundles/antigravity-plugin-extras/skills/react-useeffect/anti-patterns.md +290 -0
- package/bundles/antigravity-plugin-extras/skills/receiving-code-review/SKILL.md +213 -0
- package/bundles/antigravity-plugin-extras/skills/relay/SKILL.md +246 -0
- package/bundles/antigravity-plugin-extras/skills/requesting-code-review/SKILL.md +105 -0
- package/bundles/antigravity-plugin-extras/skills/requesting-code-review/code-reviewer.md +146 -0
- package/bundles/antigravity-plugin-extras/skills/responsive-mobile-native/SKILL.md +350 -0
- package/bundles/antigravity-plugin-extras/skills/responsive-mobile-native/references/pwa-checklist.md +226 -0
- package/bundles/antigravity-plugin-extras/skills/responsive-mobile-native/references/touch-and-interaction.md +265 -0
- package/bundles/antigravity-plugin-extras/skills/responsive-mobile-native/references/transformation-catalogue.md +326 -0
- package/bundles/antigravity-plugin-extras/skills/schema-migration/SKILL.md +275 -0
- package/bundles/antigravity-plugin-extras/skills/setup-project-ai/SKILL.md +120 -0
- package/bundles/antigravity-plugin-extras/skills/shadcn-radix/SKILL.md +330 -0
- package/bundles/antigravity-plugin-extras/skills/sketch/SKILL.md +104 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/LICENSE.txt +202 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/SKILL.md +646 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/core/color_palettes.py +302 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/core/easing.py +230 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/core/frame_composer.py +469 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/core/gif_builder.py +246 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/core/typography.py +357 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/core/validators.py +264 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/core/visual_effects.py +494 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/requirements.txt +4 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/bounce.py +106 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/explode.py +331 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/fade.py +329 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/flip.py +291 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/kaleidoscope.py +211 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/morph.py +329 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/move.py +293 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/pulse.py +268 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/shake.py +127 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/slide.py +291 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/spin.py +269 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/wiggle.py +300 -0
- package/bundles/antigravity-plugin-extras/skills/slack-gif-creator/templates/zoom.py +312 -0
- package/bundles/antigravity-plugin-extras/skills/slides/SKILL.md +38 -0
- package/bundles/antigravity-plugin-extras/skills/state-tracking/SKILL.md +131 -0
- package/bundles/antigravity-plugin-extras/skills/streamlit-dev/SKILL.md +268 -0
- package/bundles/antigravity-plugin-extras/skills/svg-create/SKILL.md +251 -0
- package/bundles/antigravity-plugin-extras/skills/theme-factory/LICENSE.txt +202 -0
- package/bundles/antigravity-plugin-extras/skills/theme-factory/SKILL.md +59 -0
- package/bundles/antigravity-plugin-extras/skills/theme-factory/theme-showcase.pdf +0 -0
- package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/arctic-frost.md +19 -0
- package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/botanical-garden.md +19 -0
- package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/desert-rose.md +19 -0
- package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/forest-canopy.md +19 -0
- package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/golden-hour.md +19 -0
- package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/midnight-galaxy.md +19 -0
- package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/modern-minimalist.md +19 -0
- package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/ocean-depths.md +19 -0
- package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/sunset-boulevard.md +19 -0
- package/bundles/antigravity-plugin-extras/skills/theme-factory/themes/tech-innovation.md +19 -0
- package/bundles/antigravity-plugin-extras/skills/ui-styling-patterns/LICENSE.txt +202 -0
- package/bundles/antigravity-plugin-extras/skills/ui-styling-patterns/SKILL.md +320 -0
- package/bundles/antigravity-plugin-extras/skills/ui-testing/SKILL.md +660 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/SKILL.md +660 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/_sync_all.py +414 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/app-interface.csv +31 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/charts.csv +26 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/colors.csv +162 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/design.csv +1776 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/draft.csv +1779 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/google-fonts.csv +1924 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/icons.csv +106 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/landing.csv +35 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/products.csv +162 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/react-performance.csv +45 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/styles.csv +85 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/typography.csv +74 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/ui-reasoning.csv +162 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/data/ux-guidelines.csv +100 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/scripts/core.py +247 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/scripts/design_system.py +1067 -0
- package/bundles/antigravity-plugin-extras/skills/ui-ux-intelligence/scripts/search.py +114 -0
- package/bundles/antigravity-plugin-extras/skills/understand-anything/SKILL.md +140 -0
- package/bundles/antigravity-plugin-extras/skills/understand-anything/references/commands.md +252 -0
- package/bundles/antigravity-plugin-extras/skills/understand-anything/references/graph-schema.md +116 -0
- package/bundles/antigravity-plugin-extras/skills/understand-anything/references/pipeline.md +331 -0
- package/bundles/antigravity-plugin-extras/skills/update-readme/SKILL.md +74 -0
- package/bundles/antigravity-plugin-extras/skills/verification-loop/SKILL.md +209 -0
- package/bundles/antigravity-plugin-extras/skills/video-downloader/SKILL.md +107 -0
- package/bundles/antigravity-plugin-extras/skills/webapp-development/SKILL.md +288 -0
- package/bundles/antigravity-plugin-extras/skills/word-cloud/SKILL.md +339 -0
- package/bundles/antigravity-plugin-extras/skills/word-cloud/agents/agent-interface.md +175 -0
- package/bundles/antigravity-plugin-extras/skills/word-cloud/references/html.md +384 -0
- package/bundles/antigravity-plugin-extras/skills/word-cloud/references/nlp-keywords.md +127 -0
- package/bundles/antigravity-plugin-extras/skills/word-cloud/references/palettes.md +149 -0
- package/bundles/antigravity-plugin-extras/skills/word-cloud/references/python.md +249 -0
- package/bundles/antigravity-plugin-extras/skills/word-cloud/references/react.md +427 -0
- package/bundles/antigravity-plugin-extras/skills/word-cloud/references/shapes.md +135 -0
- package/bundles/antigravity-plugin-extras/skills/word-cloud/references/stopwords.md +115 -0
- package/bundles/antigravity-plugin-extras/skills/youtube-transcript/SKILL.md +416 -0
- package/bundles/manifest.json +7 -0
- package/dist/cli.js +5492 -0
- package/package.json +61 -4
|
@@ -0,0 +1,646 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: slack-gif-creator
|
|
3
|
+
description: Toolkit for creating animated GIFs optimized for Slack, with validators for size constraints and composable animation primitives. This skill applies when users request animated GIFs or emoji animations for Slack from descriptions like "make me a GIF for Slack of X doing Y".
|
|
4
|
+
license: Complete terms in LICENSE.txt
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Slack GIF Creator - Flexible Toolkit
|
|
8
|
+
|
|
9
|
+
A toolkit for creating animated GIFs optimized for Slack. Provides validators for Slack's constraints, composable animation primitives, and optional helper utilities. **Apply these tools however needed to achieve the creative vision.**
|
|
10
|
+
|
|
11
|
+
## Slack's Requirements
|
|
12
|
+
|
|
13
|
+
Slack has specific requirements for GIFs based on their use:
|
|
14
|
+
|
|
15
|
+
**Message GIFs:**
|
|
16
|
+
- Max size: ~2MB
|
|
17
|
+
- Optimal dimensions: 480x480
|
|
18
|
+
- Typical FPS: 15-20
|
|
19
|
+
- Color limit: 128-256
|
|
20
|
+
- Duration: 2-5s
|
|
21
|
+
|
|
22
|
+
**Emoji GIFs:**
|
|
23
|
+
- Max size: 64KB (strict limit)
|
|
24
|
+
- Optimal dimensions: 128x128
|
|
25
|
+
- Typical FPS: 10-12
|
|
26
|
+
- Color limit: 32-48
|
|
27
|
+
- Duration: 1-2s
|
|
28
|
+
|
|
29
|
+
**Emoji GIFs are challenging** - the 64KB limit is strict. Strategies that help:
|
|
30
|
+
- Limit to 10-15 frames total
|
|
31
|
+
- Use 32-48 colors maximum
|
|
32
|
+
- Keep designs simple
|
|
33
|
+
- Avoid gradients
|
|
34
|
+
- Validate file size frequently
|
|
35
|
+
|
|
36
|
+
## Toolkit Structure
|
|
37
|
+
|
|
38
|
+
This skill provides three types of tools:
|
|
39
|
+
|
|
40
|
+
1. **Validators** - Check if a GIF meets Slack's requirements
|
|
41
|
+
2. **Animation Primitives** - Composable building blocks for motion (shake, bounce, move, kaleidoscope)
|
|
42
|
+
3. **Helper Utilities** - Optional functions for common needs (text, colors, effects)
|
|
43
|
+
|
|
44
|
+
**Complete creative freedom is available in how these tools are applied.**
|
|
45
|
+
|
|
46
|
+
## Core Validators
|
|
47
|
+
|
|
48
|
+
To ensure a GIF meets Slack's constraints, use these validators:
|
|
49
|
+
|
|
50
|
+
```python
|
|
51
|
+
from core.gif_builder import GIFBuilder
|
|
52
|
+
|
|
53
|
+
# After creating your GIF, check if it meets requirements
|
|
54
|
+
builder = GIFBuilder(width=128, height=128, fps=10)
|
|
55
|
+
# ... add your frames however you want ...
|
|
56
|
+
|
|
57
|
+
# Save and check size
|
|
58
|
+
info = builder.save('emoji.gif', num_colors=48, optimize_for_emoji=True)
|
|
59
|
+
|
|
60
|
+
# The save method automatically warns if file exceeds limits
|
|
61
|
+
# info dict contains: size_kb, size_mb, frame_count, duration_seconds
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
**File size validator**:
|
|
65
|
+
```python
|
|
66
|
+
from core.validators import check_slack_size
|
|
67
|
+
|
|
68
|
+
# Check if GIF meets size limits
|
|
69
|
+
passes, info = check_slack_size('emoji.gif', is_emoji=True)
|
|
70
|
+
# Returns: (True/False, dict with size details)
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
**Dimension validator**:
|
|
74
|
+
```python
|
|
75
|
+
from core.validators import validate_dimensions
|
|
76
|
+
|
|
77
|
+
# Check dimensions
|
|
78
|
+
passes, info = validate_dimensions(128, 128, is_emoji=True)
|
|
79
|
+
# Returns: (True/False, dict with dimension details)
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
**Complete validation**:
|
|
83
|
+
```python
|
|
84
|
+
from core.validators import validate_gif, is_slack_ready
|
|
85
|
+
|
|
86
|
+
# Run all validations
|
|
87
|
+
all_pass, results = validate_gif('emoji.gif', is_emoji=True)
|
|
88
|
+
|
|
89
|
+
# Or quick check
|
|
90
|
+
if is_slack_ready('emoji.gif', is_emoji=True):
|
|
91
|
+
print("Ready to upload!")
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
## Animation Primitives
|
|
95
|
+
|
|
96
|
+
These are composable building blocks for motion. Apply these to any object in any combination:
|
|
97
|
+
|
|
98
|
+
### Shake
|
|
99
|
+
```python
|
|
100
|
+
from templates.shake import create_shake_animation
|
|
101
|
+
|
|
102
|
+
# Shake an emoji
|
|
103
|
+
frames = create_shake_animation(
|
|
104
|
+
object_type='emoji',
|
|
105
|
+
object_data={'emoji': '😱', 'size': 80},
|
|
106
|
+
num_frames=20,
|
|
107
|
+
shake_intensity=15,
|
|
108
|
+
direction='both' # or 'horizontal', 'vertical'
|
|
109
|
+
)
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
### Bounce
|
|
113
|
+
```python
|
|
114
|
+
from templates.bounce import create_bounce_animation
|
|
115
|
+
|
|
116
|
+
# Bounce a circle
|
|
117
|
+
frames = create_bounce_animation(
|
|
118
|
+
object_type='circle',
|
|
119
|
+
object_data={'radius': 40, 'color': (255, 100, 100)},
|
|
120
|
+
num_frames=30,
|
|
121
|
+
bounce_height=150
|
|
122
|
+
)
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
### Spin / Rotate
|
|
126
|
+
```python
|
|
127
|
+
from templates.spin import create_spin_animation, create_loading_spinner
|
|
128
|
+
|
|
129
|
+
# Clockwise spin
|
|
130
|
+
frames = create_spin_animation(
|
|
131
|
+
object_type='emoji',
|
|
132
|
+
object_data={'emoji': '🔄', 'size': 100},
|
|
133
|
+
rotation_type='clockwise',
|
|
134
|
+
full_rotations=2
|
|
135
|
+
)
|
|
136
|
+
|
|
137
|
+
# Wobble rotation
|
|
138
|
+
frames = create_spin_animation(rotation_type='wobble', full_rotations=3)
|
|
139
|
+
|
|
140
|
+
# Loading spinner
|
|
141
|
+
frames = create_loading_spinner(spinner_type='dots')
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
### Pulse / Heartbeat
|
|
145
|
+
```python
|
|
146
|
+
from templates.pulse import create_pulse_animation, create_attention_pulse
|
|
147
|
+
|
|
148
|
+
# Smooth pulse
|
|
149
|
+
frames = create_pulse_animation(
|
|
150
|
+
object_data={'emoji': '❤️', 'size': 100},
|
|
151
|
+
pulse_type='smooth',
|
|
152
|
+
scale_range=(0.8, 1.2)
|
|
153
|
+
)
|
|
154
|
+
|
|
155
|
+
# Heartbeat (double-pump)
|
|
156
|
+
frames = create_pulse_animation(pulse_type='heartbeat')
|
|
157
|
+
|
|
158
|
+
# Attention pulse for emoji GIFs
|
|
159
|
+
frames = create_attention_pulse(emoji='⚠️', num_frames=20)
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
### Fade
|
|
163
|
+
```python
|
|
164
|
+
from templates.fade import create_fade_animation, create_crossfade
|
|
165
|
+
|
|
166
|
+
# Fade in
|
|
167
|
+
frames = create_fade_animation(fade_type='in')
|
|
168
|
+
|
|
169
|
+
# Fade out
|
|
170
|
+
frames = create_fade_animation(fade_type='out')
|
|
171
|
+
|
|
172
|
+
# Crossfade between two emojis
|
|
173
|
+
frames = create_crossfade(
|
|
174
|
+
object1_data={'emoji': '😊', 'size': 100},
|
|
175
|
+
object2_data={'emoji': '😂', 'size': 100}
|
|
176
|
+
)
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
### Zoom
|
|
180
|
+
```python
|
|
181
|
+
from templates.zoom import create_zoom_animation, create_explosion_zoom
|
|
182
|
+
|
|
183
|
+
# Zoom in dramatically
|
|
184
|
+
frames = create_zoom_animation(
|
|
185
|
+
zoom_type='in',
|
|
186
|
+
scale_range=(0.1, 2.0),
|
|
187
|
+
add_motion_blur=True
|
|
188
|
+
)
|
|
189
|
+
|
|
190
|
+
# Zoom out
|
|
191
|
+
frames = create_zoom_animation(zoom_type='out')
|
|
192
|
+
|
|
193
|
+
# Explosion zoom
|
|
194
|
+
frames = create_explosion_zoom(emoji='💥')
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
### Explode / Shatter
|
|
198
|
+
```python
|
|
199
|
+
from templates.explode import create_explode_animation, create_particle_burst
|
|
200
|
+
|
|
201
|
+
# Burst explosion
|
|
202
|
+
frames = create_explode_animation(
|
|
203
|
+
explode_type='burst',
|
|
204
|
+
num_pieces=25
|
|
205
|
+
)
|
|
206
|
+
|
|
207
|
+
# Shatter effect
|
|
208
|
+
frames = create_explode_animation(explode_type='shatter')
|
|
209
|
+
|
|
210
|
+
# Dissolve into particles
|
|
211
|
+
frames = create_explode_animation(explode_type='dissolve')
|
|
212
|
+
|
|
213
|
+
# Particle burst
|
|
214
|
+
frames = create_particle_burst(particle_count=30)
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
### Wiggle / Jiggle
|
|
218
|
+
```python
|
|
219
|
+
from templates.wiggle import create_wiggle_animation, create_excited_wiggle
|
|
220
|
+
|
|
221
|
+
# Jello wobble
|
|
222
|
+
frames = create_wiggle_animation(
|
|
223
|
+
wiggle_type='jello',
|
|
224
|
+
intensity=1.0,
|
|
225
|
+
cycles=2
|
|
226
|
+
)
|
|
227
|
+
|
|
228
|
+
# Wave motion
|
|
229
|
+
frames = create_wiggle_animation(wiggle_type='wave')
|
|
230
|
+
|
|
231
|
+
# Excited wiggle for emoji GIFs
|
|
232
|
+
frames = create_excited_wiggle(emoji='🎉')
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
### Slide
|
|
236
|
+
```python
|
|
237
|
+
from templates.slide import create_slide_animation, create_multi_slide
|
|
238
|
+
|
|
239
|
+
# Slide in from left with overshoot
|
|
240
|
+
frames = create_slide_animation(
|
|
241
|
+
direction='left',
|
|
242
|
+
slide_type='in',
|
|
243
|
+
overshoot=True
|
|
244
|
+
)
|
|
245
|
+
|
|
246
|
+
# Slide across
|
|
247
|
+
frames = create_slide_animation(direction='left', slide_type='across')
|
|
248
|
+
|
|
249
|
+
# Multiple objects sliding in sequence
|
|
250
|
+
objects = [
|
|
251
|
+
{'data': {'emoji': '🎯', 'size': 60}, 'direction': 'left', 'final_pos': (120, 240)},
|
|
252
|
+
{'data': {'emoji': '🎪', 'size': 60}, 'direction': 'right', 'final_pos': (240, 240)}
|
|
253
|
+
]
|
|
254
|
+
frames = create_multi_slide(objects, stagger_delay=5)
|
|
255
|
+
```
|
|
256
|
+
|
|
257
|
+
### Flip
|
|
258
|
+
```python
|
|
259
|
+
from templates.flip import create_flip_animation, create_quick_flip
|
|
260
|
+
|
|
261
|
+
# Horizontal flip between two emojis
|
|
262
|
+
frames = create_flip_animation(
|
|
263
|
+
object1_data={'emoji': '😊', 'size': 120},
|
|
264
|
+
object2_data={'emoji': '😂', 'size': 120},
|
|
265
|
+
flip_axis='horizontal'
|
|
266
|
+
)
|
|
267
|
+
|
|
268
|
+
# Vertical flip
|
|
269
|
+
frames = create_flip_animation(flip_axis='vertical')
|
|
270
|
+
|
|
271
|
+
# Quick flip for emoji GIFs
|
|
272
|
+
frames = create_quick_flip('👍', '👎')
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
### Morph / Transform
|
|
276
|
+
```python
|
|
277
|
+
from templates.morph import create_morph_animation, create_reaction_morph
|
|
278
|
+
|
|
279
|
+
# Crossfade morph
|
|
280
|
+
frames = create_morph_animation(
|
|
281
|
+
object1_data={'emoji': '😊', 'size': 100},
|
|
282
|
+
object2_data={'emoji': '😂', 'size': 100},
|
|
283
|
+
morph_type='crossfade'
|
|
284
|
+
)
|
|
285
|
+
|
|
286
|
+
# Scale morph (shrink while other grows)
|
|
287
|
+
frames = create_morph_animation(morph_type='scale')
|
|
288
|
+
|
|
289
|
+
# Spin morph (3D flip-like)
|
|
290
|
+
frames = create_morph_animation(morph_type='spin_morph')
|
|
291
|
+
```
|
|
292
|
+
|
|
293
|
+
### Move Effect
|
|
294
|
+
```python
|
|
295
|
+
from templates.move import create_move_animation
|
|
296
|
+
|
|
297
|
+
# Linear movement
|
|
298
|
+
frames = create_move_animation(
|
|
299
|
+
object_type='emoji',
|
|
300
|
+
object_data={'emoji': '🚀', 'size': 60},
|
|
301
|
+
start_pos=(50, 240),
|
|
302
|
+
end_pos=(430, 240),
|
|
303
|
+
motion_type='linear',
|
|
304
|
+
easing='ease_out'
|
|
305
|
+
)
|
|
306
|
+
|
|
307
|
+
# Arc movement (parabolic trajectory)
|
|
308
|
+
frames = create_move_animation(
|
|
309
|
+
object_type='emoji',
|
|
310
|
+
object_data={'emoji': '⚽', 'size': 60},
|
|
311
|
+
start_pos=(50, 350),
|
|
312
|
+
end_pos=(430, 350),
|
|
313
|
+
motion_type='arc',
|
|
314
|
+
motion_params={'arc_height': 150}
|
|
315
|
+
)
|
|
316
|
+
|
|
317
|
+
# Circular movement
|
|
318
|
+
frames = create_move_animation(
|
|
319
|
+
object_type='emoji',
|
|
320
|
+
object_data={'emoji': '🌍', 'size': 50},
|
|
321
|
+
motion_type='circle',
|
|
322
|
+
motion_params={
|
|
323
|
+
'center': (240, 240),
|
|
324
|
+
'radius': 120,
|
|
325
|
+
'angle_range': 360 # full circle
|
|
326
|
+
}
|
|
327
|
+
)
|
|
328
|
+
|
|
329
|
+
# Wave movement
|
|
330
|
+
frames = create_move_animation(
|
|
331
|
+
motion_type='wave',
|
|
332
|
+
motion_params={
|
|
333
|
+
'wave_amplitude': 50,
|
|
334
|
+
'wave_frequency': 2
|
|
335
|
+
}
|
|
336
|
+
)
|
|
337
|
+
|
|
338
|
+
# Or use low-level easing functions
|
|
339
|
+
from core.easing import interpolate, calculate_arc_motion
|
|
340
|
+
|
|
341
|
+
for i in range(num_frames):
|
|
342
|
+
t = i / (num_frames - 1)
|
|
343
|
+
x = interpolate(start_x, end_x, t, easing='ease_out')
|
|
344
|
+
# Or: x, y = calculate_arc_motion(start, end, height, t)
|
|
345
|
+
```
|
|
346
|
+
|
|
347
|
+
### Kaleidoscope Effect
|
|
348
|
+
```python
|
|
349
|
+
from templates.kaleidoscope import apply_kaleidoscope, create_kaleidoscope_animation
|
|
350
|
+
|
|
351
|
+
# Apply to a single frame
|
|
352
|
+
kaleido_frame = apply_kaleidoscope(frame, segments=8)
|
|
353
|
+
|
|
354
|
+
# Or create animated kaleidoscope
|
|
355
|
+
frames = create_kaleidoscope_animation(
|
|
356
|
+
base_frame=my_frame, # or None for demo pattern
|
|
357
|
+
num_frames=30,
|
|
358
|
+
segments=8,
|
|
359
|
+
rotation_speed=1.0
|
|
360
|
+
)
|
|
361
|
+
|
|
362
|
+
# Simple mirror effects (faster)
|
|
363
|
+
from templates.kaleidoscope import apply_simple_mirror
|
|
364
|
+
|
|
365
|
+
mirrored = apply_simple_mirror(frame, mode='quad') # 4-way mirror
|
|
366
|
+
# modes: 'horizontal', 'vertical', 'quad', 'radial'
|
|
367
|
+
```
|
|
368
|
+
|
|
369
|
+
**To compose primitives freely, follow these patterns:**
|
|
370
|
+
```python
|
|
371
|
+
# Example: Bounce + shake for impact
|
|
372
|
+
for i in range(num_frames):
|
|
373
|
+
frame = create_blank_frame(480, 480, bg_color)
|
|
374
|
+
|
|
375
|
+
# Bounce motion
|
|
376
|
+
t_bounce = i / (num_frames - 1)
|
|
377
|
+
y = interpolate(start_y, ground_y, t_bounce, 'bounce_out')
|
|
378
|
+
|
|
379
|
+
# Add shake on impact (when y reaches ground)
|
|
380
|
+
if y >= ground_y - 5:
|
|
381
|
+
shake_x = math.sin(i * 2) * 10
|
|
382
|
+
x = center_x + shake_x
|
|
383
|
+
else:
|
|
384
|
+
x = center_x
|
|
385
|
+
|
|
386
|
+
draw_emoji(frame, '⚽', (x, y), size=60)
|
|
387
|
+
builder.add_frame(frame)
|
|
388
|
+
```
|
|
389
|
+
|
|
390
|
+
## Helper Utilities
|
|
391
|
+
|
|
392
|
+
These are optional helpers for common needs. **Use, modify, or replace these with custom implementations as needed.**
|
|
393
|
+
|
|
394
|
+
### GIF Builder (Assembly & Optimization)
|
|
395
|
+
|
|
396
|
+
```python
|
|
397
|
+
from core.gif_builder import GIFBuilder
|
|
398
|
+
|
|
399
|
+
# Create builder with your chosen settings
|
|
400
|
+
builder = GIFBuilder(width=480, height=480, fps=20)
|
|
401
|
+
|
|
402
|
+
# Add frames (however you created them)
|
|
403
|
+
for frame in my_frames:
|
|
404
|
+
builder.add_frame(frame)
|
|
405
|
+
|
|
406
|
+
# Save with optimization
|
|
407
|
+
builder.save('output.gif',
|
|
408
|
+
num_colors=128,
|
|
409
|
+
optimize_for_emoji=False)
|
|
410
|
+
```
|
|
411
|
+
|
|
412
|
+
Key features:
|
|
413
|
+
- Automatic color quantization
|
|
414
|
+
- Duplicate frame removal
|
|
415
|
+
- Size warnings for Slack limits
|
|
416
|
+
- Emoji mode (aggressive optimization)
|
|
417
|
+
|
|
418
|
+
### Text Rendering
|
|
419
|
+
|
|
420
|
+
For small GIFs like emojis, text readability is challenging. A common solution involves adding outlines:
|
|
421
|
+
|
|
422
|
+
```python
|
|
423
|
+
from core.typography import draw_text_with_outline, TYPOGRAPHY_SCALE
|
|
424
|
+
|
|
425
|
+
# Text with outline (helps readability)
|
|
426
|
+
draw_text_with_outline(
|
|
427
|
+
frame, "BONK!",
|
|
428
|
+
position=(240, 100),
|
|
429
|
+
font_size=TYPOGRAPHY_SCALE['h1'], # 60px
|
|
430
|
+
text_color=(255, 68, 68),
|
|
431
|
+
outline_color=(0, 0, 0),
|
|
432
|
+
outline_width=4,
|
|
433
|
+
centered=True
|
|
434
|
+
)
|
|
435
|
+
```
|
|
436
|
+
|
|
437
|
+
To implement custom text rendering, use PIL's `ImageDraw.text()` which works fine for larger GIFs.
|
|
438
|
+
|
|
439
|
+
### Color Management
|
|
440
|
+
|
|
441
|
+
Professional-looking GIFs often use cohesive color palettes:
|
|
442
|
+
|
|
443
|
+
```python
|
|
444
|
+
from core.color_palettes import get_palette
|
|
445
|
+
|
|
446
|
+
# Get a pre-made palette
|
|
447
|
+
palette = get_palette('vibrant') # or 'pastel', 'dark', 'neon', 'professional'
|
|
448
|
+
|
|
449
|
+
bg_color = palette['background']
|
|
450
|
+
text_color = palette['primary']
|
|
451
|
+
accent_color = palette['accent']
|
|
452
|
+
```
|
|
453
|
+
|
|
454
|
+
To work with colors directly, use RGB tuples - whatever works for the use case.
|
|
455
|
+
|
|
456
|
+
### Visual Effects
|
|
457
|
+
|
|
458
|
+
Optional effects for impact moments:
|
|
459
|
+
|
|
460
|
+
```python
|
|
461
|
+
from core.visual_effects import ParticleSystem, create_impact_flash, create_shockwave_rings
|
|
462
|
+
|
|
463
|
+
# Particle system
|
|
464
|
+
particles = ParticleSystem()
|
|
465
|
+
particles.emit_sparkles(x=240, y=200, count=15)
|
|
466
|
+
particles.emit_confetti(x=240, y=200, count=20)
|
|
467
|
+
|
|
468
|
+
# Update and render each frame
|
|
469
|
+
particles.update()
|
|
470
|
+
particles.render(frame)
|
|
471
|
+
|
|
472
|
+
# Flash effect
|
|
473
|
+
frame = create_impact_flash(frame, position=(240, 200), radius=100)
|
|
474
|
+
|
|
475
|
+
# Shockwave rings
|
|
476
|
+
frame = create_shockwave_rings(frame, position=(240, 200), radii=[30, 60, 90])
|
|
477
|
+
```
|
|
478
|
+
|
|
479
|
+
### Easing Functions
|
|
480
|
+
|
|
481
|
+
Smooth motion uses easing instead of linear interpolation:
|
|
482
|
+
|
|
483
|
+
```python
|
|
484
|
+
from core.easing import interpolate
|
|
485
|
+
|
|
486
|
+
# Object falling (accelerates)
|
|
487
|
+
y = interpolate(start=0, end=400, t=progress, easing='ease_in')
|
|
488
|
+
|
|
489
|
+
# Object landing (decelerates)
|
|
490
|
+
y = interpolate(start=0, end=400, t=progress, easing='ease_out')
|
|
491
|
+
|
|
492
|
+
# Bouncing
|
|
493
|
+
y = interpolate(start=0, end=400, t=progress, easing='bounce_out')
|
|
494
|
+
|
|
495
|
+
# Overshoot (elastic)
|
|
496
|
+
scale = interpolate(start=0.5, end=1.0, t=progress, easing='elastic_out')
|
|
497
|
+
```
|
|
498
|
+
|
|
499
|
+
Available easings: `linear`, `ease_in`, `ease_out`, `ease_in_out`, `bounce_out`, `elastic_out`, `back_out` (overshoot), and more in `core/easing.py`.
|
|
500
|
+
|
|
501
|
+
### Frame Composition
|
|
502
|
+
|
|
503
|
+
Basic drawing utilities if you need them:
|
|
504
|
+
|
|
505
|
+
```python
|
|
506
|
+
from core.frame_composer import (
|
|
507
|
+
create_gradient_background, # Gradient backgrounds
|
|
508
|
+
draw_emoji_enhanced, # Emoji with optional shadow
|
|
509
|
+
draw_circle_with_shadow, # Shapes with depth
|
|
510
|
+
draw_star # 5-pointed stars
|
|
511
|
+
)
|
|
512
|
+
|
|
513
|
+
# Gradient background
|
|
514
|
+
frame = create_gradient_background(480, 480, top_color, bottom_color)
|
|
515
|
+
|
|
516
|
+
# Emoji with shadow
|
|
517
|
+
draw_emoji_enhanced(frame, '🎉', position=(200, 200), size=80, shadow=True)
|
|
518
|
+
```
|
|
519
|
+
|
|
520
|
+
## Optimization Strategies
|
|
521
|
+
|
|
522
|
+
When your GIF is too large:
|
|
523
|
+
|
|
524
|
+
**For Message GIFs (>2MB):**
|
|
525
|
+
1. Reduce frames (lower FPS or shorter duration)
|
|
526
|
+
2. Reduce colors (128 → 64 colors)
|
|
527
|
+
3. Reduce dimensions (480x480 → 320x320)
|
|
528
|
+
4. Enable duplicate frame removal
|
|
529
|
+
|
|
530
|
+
**For Emoji GIFs (>64KB) - be aggressive:**
|
|
531
|
+
1. Limit to 10-12 frames total
|
|
532
|
+
2. Use 32-40 colors maximum
|
|
533
|
+
3. Avoid gradients (solid colors compress better)
|
|
534
|
+
4. Simplify design (fewer elements)
|
|
535
|
+
5. Use `optimize_for_emoji=True` in save method
|
|
536
|
+
|
|
537
|
+
## Example Composition Patterns
|
|
538
|
+
|
|
539
|
+
### Simple Reaction (Pulsing)
|
|
540
|
+
```python
|
|
541
|
+
builder = GIFBuilder(128, 128, 10)
|
|
542
|
+
|
|
543
|
+
for i in range(12):
|
|
544
|
+
frame = Image.new('RGB', (128, 128), (240, 248, 255))
|
|
545
|
+
|
|
546
|
+
# Pulsing scale
|
|
547
|
+
scale = 1.0 + math.sin(i * 0.5) * 0.15
|
|
548
|
+
size = int(60 * scale)
|
|
549
|
+
|
|
550
|
+
draw_emoji_enhanced(frame, '😱', position=(64-size//2, 64-size//2),
|
|
551
|
+
size=size, shadow=False)
|
|
552
|
+
builder.add_frame(frame)
|
|
553
|
+
|
|
554
|
+
builder.save('reaction.gif', num_colors=40, optimize_for_emoji=True)
|
|
555
|
+
|
|
556
|
+
# Validate
|
|
557
|
+
from core.validators import check_slack_size
|
|
558
|
+
check_slack_size('reaction.gif', is_emoji=True)
|
|
559
|
+
```
|
|
560
|
+
|
|
561
|
+
### Action with Impact (Bounce + Flash)
|
|
562
|
+
```python
|
|
563
|
+
builder = GIFBuilder(480, 480, 20)
|
|
564
|
+
|
|
565
|
+
# Phase 1: Object falls
|
|
566
|
+
for i in range(15):
|
|
567
|
+
frame = create_gradient_background(480, 480, (240, 248, 255), (200, 230, 255))
|
|
568
|
+
t = i / 14
|
|
569
|
+
y = interpolate(0, 350, t, 'ease_in')
|
|
570
|
+
draw_emoji_enhanced(frame, '⚽', position=(220, int(y)), size=80)
|
|
571
|
+
builder.add_frame(frame)
|
|
572
|
+
|
|
573
|
+
# Phase 2: Impact + flash
|
|
574
|
+
for i in range(8):
|
|
575
|
+
frame = create_gradient_background(480, 480, (240, 248, 255), (200, 230, 255))
|
|
576
|
+
|
|
577
|
+
# Flash on first frames
|
|
578
|
+
if i < 3:
|
|
579
|
+
frame = create_impact_flash(frame, (240, 350), radius=120, intensity=0.6)
|
|
580
|
+
|
|
581
|
+
draw_emoji_enhanced(frame, '⚽', position=(220, 350), size=80)
|
|
582
|
+
|
|
583
|
+
# Text appears
|
|
584
|
+
if i > 2:
|
|
585
|
+
draw_text_with_outline(frame, "GOAL!", position=(240, 150),
|
|
586
|
+
font_size=60, text_color=(255, 68, 68),
|
|
587
|
+
outline_color=(0, 0, 0), outline_width=4, centered=True)
|
|
588
|
+
|
|
589
|
+
builder.add_frame(frame)
|
|
590
|
+
|
|
591
|
+
builder.save('goal.gif', num_colors=128)
|
|
592
|
+
```
|
|
593
|
+
|
|
594
|
+
### Combining Primitives (Move + Shake)
|
|
595
|
+
```python
|
|
596
|
+
from templates.shake import create_shake_animation
|
|
597
|
+
|
|
598
|
+
# Create shake animation
|
|
599
|
+
shake_frames = create_shake_animation(
|
|
600
|
+
object_type='emoji',
|
|
601
|
+
object_data={'emoji': '😰', 'size': 70},
|
|
602
|
+
num_frames=20,
|
|
603
|
+
shake_intensity=12
|
|
604
|
+
)
|
|
605
|
+
|
|
606
|
+
# Create moving element that triggers the shake
|
|
607
|
+
builder = GIFBuilder(480, 480, 20)
|
|
608
|
+
for i in range(40):
|
|
609
|
+
t = i / 39
|
|
610
|
+
|
|
611
|
+
if i < 20:
|
|
612
|
+
# Before trigger - use blank frame with moving object
|
|
613
|
+
frame = create_blank_frame(480, 480, (255, 255, 255))
|
|
614
|
+
x = interpolate(50, 300, t * 2, 'linear')
|
|
615
|
+
draw_emoji_enhanced(frame, '🚗', position=(int(x), 300), size=60)
|
|
616
|
+
draw_emoji_enhanced(frame, '😰', position=(350, 200), size=70)
|
|
617
|
+
else:
|
|
618
|
+
# After trigger - use shake frame
|
|
619
|
+
frame = shake_frames[i - 20]
|
|
620
|
+
# Add the car in final position
|
|
621
|
+
draw_emoji_enhanced(frame, '🚗', position=(300, 300), size=60)
|
|
622
|
+
|
|
623
|
+
builder.add_frame(frame)
|
|
624
|
+
|
|
625
|
+
builder.save('scare.gif')
|
|
626
|
+
```
|
|
627
|
+
|
|
628
|
+
## Philosophy
|
|
629
|
+
|
|
630
|
+
This toolkit provides building blocks, not rigid recipes. To work with a GIF request:
|
|
631
|
+
|
|
632
|
+
1. **Understand the creative vision** - What should happen? What's the mood?
|
|
633
|
+
2. **Design the animation** - Break it into phases (anticipation, action, reaction)
|
|
634
|
+
3. **Apply primitives as needed** - Shake, bounce, move, effects - mix freely
|
|
635
|
+
4. **Validate constraints** - Check file size, especially for emoji GIFs
|
|
636
|
+
5. **Iterate if needed** - Reduce frames/colors if over size limits
|
|
637
|
+
|
|
638
|
+
**The goal is creative freedom within Slack's technical constraints.**
|
|
639
|
+
|
|
640
|
+
## Dependencies
|
|
641
|
+
|
|
642
|
+
To use this toolkit, install these dependencies only if they aren't already present:
|
|
643
|
+
|
|
644
|
+
```bash
|
|
645
|
+
pip install pillow imageio numpy
|
|
646
|
+
```
|