@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,384 @@
|
|
|
1
|
+
# Plain HTML Word Cloud — Implementation Reference
|
|
2
|
+
|
|
3
|
+
Uses **wordcloud2.js** (canvas) via CDN. Zero build tooling required.
|
|
4
|
+
|
|
5
|
+
## CDN Links
|
|
6
|
+
```html
|
|
7
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/wordcloud2.js/1.2.2/wordcloud2.min.js"></script>
|
|
8
|
+
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&display=swap" rel="stylesheet">
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## Complete Self-Contained Template
|
|
14
|
+
|
|
15
|
+
```html
|
|
16
|
+
<!DOCTYPE html>
|
|
17
|
+
<html lang="en" data-theme="auto">
|
|
18
|
+
<head>
|
|
19
|
+
<meta charset="UTF-8">
|
|
20
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
21
|
+
<title>Word Cloud</title>
|
|
22
|
+
<link href="https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&display=swap" rel="stylesheet">
|
|
23
|
+
<style>
|
|
24
|
+
/* ── CSS Variables / Themes ── */
|
|
25
|
+
:root {
|
|
26
|
+
--cloud-bg: #fafaf9;
|
|
27
|
+
--cloud-surface: #ffffff;
|
|
28
|
+
--cloud-noun: #1c6499;
|
|
29
|
+
--cloud-positive: #16a34a;
|
|
30
|
+
--cloud-negative: #dc2626;
|
|
31
|
+
--cloud-verb: #7c3aed;
|
|
32
|
+
--cloud-neutral: #a8a29e;
|
|
33
|
+
--cloud-glow: rgba(124, 58, 237, 0.15);
|
|
34
|
+
--cloud-border: rgba(0,0,0,0.06);
|
|
35
|
+
}
|
|
36
|
+
[data-theme="dark"] {
|
|
37
|
+
--cloud-bg: #0c0a09;
|
|
38
|
+
--cloud-surface: #1c1917;
|
|
39
|
+
--cloud-noun: #7dd3fc;
|
|
40
|
+
--cloud-positive: #4ade80;
|
|
41
|
+
--cloud-negative: #f87171;
|
|
42
|
+
--cloud-verb: #c4b5fd;
|
|
43
|
+
--cloud-neutral: #78716c;
|
|
44
|
+
--cloud-glow: rgba(167, 139, 250, 0.2);
|
|
45
|
+
--cloud-border: rgba(255,255,255,0.08);
|
|
46
|
+
}
|
|
47
|
+
@media (prefers-color-scheme: dark) {
|
|
48
|
+
[data-theme="auto"] {
|
|
49
|
+
--cloud-bg: #0c0a09;
|
|
50
|
+
--cloud-surface: #1c1917;
|
|
51
|
+
--cloud-noun: #7dd3fc;
|
|
52
|
+
--cloud-positive: #4ade80;
|
|
53
|
+
--cloud-negative: #f87171;
|
|
54
|
+
--cloud-verb: #c4b5fd;
|
|
55
|
+
--cloud-neutral: #78716c;
|
|
56
|
+
--cloud-glow: rgba(167, 139, 250, 0.2);
|
|
57
|
+
--cloud-border: rgba(255,255,255,0.08);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
62
|
+
|
|
63
|
+
body {
|
|
64
|
+
background: var(--cloud-bg);
|
|
65
|
+
font-family: 'Syne', sans-serif;
|
|
66
|
+
display: flex;
|
|
67
|
+
flex-direction: column;
|
|
68
|
+
align-items: center;
|
|
69
|
+
min-height: 100vh;
|
|
70
|
+
padding: 32px 16px;
|
|
71
|
+
transition: background 0.3s;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.cloud-container {
|
|
75
|
+
width: min(900px, 100%);
|
|
76
|
+
background: var(--cloud-surface);
|
|
77
|
+
border-radius: 24px;
|
|
78
|
+
border: 1px solid var(--cloud-border);
|
|
79
|
+
overflow: hidden;
|
|
80
|
+
position: relative;
|
|
81
|
+
box-shadow: 0 24px 80px var(--cloud-glow), 0 4px 16px rgba(0,0,0,0.1);
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
/* Radial glow overlay */
|
|
85
|
+
.cloud-container::before {
|
|
86
|
+
content: '';
|
|
87
|
+
position: absolute;
|
|
88
|
+
inset: 0;
|
|
89
|
+
background: radial-gradient(ellipse at center, var(--cloud-glow) 0%, transparent 70%);
|
|
90
|
+
pointer-events: none;
|
|
91
|
+
z-index: 0;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
canvas#wordcloud {
|
|
95
|
+
display: block;
|
|
96
|
+
width: 100% !important;
|
|
97
|
+
position: relative;
|
|
98
|
+
z-index: 1;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/* Controls bar */
|
|
102
|
+
.controls {
|
|
103
|
+
display: flex;
|
|
104
|
+
gap: 12px;
|
|
105
|
+
align-items: center;
|
|
106
|
+
justify-content: space-between;
|
|
107
|
+
width: min(900px, 100%);
|
|
108
|
+
margin-bottom: 16px;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.theme-toggle {
|
|
112
|
+
background: var(--cloud-surface);
|
|
113
|
+
border: 1px solid var(--cloud-border);
|
|
114
|
+
border-radius: 50px;
|
|
115
|
+
padding: 8px 20px;
|
|
116
|
+
font-family: 'Syne', sans-serif;
|
|
117
|
+
font-size: 13px;
|
|
118
|
+
cursor: pointer;
|
|
119
|
+
color: var(--cloud-noun);
|
|
120
|
+
transition: all 0.2s;
|
|
121
|
+
}
|
|
122
|
+
.theme-toggle:hover { border-color: var(--cloud-noun); }
|
|
123
|
+
|
|
124
|
+
/* Tooltip */
|
|
125
|
+
#tooltip {
|
|
126
|
+
position: fixed;
|
|
127
|
+
background: var(--cloud-surface);
|
|
128
|
+
border: 1px solid var(--cloud-noun);
|
|
129
|
+
border-radius: 10px;
|
|
130
|
+
padding: 8px 14px;
|
|
131
|
+
font-family: 'Syne', sans-serif;
|
|
132
|
+
font-size: 13px;
|
|
133
|
+
pointer-events: none;
|
|
134
|
+
z-index: 9999;
|
|
135
|
+
display: none;
|
|
136
|
+
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
|
|
137
|
+
transform: translate(-50%, calc(-100% - 8px));
|
|
138
|
+
gap: 8px;
|
|
139
|
+
align-items: center;
|
|
140
|
+
color: var(--cloud-noun);
|
|
141
|
+
}
|
|
142
|
+
#tooltip.visible { display: flex; }
|
|
143
|
+
.tt-word { font-weight: 800; color: var(--cloud-noun); }
|
|
144
|
+
.tt-count { opacity: 0.5; font-size: 11px; }
|
|
145
|
+
.tt-cat { font-size: 10px; padding: 2px 8px; border-radius: 20px; font-weight: 700; }
|
|
146
|
+
|
|
147
|
+
/* Legend */
|
|
148
|
+
.legend {
|
|
149
|
+
display: flex;
|
|
150
|
+
gap: 16px;
|
|
151
|
+
flex-wrap: wrap;
|
|
152
|
+
margin-top: 12px;
|
|
153
|
+
font-size: 12px;
|
|
154
|
+
opacity: 0.8;
|
|
155
|
+
}
|
|
156
|
+
.legend-item { display: flex; align-items: center; gap: 6px; }
|
|
157
|
+
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
|
|
158
|
+
|
|
159
|
+
/* Accessible fallback */
|
|
160
|
+
.sr-only {
|
|
161
|
+
position: absolute; width: 1px; height: 1px;
|
|
162
|
+
padding: 0; margin: -1px; overflow: hidden;
|
|
163
|
+
clip: rect(0,0,0,0); border: 0;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/* Entrance animation shimmer */
|
|
167
|
+
@keyframes shimmerIn {
|
|
168
|
+
from { opacity: 0; transform: scale(0.96); }
|
|
169
|
+
to { opacity: 1; transform: scale(1); }
|
|
170
|
+
}
|
|
171
|
+
.cloud-container { animation: shimmerIn 0.5s ease-out; }
|
|
172
|
+
</style>
|
|
173
|
+
</head>
|
|
174
|
+
<body>
|
|
175
|
+
|
|
176
|
+
<div class="controls">
|
|
177
|
+
<h1 style="font-size:18px;font-weight:800;color:var(--cloud-noun)">Word Cloud</h1>
|
|
178
|
+
<button class="theme-toggle" onclick="toggleTheme()">Toggle Theme</button>
|
|
179
|
+
</div>
|
|
180
|
+
|
|
181
|
+
<div class="cloud-container">
|
|
182
|
+
<canvas id="wordcloud" width="900" height="520"></canvas>
|
|
183
|
+
</div>
|
|
184
|
+
|
|
185
|
+
<div class="legend" id="legend"></div>
|
|
186
|
+
|
|
187
|
+
<div id="tooltip">
|
|
188
|
+
<span class="tt-word" id="tt-word"></span>
|
|
189
|
+
<span class="tt-count" id="tt-count"></span>
|
|
190
|
+
<span class="tt-cat" id="tt-cat"></span>
|
|
191
|
+
</div>
|
|
192
|
+
|
|
193
|
+
<!-- Accessible list -->
|
|
194
|
+
<ul class="sr-only" id="word-list" aria-label="Word cloud contents"></ul>
|
|
195
|
+
|
|
196
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/wordcloud2.js/1.2.2/wordcloud2.min.js"></script>
|
|
197
|
+
<script>
|
|
198
|
+
// ─────────────────────────────────────────────
|
|
199
|
+
// 1. PASTE YOUR WORDS HERE (or generate dynamically)
|
|
200
|
+
// Format: [word, frequency, category?]
|
|
201
|
+
// category: 'positive' | 'negative' | 'verb' | 'noun' | 'neutral'
|
|
202
|
+
// ─────────────────────────────────────────────
|
|
203
|
+
const WORD_DATA = [
|
|
204
|
+
// REPLACE THIS with computed frequencies from text extraction
|
|
205
|
+
['innovation', 42, 'noun'],
|
|
206
|
+
['growth', 38, 'positive'],
|
|
207
|
+
['challenge', 31, 'negative'],
|
|
208
|
+
['strategy', 29, 'noun'],
|
|
209
|
+
['transform', 27, 'verb'],
|
|
210
|
+
['success', 25, 'positive'],
|
|
211
|
+
['risk', 22, 'negative'],
|
|
212
|
+
['develop', 20, 'verb'],
|
|
213
|
+
['impact', 19, 'noun'],
|
|
214
|
+
['optimize', 17, 'verb'],
|
|
215
|
+
// ... add more
|
|
216
|
+
];
|
|
217
|
+
|
|
218
|
+
// ─────────────────────────────────────────────
|
|
219
|
+
// 2. COLOR MAPPING
|
|
220
|
+
// ─────────────────────────────────────────────
|
|
221
|
+
function getCSSVar(name) {
|
|
222
|
+
return getComputedStyle(document.documentElement).getPropertyValue(name).trim();
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
function getColor(category) {
|
|
226
|
+
const map = {
|
|
227
|
+
positive: '--cloud-positive',
|
|
228
|
+
negative: '--cloud-negative',
|
|
229
|
+
verb: '--cloud-verb',
|
|
230
|
+
noun: '--cloud-noun',
|
|
231
|
+
neutral: '--cloud-neutral',
|
|
232
|
+
};
|
|
233
|
+
return getCSSVar(map[category] || '--cloud-noun');
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
// Store word metadata for tooltip
|
|
237
|
+
const wordMeta = {};
|
|
238
|
+
WORD_DATA.forEach(([w, count, cat]) => {
|
|
239
|
+
wordMeta[w.toLowerCase()] = { count, category: cat || 'neutral' };
|
|
240
|
+
});
|
|
241
|
+
|
|
242
|
+
// ─────────────────────────────────────────────
|
|
243
|
+
// 3. RENDER
|
|
244
|
+
// ─────────────────────────────────────────────
|
|
245
|
+
function renderCloud() {
|
|
246
|
+
const canvas = document.getElementById('wordcloud');
|
|
247
|
+
const w = canvas.parentElement.clientWidth;
|
|
248
|
+
canvas.width = w;
|
|
249
|
+
canvas.height = Math.round(w * 0.58);
|
|
250
|
+
|
|
251
|
+
const maxVal = Math.max(...WORD_DATA.map(d => d[1]));
|
|
252
|
+
const minVal = Math.min(...WORD_DATA.map(d => d[1]));
|
|
253
|
+
const sizeRange = [14, Math.min(canvas.width, canvas.height) / 4.5];
|
|
254
|
+
|
|
255
|
+
function sizeScale(v) {
|
|
256
|
+
const t = Math.pow((v - minVal) / (maxVal - minVal + 1), 0.55);
|
|
257
|
+
return sizeRange[0] + t * (sizeRange[1] - sizeRange[0]);
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
WordCloud(canvas, {
|
|
261
|
+
list: WORD_DATA.map(([w, v, cat]) => [w, sizeScale(v)]),
|
|
262
|
+
gridSize: Math.round(16 * canvas.width / 1024),
|
|
263
|
+
weightFactor: 1,
|
|
264
|
+
fontFamily: 'Syne, sans-serif',
|
|
265
|
+
color: (word) => {
|
|
266
|
+
const meta = wordMeta[word.toLowerCase()];
|
|
267
|
+
return getColor(meta?.category || 'neutral');
|
|
268
|
+
},
|
|
269
|
+
rotateRatio: 0.2,
|
|
270
|
+
rotationSteps: 3,
|
|
271
|
+
backgroundColor: 'transparent',
|
|
272
|
+
drawOutOfBound: false,
|
|
273
|
+
shrinkToFit: true,
|
|
274
|
+
minSize: 10,
|
|
275
|
+
hover: handleHover,
|
|
276
|
+
click: handleClick,
|
|
277
|
+
});
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
// ─────────────────────────────────────────────
|
|
281
|
+
// 4. INTERACTIONS
|
|
282
|
+
// ─────────────────────────────────────────────
|
|
283
|
+
const tooltip = document.getElementById('tooltip');
|
|
284
|
+
|
|
285
|
+
function handleHover(item, dimension, event) {
|
|
286
|
+
if (!item) { tooltip.classList.remove('visible'); return; }
|
|
287
|
+
const [word] = item;
|
|
288
|
+
const meta = wordMeta[word.toLowerCase()] || {};
|
|
289
|
+
document.getElementById('tt-word').textContent = word;
|
|
290
|
+
document.getElementById('tt-count').textContent = meta.count ? `${meta.count}×` : '';
|
|
291
|
+
const catEl = document.getElementById('tt-cat');
|
|
292
|
+
catEl.textContent = meta.category || '';
|
|
293
|
+
catEl.style.background = getColor(meta.category || 'neutral');
|
|
294
|
+
catEl.style.color = '#fff';
|
|
295
|
+
tooltip.style.left = event.clientX + 'px';
|
|
296
|
+
tooltip.style.top = event.clientY + 'px';
|
|
297
|
+
tooltip.classList.add('visible');
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
function handleClick(item) {
|
|
301
|
+
if (item) console.log('Word clicked:', item[0]);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
document.addEventListener('mousemove', (e) => {
|
|
305
|
+
if (tooltip.classList.contains('visible')) {
|
|
306
|
+
tooltip.style.left = e.clientX + 'px';
|
|
307
|
+
tooltip.style.top = e.clientY + 'px';
|
|
308
|
+
}
|
|
309
|
+
});
|
|
310
|
+
|
|
311
|
+
// ─────────────────────────────────────────────
|
|
312
|
+
// 5. THEME TOGGLE
|
|
313
|
+
// ─────────────────────────────────────────────
|
|
314
|
+
function toggleTheme() {
|
|
315
|
+
const html = document.documentElement;
|
|
316
|
+
const current = html.getAttribute('data-theme');
|
|
317
|
+
html.setAttribute('data-theme', current === 'dark' ? 'light' : 'dark');
|
|
318
|
+
setTimeout(renderCloud, 50); // re-render with new colors
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
// ─────────────────────────────────────────────
|
|
322
|
+
// 6. LEGEND
|
|
323
|
+
// ─────────────────────────────────────────────
|
|
324
|
+
function buildLegend() {
|
|
325
|
+
const cats = [
|
|
326
|
+
['positive', 'Positive'],
|
|
327
|
+
['negative', 'Negative'],
|
|
328
|
+
['verb', 'Verbs'],
|
|
329
|
+
['noun', 'Nouns'],
|
|
330
|
+
['neutral', 'Neutral'],
|
|
331
|
+
];
|
|
332
|
+
const legend = document.getElementById('legend');
|
|
333
|
+
legend.innerHTML = cats.map(([cat, label]) => `
|
|
334
|
+
<span class="legend-item">
|
|
335
|
+
<span class="legend-dot" style="background:${getColor(cat)}"></span>
|
|
336
|
+
${label}
|
|
337
|
+
</span>
|
|
338
|
+
`).join('');
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
// ─────────────────────────────────────────────
|
|
342
|
+
// 7. ACCESSIBLE LIST
|
|
343
|
+
// ─────────────────────────────────────────────
|
|
344
|
+
function buildA11yList() {
|
|
345
|
+
const list = document.getElementById('word-list');
|
|
346
|
+
list.innerHTML = WORD_DATA.map(([w, v]) => `<li>${w} (${v})</li>`).join('');
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
// ─────────────────────────────────────────────
|
|
350
|
+
// 8. INIT
|
|
351
|
+
// ─────────────────────────────────────────────
|
|
352
|
+
window.addEventListener('load', () => {
|
|
353
|
+
renderCloud();
|
|
354
|
+
buildLegend();
|
|
355
|
+
buildA11yList();
|
|
356
|
+
});
|
|
357
|
+
|
|
358
|
+
window.addEventListener('resize', () => {
|
|
359
|
+
clearTimeout(window._resizeTimer);
|
|
360
|
+
window._resizeTimer = setTimeout(renderCloud, 200);
|
|
361
|
+
});
|
|
362
|
+
</script>
|
|
363
|
+
</body>
|
|
364
|
+
</html>
|
|
365
|
+
```
|
|
366
|
+
|
|
367
|
+
---
|
|
368
|
+
|
|
369
|
+
## Injecting Words Dynamically (from fetch/API)
|
|
370
|
+
|
|
371
|
+
Replace the static `WORD_DATA` section with:
|
|
372
|
+
|
|
373
|
+
```js
|
|
374
|
+
async function loadWords() {
|
|
375
|
+
const res = await fetch('/api/word-frequencies'); // your endpoint
|
|
376
|
+
const data = await res.json();
|
|
377
|
+
// data format: [{word, count, category}]
|
|
378
|
+
window.WORD_DATA = data.map(d => [d.word, d.count, d.category]);
|
|
379
|
+
renderCloud();
|
|
380
|
+
buildLegend();
|
|
381
|
+
buildA11yList();
|
|
382
|
+
}
|
|
383
|
+
window.addEventListener('load', loadWords);
|
|
384
|
+
```
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
# NLP Keyword Lists — Word Cloud Reference
|
|
2
|
+
|
|
3
|
+
Use these lists for **Approach A** (no-dependency) sentiment and POS highlighting.
|
|
4
|
+
For browser or server NLP, see SKILL.md §4.
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Positive Sentiment Words
|
|
9
|
+
```js
|
|
10
|
+
const POSITIVE_WORDS = new Set([
|
|
11
|
+
'achieve','achievement','advance','amazing','appreciate','awesome','beautiful',
|
|
12
|
+
'benefit','best','better','bold','brilliant','celebrate','champion','clear',
|
|
13
|
+
'collaborative','committed','confident','consistent','creative','delight',
|
|
14
|
+
'dynamic','effective','efficient','empower','enable','energize','enhance',
|
|
15
|
+
'excellent','exceptional','exciting','exemplary','expert','fantastic',
|
|
16
|
+
'flourish','forward','gain','genuine','good','great','grow','growth',
|
|
17
|
+
'happy','helpful','high','hope','ideal','impact','impressive','improve',
|
|
18
|
+
'incredible','innovative','inspire','joy','kind','lead','leader','leading',
|
|
19
|
+
'love','maximize','motivate','outstanding','overcome','passion','peak',
|
|
20
|
+
'positive','powerful','productive','progress','proven','quality','remarkable',
|
|
21
|
+
'resilient','rewarding','robust','safe','smart','strong','succeed','success',
|
|
22
|
+
'successful','superb','support','sustainable','thrive','top','transform',
|
|
23
|
+
'triumph','trust','trustworthy','unique','valuable','vibrant','visionary',
|
|
24
|
+
'win','wonderful','worthy',
|
|
25
|
+
]);
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Negative Sentiment Words
|
|
29
|
+
```js
|
|
30
|
+
const NEGATIVE_WORDS = new Set([
|
|
31
|
+
'abandon','abuse','adversity','afraid','aggravate','alarm','anger','angry',
|
|
32
|
+
'anxiety','anxious','attack','awful','bad','blame','break','burden','chaos',
|
|
33
|
+
'collapse','concern','confuse','conflict','crisis','critical','damage','danger',
|
|
34
|
+
'dangerous','decline','defeat','delay','deny','destroy','difficult','disappoint',
|
|
35
|
+
'disaster','doubt','drop','error','evil','fail','failure','fear','fragile',
|
|
36
|
+
'frustrate','harm','hate','hazard','hostile','hurt','ignore','inadequate',
|
|
37
|
+
'inefficient','instability','lack','liability','lose','loss','mistake','negative',
|
|
38
|
+
'neglect','obstacle','offensive','oppose','pain','panic','penalty','pessimistic',
|
|
39
|
+
'poor','problem','reject','risk','ruin','scared','serious','shortage','slow',
|
|
40
|
+
'stagnant','struggle','suffer','terrible','threat','toxic','uncertain','unstable',
|
|
41
|
+
'upset','urgent','vulnerable','waste','weak','wicked','worry','worsen','wrong',
|
|
42
|
+
]);
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Strong Verbs (action words worth highlighting)
|
|
46
|
+
```js
|
|
47
|
+
const STRONG_VERBS = new Set([
|
|
48
|
+
'accelerate','achieve','activate','adapt','advance','amplify','analyze','apply',
|
|
49
|
+
'build','capture','catalyze','challenge','change','collaborate','commit','compete',
|
|
50
|
+
'complete','connect','create','define','deliver','deploy','design','develop',
|
|
51
|
+
'digitize','disrupt','drive','enable','engage','evaluate','execute','expand',
|
|
52
|
+
'explore','focus','generate','grow','guide','identify','implement','improve',
|
|
53
|
+
'innovate','inspire','integrate','invest','launch','lead','leverage','manage',
|
|
54
|
+
'measure','mobilize','optimize','plan','power','prioritize','produce','redesign',
|
|
55
|
+
'refine','reinvent','scale','shape','solve','strengthen','streamline','support',
|
|
56
|
+
'sustain','transform','unlock','validate',
|
|
57
|
+
]);
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## Categorization Function (JS)
|
|
63
|
+
|
|
64
|
+
```js
|
|
65
|
+
function categorizeWord(word) {
|
|
66
|
+
const w = word.toLowerCase();
|
|
67
|
+
if (POSITIVE_WORDS.has(w)) return 'positive';
|
|
68
|
+
if (NEGATIVE_WORDS.has(w)) return 'negative';
|
|
69
|
+
if (STRONG_VERBS.has(w)) return 'verb';
|
|
70
|
+
return 'neutral';
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
// Apply to word frequency array:
|
|
74
|
+
const categorized = wordFrequencies.map(({ text, value }) => ({
|
|
75
|
+
text,
|
|
76
|
+
value,
|
|
77
|
+
category: categorizeWord(text),
|
|
78
|
+
}));
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
---
|
|
82
|
+
|
|
83
|
+
## Categorization Function (Python)
|
|
84
|
+
|
|
85
|
+
```python
|
|
86
|
+
POSITIVE = {
|
|
87
|
+
'achieve','achievement','advance','amazing','appreciate','awesome','beautiful',
|
|
88
|
+
'benefit','best','better','bold','brilliant','celebrate','champion','clear',
|
|
89
|
+
'confident','creative','delight','dynamic','effective','efficient','empower',
|
|
90
|
+
'enhance','excellent','exceptional','exciting','expert','fantastic','flourish',
|
|
91
|
+
'gain','good','great','grow','growth','helpful','ideal','impact','impressive',
|
|
92
|
+
'improve','incredible','innovative','inspire','lead','maximize','motivate',
|
|
93
|
+
'outstanding','passion','positive','powerful','productive','progress','quality',
|
|
94
|
+
'remarkable','resilient','robust','smart','strong','succeed','success',
|
|
95
|
+
'sustainable','thrive','top','transform','trust','unique','valuable','vibrant',
|
|
96
|
+
'win','wonderful',
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
NEGATIVE = {
|
|
100
|
+
'abandon','abuse','adversity','afraid','aggravate','alarm','anger','angry',
|
|
101
|
+
'anxiety','attack','awful','bad','blame','burden','chaos','collapse','concern',
|
|
102
|
+
'conflict','crisis','damage','danger','decline','defeat','deny','destroy',
|
|
103
|
+
'difficult','disappoint','disaster','doubt','drop','error','fail','failure',
|
|
104
|
+
'fear','fragile','frustrate','harm','hate','hazard','hurt','inadequate',
|
|
105
|
+
'lack','lose','loss','mistake','negative','neglect','obstacle','pain','panic',
|
|
106
|
+
'poor','problem','reject','risk','ruin','struggle','suffer','terrible','threat',
|
|
107
|
+
'toxic','uncertain','waste','weak','worry','wrong',
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
VERBS = {
|
|
111
|
+
'accelerate','achieve','activate','adapt','advance','amplify','analyze','apply',
|
|
112
|
+
'build','capture','catalyze','challenge','change','collaborate','commit',
|
|
113
|
+
'compete','create','define','deliver','deploy','design','develop','drive',
|
|
114
|
+
'enable','engage','evaluate','execute','expand','focus','generate','grow',
|
|
115
|
+
'identify','implement','improve','innovate','integrate','launch','lead',
|
|
116
|
+
'leverage','optimize','plan','prioritize','produce','redesign','refine',
|
|
117
|
+
'reinvent','scale','shape','solve','strengthen','streamline','sustain',
|
|
118
|
+
'transform','validate',
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
def categorize(word: str) -> str:
|
|
122
|
+
w = word.lower()
|
|
123
|
+
if w in POSITIVE: return 'positive'
|
|
124
|
+
if w in NEGATIVE: return 'negative'
|
|
125
|
+
if w in VERBS: return 'verb'
|
|
126
|
+
return 'neutral'
|
|
127
|
+
```
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
# Word Cloud — Premium Palette Reference
|
|
2
|
+
|
|
3
|
+
8 curated palettes. Each defines CSS custom properties. Apply by adding the palette name as a class on `.word-cloud-wrapper` (React/HTML) or passing `palette` prop.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Obsidian (default dark)
|
|
8
|
+
Moody, editorial, sophisticated.
|
|
9
|
+
```css
|
|
10
|
+
.obsidian {
|
|
11
|
+
--cloud-bg: #0c0a09;
|
|
12
|
+
--cloud-surface: #1c1917;
|
|
13
|
+
--cloud-noun: #e7e5e4;
|
|
14
|
+
--cloud-positive: #4ade80;
|
|
15
|
+
--cloud-negative: #f87171;
|
|
16
|
+
--cloud-verb: #c4b5fd;
|
|
17
|
+
--cloud-neutral: #78716c;
|
|
18
|
+
--cloud-glow: rgba(167,139,250,0.18);
|
|
19
|
+
}
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Ivory (default light)
|
|
23
|
+
Clean, minimal, luxury print editorial.
|
|
24
|
+
```css
|
|
25
|
+
.ivory {
|
|
26
|
+
--cloud-bg: #fafaf9;
|
|
27
|
+
--cloud-surface: #ffffff;
|
|
28
|
+
--cloud-noun: #1c1917;
|
|
29
|
+
--cloud-positive: #15803d;
|
|
30
|
+
--cloud-negative: #b91c1c;
|
|
31
|
+
--cloud-verb: #6d28d9;
|
|
32
|
+
--cloud-neutral: #a8a29e;
|
|
33
|
+
--cloud-glow: rgba(109,40,217,0.08);
|
|
34
|
+
}
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## Aurora
|
|
38
|
+
Dark with vibrant neon aurora borealis palette.
|
|
39
|
+
```css
|
|
40
|
+
.aurora {
|
|
41
|
+
--cloud-bg: #030712;
|
|
42
|
+
--cloud-surface: #0f0f23;
|
|
43
|
+
--cloud-noun: #60a5fa;
|
|
44
|
+
--cloud-positive: #34d399;
|
|
45
|
+
--cloud-negative: #fb7185;
|
|
46
|
+
--cloud-verb: #e879f9;
|
|
47
|
+
--cloud-neutral: #6b7280;
|
|
48
|
+
--cloud-glow: rgba(96,165,250,0.2);
|
|
49
|
+
}
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Parchment
|
|
53
|
+
Warm, aged paper, literary.
|
|
54
|
+
```css
|
|
55
|
+
.parchment {
|
|
56
|
+
--cloud-bg: #f5f0e8;
|
|
57
|
+
--cloud-surface: #fdf8f0;
|
|
58
|
+
--cloud-noun: #44260c;
|
|
59
|
+
--cloud-positive: #3d6b1c;
|
|
60
|
+
--cloud-negative: #8b1a1a;
|
|
61
|
+
--cloud-verb: #7b3e00;
|
|
62
|
+
--cloud-neutral: #9c8060;
|
|
63
|
+
--cloud-glow: rgba(180,120,40,0.1);
|
|
64
|
+
}
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Midnight Ocean
|
|
68
|
+
Deep navy, cool and corporate-elegant.
|
|
69
|
+
```css
|
|
70
|
+
.midnight_ocean {
|
|
71
|
+
--cloud-bg: #020817;
|
|
72
|
+
--cloud-surface: #0f172a;
|
|
73
|
+
--cloud-noun: #93c5fd;
|
|
74
|
+
--cloud-positive: #6ee7b7;
|
|
75
|
+
--cloud-negative: #fca5a5;
|
|
76
|
+
--cloud-verb: #a5b4fc;
|
|
77
|
+
--cloud-neutral: #475569;
|
|
78
|
+
--cloud-glow: rgba(147,197,253,0.15);
|
|
79
|
+
}
|
|
80
|
+
```
|
|
81
|
+
|
|
82
|
+
## Neon Noir
|
|
83
|
+
Dark background, vivid neon accents. Cyberpunk energy.
|
|
84
|
+
```css
|
|
85
|
+
.neon_noir {
|
|
86
|
+
--cloud-bg: #09090b;
|
|
87
|
+
--cloud-surface: #18181b;
|
|
88
|
+
--cloud-noun: #f4f4f5;
|
|
89
|
+
--cloud-positive: #00ff87;
|
|
90
|
+
--cloud-negative: #ff2d55;
|
|
91
|
+
--cloud-verb: #bf5af2;
|
|
92
|
+
--cloud-neutral: #52525b;
|
|
93
|
+
--cloud-glow: rgba(0,255,135,0.12);
|
|
94
|
+
}
|
|
95
|
+
```
|
|
96
|
+
|
|
97
|
+
## Botanical
|
|
98
|
+
Earthy greens, natural, calm.
|
|
99
|
+
```css
|
|
100
|
+
.botanical {
|
|
101
|
+
--cloud-bg: #f0f4f0;
|
|
102
|
+
--cloud-surface: #ffffff;
|
|
103
|
+
--cloud-noun: #1e3a2f;
|
|
104
|
+
--cloud-positive: #2d6a4f;
|
|
105
|
+
--cloud-negative: #b5482a;
|
|
106
|
+
--cloud-verb: #557a45;
|
|
107
|
+
--cloud-neutral: #8aab7e;
|
|
108
|
+
--cloud-glow: rgba(46,107,79,0.1);
|
|
109
|
+
}
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
## Rose Gold
|
|
113
|
+
Warm pink and gold tones. Elegant, feminine, premium.
|
|
114
|
+
```css
|
|
115
|
+
.rose_gold {
|
|
116
|
+
--cloud-bg: #1a0e10;
|
|
117
|
+
--cloud-surface: #2a1418;
|
|
118
|
+
--cloud-noun: #f8d7b0;
|
|
119
|
+
--cloud-positive: #f0a070;
|
|
120
|
+
--cloud-negative: #e8507a;
|
|
121
|
+
--cloud-verb: #d4b090;
|
|
122
|
+
--cloud-neutral: #8a6060;
|
|
123
|
+
--cloud-glow: rgba(248,215,176,0.12);
|
|
124
|
+
}
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
## Usage in React
|
|
130
|
+
```tsx
|
|
131
|
+
<WordCloud palette="aurora" ... />
|
|
132
|
+
// Applies via className: <div class="word-cloud-wrapper aurora">
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
## Usage in HTML
|
|
136
|
+
```html
|
|
137
|
+
<div class="word-cloud-wrapper midnight_ocean" data-theme="dark">
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
## Usage in Python (matplotlib colormap equivalents)
|
|
141
|
+
| Palette | Closest matplotlib colormap |
|
|
142
|
+
|---------|---------------------------|
|
|
143
|
+
| obsidian | `plasma_r` |
|
|
144
|
+
| aurora | `cool` |
|
|
145
|
+
| parchment | `copper` |
|
|
146
|
+
| midnight_ocean | `Blues` |
|
|
147
|
+
| neon_noir | `spring` |
|
|
148
|
+
| botanical | `Greens` |
|
|
149
|
+
| rose_gold | `RdPu` |
|