@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,434 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: file-organizer
|
|
3
|
+
context: fork
|
|
4
|
+
description: Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and keeps your digital workspace tidy without manual effort.
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# File Organizer
|
|
8
|
+
|
|
9
|
+
This skill acts as your personal organization assistant, helping you maintain a clean, logical file structure across your computer without the mental overhead of constant manual organization.
|
|
10
|
+
|
|
11
|
+
## When to Use This Skill
|
|
12
|
+
|
|
13
|
+
- Your Downloads folder is a chaotic mess
|
|
14
|
+
- You can't find files because they're scattered everywhere
|
|
15
|
+
- You have duplicate files taking up space
|
|
16
|
+
- Your folder structure doesn't make sense anymore
|
|
17
|
+
- You want to establish better organization habits
|
|
18
|
+
- You're starting a new project and need a good structure
|
|
19
|
+
- You're cleaning up before archiving old projects
|
|
20
|
+
|
|
21
|
+
## What This Skill Does
|
|
22
|
+
|
|
23
|
+
1. **Analyzes Current Structure**: Reviews your folders and files to understand what you have
|
|
24
|
+
2. **Finds Duplicates**: Identifies duplicate files across your system
|
|
25
|
+
3. **Suggests Organization**: Proposes logical folder structures based on your content
|
|
26
|
+
4. **Automates Cleanup**: Moves, renames, and organizes files with your approval
|
|
27
|
+
5. **Maintains Context**: Makes smart decisions based on file types, dates, and content
|
|
28
|
+
6. **Reduces Clutter**: Identifies old files you probably don't need anymore
|
|
29
|
+
|
|
30
|
+
## How to Use
|
|
31
|
+
|
|
32
|
+
### From Your Home Directory
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
cd ~
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Then run Claude Code and ask for help:
|
|
39
|
+
|
|
40
|
+
```
|
|
41
|
+
Help me organize my Downloads folder
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
Find duplicate files in my Documents folder
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
```
|
|
49
|
+
Review my project directories and suggest improvements
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
### Specific Organization Tasks
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
Organize these downloads into proper folders based on what they are
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
Find duplicate files and help me decide which to keep
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
```
|
|
63
|
+
Clean up old files I haven't touched in 6+ months
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
```
|
|
67
|
+
Create a better folder structure for my [work/projects/photos/etc]
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## Instructions
|
|
71
|
+
|
|
72
|
+
When a user requests file organization help:
|
|
73
|
+
|
|
74
|
+
1. **Understand the Scope**
|
|
75
|
+
|
|
76
|
+
Ask clarifying questions:
|
|
77
|
+
- Which directory needs organization? (Downloads, Documents, entire home folder?)
|
|
78
|
+
- What's the main problem? (Can't find things, duplicates, too messy, no structure?)
|
|
79
|
+
- Any files or folders to avoid? (Current projects, sensitive data?)
|
|
80
|
+
- How aggressively to organize? (Conservative vs. comprehensive cleanup)
|
|
81
|
+
|
|
82
|
+
2. **Analyze Current State**
|
|
83
|
+
|
|
84
|
+
Review the target directory:
|
|
85
|
+
```bash
|
|
86
|
+
# Get overview of current structure
|
|
87
|
+
ls -la [target_directory]
|
|
88
|
+
|
|
89
|
+
# Check file types and sizes
|
|
90
|
+
find [target_directory] -type f -exec file {} \; | head -20
|
|
91
|
+
|
|
92
|
+
# Identify largest files
|
|
93
|
+
du -sh [target_directory]/* | sort -rh | head -20
|
|
94
|
+
|
|
95
|
+
# Count file types
|
|
96
|
+
find [target_directory] -type f | sed 's/.*\.//' | sort | uniq -c | sort -rn
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
Summarize findings:
|
|
100
|
+
- Total files and folders
|
|
101
|
+
- File type breakdown
|
|
102
|
+
- Size distribution
|
|
103
|
+
- Date ranges
|
|
104
|
+
- Obvious organization issues
|
|
105
|
+
|
|
106
|
+
3. **Identify Organization Patterns**
|
|
107
|
+
|
|
108
|
+
Based on the files, determine logical groupings:
|
|
109
|
+
|
|
110
|
+
**By Type**:
|
|
111
|
+
- Documents (PDFs, DOCX, TXT)
|
|
112
|
+
- Images (JPG, PNG, SVG)
|
|
113
|
+
- Videos (MP4, MOV)
|
|
114
|
+
- Archives (ZIP, TAR, DMG)
|
|
115
|
+
- Code/Projects (directories with code)
|
|
116
|
+
- Spreadsheets (XLSX, CSV)
|
|
117
|
+
- Presentations (PPTX, KEY)
|
|
118
|
+
|
|
119
|
+
**By Purpose**:
|
|
120
|
+
- Work vs. Personal
|
|
121
|
+
- Active vs. Archive
|
|
122
|
+
- Project-specific
|
|
123
|
+
- Reference materials
|
|
124
|
+
- Temporary/scratch files
|
|
125
|
+
|
|
126
|
+
**By Date**:
|
|
127
|
+
- Current year/month
|
|
128
|
+
- Previous years
|
|
129
|
+
- Very old (archive candidates)
|
|
130
|
+
|
|
131
|
+
4. **Find Duplicates**
|
|
132
|
+
|
|
133
|
+
When requested, search for duplicates:
|
|
134
|
+
```bash
|
|
135
|
+
# Find exact duplicates by hash
|
|
136
|
+
find [directory] -type f -exec md5 {} \; | sort | uniq -d
|
|
137
|
+
|
|
138
|
+
# Find files with same name
|
|
139
|
+
find [directory] -type f -printf '%f\n' | sort | uniq -d
|
|
140
|
+
|
|
141
|
+
# Find similar-sized files
|
|
142
|
+
find [directory] -type f -printf '%s %p\n' | sort -n
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
For each set of duplicates:
|
|
146
|
+
- Show all file paths
|
|
147
|
+
- Display sizes and modification dates
|
|
148
|
+
- Recommend which to keep (usually newest or best-named)
|
|
149
|
+
- **Important**: Always ask for confirmation before deleting
|
|
150
|
+
|
|
151
|
+
5. **Propose Organization Plan**
|
|
152
|
+
|
|
153
|
+
Present a clear plan before making changes:
|
|
154
|
+
|
|
155
|
+
```markdown
|
|
156
|
+
# Organization Plan for [Directory]
|
|
157
|
+
|
|
158
|
+
## Current State
|
|
159
|
+
- X files across Y folders
|
|
160
|
+
- [Size] total
|
|
161
|
+
- File types: [breakdown]
|
|
162
|
+
- Issues: [list problems]
|
|
163
|
+
|
|
164
|
+
## Proposed Structure
|
|
165
|
+
|
|
166
|
+
```
|
|
167
|
+
[Directory]/
|
|
168
|
+
├── Work/
|
|
169
|
+
│ ├── Projects/
|
|
170
|
+
│ ├── Documents/
|
|
171
|
+
│ └── Archive/
|
|
172
|
+
├── Personal/
|
|
173
|
+
│ ├── Photos/
|
|
174
|
+
│ ├── Documents/
|
|
175
|
+
│ └── Media/
|
|
176
|
+
└── Downloads/
|
|
177
|
+
├── To-Sort/
|
|
178
|
+
└── Archive/
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
## Changes I'll Make
|
|
182
|
+
|
|
183
|
+
1. **Create new folders**: [list]
|
|
184
|
+
2. **Move files**:
|
|
185
|
+
- X PDFs → Work/Documents/
|
|
186
|
+
- Y images → Personal/Photos/
|
|
187
|
+
- Z old files → Archive/
|
|
188
|
+
3. **Rename files**: [any renaming patterns]
|
|
189
|
+
4. **Delete**: [duplicates or trash files]
|
|
190
|
+
|
|
191
|
+
## Files Needing Your Decision
|
|
192
|
+
|
|
193
|
+
- [List any files you're unsure about]
|
|
194
|
+
|
|
195
|
+
Ready to proceed? (yes/no/modify)
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
6. **Execute Organization**
|
|
199
|
+
|
|
200
|
+
After approval, organize systematically:
|
|
201
|
+
|
|
202
|
+
```bash
|
|
203
|
+
# Create folder structure
|
|
204
|
+
mkdir -p "path/to/new/folders"
|
|
205
|
+
|
|
206
|
+
# Move files with clear logging
|
|
207
|
+
mv "old/path/file.pdf" "new/path/file.pdf"
|
|
208
|
+
|
|
209
|
+
# Rename files with consistent patterns
|
|
210
|
+
# Example: "YYYY-MM-DD - Description.ext"
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
**Important Rules**:
|
|
214
|
+
- Always confirm before deleting anything
|
|
215
|
+
- Log all moves for potential undo
|
|
216
|
+
- Preserve original modification dates
|
|
217
|
+
- Handle filename conflicts gracefully
|
|
218
|
+
- Stop and ask if you encounter unexpected situations
|
|
219
|
+
|
|
220
|
+
7. **Provide Summary and Maintenance Tips**
|
|
221
|
+
|
|
222
|
+
After organizing:
|
|
223
|
+
|
|
224
|
+
```markdown
|
|
225
|
+
# Organization Complete! ✨
|
|
226
|
+
|
|
227
|
+
## What Changed
|
|
228
|
+
|
|
229
|
+
- Created [X] new folders
|
|
230
|
+
- Organized [Y] files
|
|
231
|
+
- Freed [Z] GB by removing duplicates
|
|
232
|
+
- Archived [W] old files
|
|
233
|
+
|
|
234
|
+
## New Structure
|
|
235
|
+
|
|
236
|
+
[Show the new folder tree]
|
|
237
|
+
|
|
238
|
+
## Maintenance Tips
|
|
239
|
+
|
|
240
|
+
To keep this organized:
|
|
241
|
+
|
|
242
|
+
1. **Weekly**: Sort new downloads
|
|
243
|
+
2. **Monthly**: Review and archive completed projects
|
|
244
|
+
3. **Quarterly**: Check for new duplicates
|
|
245
|
+
4. **Yearly**: Archive old files
|
|
246
|
+
|
|
247
|
+
## Quick Commands for You
|
|
248
|
+
|
|
249
|
+
```bash
|
|
250
|
+
# Find files modified this week
|
|
251
|
+
find . -type f -mtime -7
|
|
252
|
+
|
|
253
|
+
# Sort downloads by type
|
|
254
|
+
[custom command for their setup]
|
|
255
|
+
|
|
256
|
+
# Find duplicates
|
|
257
|
+
[custom command]
|
|
258
|
+
```
|
|
259
|
+
|
|
260
|
+
Want to organize another folder?
|
|
261
|
+
```
|
|
262
|
+
|
|
263
|
+
## Examples
|
|
264
|
+
|
|
265
|
+
### Example 1: Organizing Downloads (From Justin Dielmann)
|
|
266
|
+
|
|
267
|
+
**User**: "My Downloads folder is a mess with 500+ files. Help me organize it."
|
|
268
|
+
|
|
269
|
+
**Process**:
|
|
270
|
+
1. Analyzes Downloads folder
|
|
271
|
+
2. Finds patterns: work docs, personal photos, installers, random PDFs
|
|
272
|
+
3. Proposes structure:
|
|
273
|
+
- Downloads/
|
|
274
|
+
- Work/
|
|
275
|
+
- Personal/
|
|
276
|
+
- Installers/ (DMG, PKG files)
|
|
277
|
+
- Archive/
|
|
278
|
+
- ToSort/ (things needing decisions)
|
|
279
|
+
4. Asks for confirmation
|
|
280
|
+
5. Moves files intelligently based on content and names
|
|
281
|
+
6. Results: 500 files → 5 organized folders
|
|
282
|
+
|
|
283
|
+
### Example 2: Finding and Removing Duplicates
|
|
284
|
+
|
|
285
|
+
**User**: "Find duplicate files in my Documents and help me decide which to keep."
|
|
286
|
+
|
|
287
|
+
**Output**:
|
|
288
|
+
```markdown
|
|
289
|
+
# Found 23 Sets of Duplicates (156 MB total)
|
|
290
|
+
|
|
291
|
+
## Duplicate Set 1: "proposal.pdf"
|
|
292
|
+
- `/Documents/proposal.pdf` (2.3 MB, modified: 2024-03-15)
|
|
293
|
+
- `/Documents/old/proposal.pdf` (2.3 MB, modified: 2024-03-15)
|
|
294
|
+
- `/Desktop/proposal.pdf` (2.3 MB, modified: 2024-03-10)
|
|
295
|
+
|
|
296
|
+
**Recommendation**: Keep `/Documents/proposal.pdf` (most recent in correct location)
|
|
297
|
+
Delete the other 2 copies?
|
|
298
|
+
|
|
299
|
+
[Continue for all duplicates...]
|
|
300
|
+
```
|
|
301
|
+
|
|
302
|
+
### Example 3: Restructuring Projects Folder
|
|
303
|
+
|
|
304
|
+
**User**: "Review my ~/Projects directory and suggest improvements."
|
|
305
|
+
|
|
306
|
+
**Output**:
|
|
307
|
+
```markdown
|
|
308
|
+
# Analysis of ~/Projects
|
|
309
|
+
|
|
310
|
+
## Current Structure Issues
|
|
311
|
+
- Mix of active and archived projects (3+ years old)
|
|
312
|
+
- No consistent naming convention
|
|
313
|
+
- Some projects at root, others in random subfolders
|
|
314
|
+
- Duplicate folders (project-name, project-name-old, project-name-v2)
|
|
315
|
+
|
|
316
|
+
## Proposed Structure
|
|
317
|
+
|
|
318
|
+
```
|
|
319
|
+
Projects/
|
|
320
|
+
├── Active/
|
|
321
|
+
│ ├── client-work/
|
|
322
|
+
│ ├── side-projects/
|
|
323
|
+
│ └── learning/
|
|
324
|
+
├── Archive/
|
|
325
|
+
│ ├── 2022/
|
|
326
|
+
│ ├── 2023/
|
|
327
|
+
│ └── 2024/
|
|
328
|
+
└── Templates/
|
|
329
|
+
```
|
|
330
|
+
|
|
331
|
+
## Specific Changes
|
|
332
|
+
1. Move 12 projects not touched since 2022 → Archive/
|
|
333
|
+
2. Consolidate 4 duplicate project folders
|
|
334
|
+
3. Rename projects to consistent format: "client-name-project-name"
|
|
335
|
+
4. Create Archive for old work
|
|
336
|
+
|
|
337
|
+
Want me to implement this?
|
|
338
|
+
```
|
|
339
|
+
|
|
340
|
+
### Example 4: Organizing Photos by Date
|
|
341
|
+
|
|
342
|
+
**User**: "Organize my photo folders by year and month."
|
|
343
|
+
|
|
344
|
+
**Output**: Creates structure like:
|
|
345
|
+
```
|
|
346
|
+
Photos/
|
|
347
|
+
├── 2023/
|
|
348
|
+
│ ├── 01-January/
|
|
349
|
+
│ ├── 02-February/
|
|
350
|
+
│ └── ...
|
|
351
|
+
├── 2024/
|
|
352
|
+
│ ├── 01-January/
|
|
353
|
+
│ └── ...
|
|
354
|
+
└── Unsorted/
|
|
355
|
+
```
|
|
356
|
+
|
|
357
|
+
Then moves photos based on EXIF data or file modification dates.
|
|
358
|
+
|
|
359
|
+
## Common Organization Tasks
|
|
360
|
+
|
|
361
|
+
### Downloads Cleanup
|
|
362
|
+
```
|
|
363
|
+
Organize my Downloads folder - move documents to Documents,
|
|
364
|
+
images to Pictures, keep installers separate, and archive files
|
|
365
|
+
older than 3 months.
|
|
366
|
+
```
|
|
367
|
+
|
|
368
|
+
### Project Organization
|
|
369
|
+
```
|
|
370
|
+
Review my Projects folder structure and help me separate active
|
|
371
|
+
projects from old ones I should archive.
|
|
372
|
+
```
|
|
373
|
+
|
|
374
|
+
### Duplicate Removal
|
|
375
|
+
```
|
|
376
|
+
Find all duplicate files in my Documents folder and help me
|
|
377
|
+
decide which ones to keep.
|
|
378
|
+
```
|
|
379
|
+
|
|
380
|
+
### Desktop Cleanup
|
|
381
|
+
```
|
|
382
|
+
My Desktop is covered in files. Help me organize everything into
|
|
383
|
+
my Documents folder properly.
|
|
384
|
+
```
|
|
385
|
+
|
|
386
|
+
### Photo Organization
|
|
387
|
+
```
|
|
388
|
+
Organize all photos in this folder by date (year/month) based
|
|
389
|
+
on when they were taken.
|
|
390
|
+
```
|
|
391
|
+
|
|
392
|
+
### Work/Personal Separation
|
|
393
|
+
```
|
|
394
|
+
Help me separate my work files from personal files across my
|
|
395
|
+
Documents folder.
|
|
396
|
+
```
|
|
397
|
+
|
|
398
|
+
## Pro Tips
|
|
399
|
+
|
|
400
|
+
1. **Start Small**: Begin with one messy folder (like Downloads) to build trust
|
|
401
|
+
2. **Regular Maintenance**: Run weekly cleanup on Downloads
|
|
402
|
+
3. **Consistent Naming**: Use "YYYY-MM-DD - Description" format for important files
|
|
403
|
+
4. **Archive Aggressively**: Move old projects to Archive instead of deleting
|
|
404
|
+
5. **Keep Active Separate**: Maintain clear boundaries between active and archived work
|
|
405
|
+
6. **Trust the Process**: Let Claude handle the cognitive load of where things go
|
|
406
|
+
|
|
407
|
+
## Best Practices
|
|
408
|
+
|
|
409
|
+
### Folder Naming
|
|
410
|
+
- Use clear, descriptive names
|
|
411
|
+
- Avoid spaces (use hyphens or underscores)
|
|
412
|
+
- Be specific: "client-proposals" not "docs"
|
|
413
|
+
- Use prefixes for ordering: "01-current", "02-archive"
|
|
414
|
+
|
|
415
|
+
### File Naming
|
|
416
|
+
- Include dates: "2024-10-17-meeting-notes.md"
|
|
417
|
+
- Be descriptive: "q3-financial-report.xlsx"
|
|
418
|
+
- Avoid version numbers in names (use version control instead)
|
|
419
|
+
- Remove download artifacts: "document-final-v2 (1).pdf" → "document.pdf"
|
|
420
|
+
|
|
421
|
+
### When to Archive
|
|
422
|
+
- Projects not touched in 6+ months
|
|
423
|
+
- Completed work that might be referenced later
|
|
424
|
+
- Old versions after migration to new systems
|
|
425
|
+
- Files you're hesitant to delete (archive first)
|
|
426
|
+
|
|
427
|
+
## Related Use Cases
|
|
428
|
+
|
|
429
|
+
- Setting up organization for a new computer
|
|
430
|
+
- Preparing files for backup/archiving
|
|
431
|
+
- Cleaning up before storage cleanup
|
|
432
|
+
- Organizing shared team folders
|
|
433
|
+
- Structuring new project directories
|
|
434
|
+
|
|
@@ -0,0 +1,221 @@
|
|
|
1
|
+
# Game-Changing Features
|
|
2
|
+
|
|
3
|
+
A strategic product thinking skill that helps identify 10x opportunities and high-leverage improvements for your product.
|
|
4
|
+
|
|
5
|
+
## Purpose
|
|
6
|
+
|
|
7
|
+
This skill shifts your mindset from incremental improvements to transformative thinking. Instead of asking "what feature should we add next?", it asks "what would make this 10x more valuable?" It's designed for founders, product managers, and teams who want to find the moves that make users unable to live without their product.
|
|
8
|
+
|
|
9
|
+
## When to Use
|
|
10
|
+
|
|
11
|
+
Activate this skill when you need:
|
|
12
|
+
|
|
13
|
+
- Strategic product thinking and prioritization
|
|
14
|
+
- To identify high-impact features that differentiate from competitors
|
|
15
|
+
- To find quick wins with outsized impact
|
|
16
|
+
- To explore what would make your product 10x better
|
|
17
|
+
- Product strategy discussions about "what should we build next?"
|
|
18
|
+
- To validate if you're working on the right things
|
|
19
|
+
|
|
20
|
+
Trigger phrases include:
|
|
21
|
+
- "What would make this 10x better?"
|
|
22
|
+
- "Product strategy"
|
|
23
|
+
- "What should we build next?"
|
|
24
|
+
- "10x opportunities"
|
|
25
|
+
- "Game-changing features"
|
|
26
|
+
- "High-leverage improvements"
|
|
27
|
+
|
|
28
|
+
## How It Works
|
|
29
|
+
|
|
30
|
+
### The Approach
|
|
31
|
+
|
|
32
|
+
This skill follows a structured 5-step workflow:
|
|
33
|
+
|
|
34
|
+
1. **Understand Current Value** - Deep dive into what the product does today, who uses it, and why
|
|
35
|
+
2. **Find 10x Opportunities** - Think across three scales (Massive, Medium, Small)
|
|
36
|
+
3. **Evaluate Ruthlessly** - Score ideas on impact, reach, frequency, differentiation, defensibility, and feasibility
|
|
37
|
+
4. **Identify Highest-Leverage Moves** - Find quick wins, strategic bets, and compounding features
|
|
38
|
+
5. **Prioritize** - Stack rank into Do Now, Do Next, Explore, and Backlog
|
|
39
|
+
|
|
40
|
+
### Three Scales of Thinking
|
|
41
|
+
|
|
42
|
+
**Massive (High effort, transformative)**
|
|
43
|
+
- Features that fundamentally expand what the product can do
|
|
44
|
+
- Opens new markets, use cases, or capabilities
|
|
45
|
+
- Makes competitors nervous
|
|
46
|
+
|
|
47
|
+
**Medium (Moderate effort, high leverage)**
|
|
48
|
+
- Significantly enhances the core experience
|
|
49
|
+
- Force multipliers on what already works
|
|
50
|
+
- Turns casual users into power users
|
|
51
|
+
|
|
52
|
+
**Small Gems (Low effort, disproportionate value)**
|
|
53
|
+
- Tiny changes that punch way above their weight
|
|
54
|
+
- Often overlooked because they seem "too simple"
|
|
55
|
+
- Single buttons/shortcuts that save minutes daily
|
|
56
|
+
|
|
57
|
+
### Evaluation Framework
|
|
58
|
+
|
|
59
|
+
Each idea is assessed across 6 criteria:
|
|
60
|
+
|
|
61
|
+
| Criteria | Question |
|
|
62
|
+
|----------|----------|
|
|
63
|
+
| Impact | How much more valuable does this make the product? |
|
|
64
|
+
| Reach | What % of users would this affect? |
|
|
65
|
+
| Frequency | How often would users encounter this value? |
|
|
66
|
+
| Differentiation | Does this set us apart or just match competitors? |
|
|
67
|
+
| Defensibility | Is this easy to copy or does it compound over time? |
|
|
68
|
+
| Feasibility | Can we actually build this? |
|
|
69
|
+
|
|
70
|
+
Scoring:
|
|
71
|
+
- 🔥 **Must do** - High impact, clearly worth it
|
|
72
|
+
- 👍 **Strong** - Good impact, should prioritize
|
|
73
|
+
- 🤔 **Maybe** - Interesting but needs more thought
|
|
74
|
+
- ❌ **Pass** - Not worth it right now
|
|
75
|
+
|
|
76
|
+
## Key Features
|
|
77
|
+
|
|
78
|
+
### Systematic Exploration
|
|
79
|
+
|
|
80
|
+
Forces you through 10 idea categories to ensure comprehensive coverage:
|
|
81
|
+
|
|
82
|
+
- Speed - What takes too long?
|
|
83
|
+
- Automation - What's repetitive?
|
|
84
|
+
- Intelligence - What could be smarter?
|
|
85
|
+
- Integration - What else do users use?
|
|
86
|
+
- Collaboration - How do users work together?
|
|
87
|
+
- Personalization - How is everyone different?
|
|
88
|
+
- Visibility - What's hidden that shouldn't be?
|
|
89
|
+
- Confidence - What creates anxiety?
|
|
90
|
+
- Delight - What could spark joy?
|
|
91
|
+
- Access - Who can't use this yet?
|
|
92
|
+
|
|
93
|
+
### Documentation-First
|
|
94
|
+
|
|
95
|
+
All session outputs are saved to `.claude/docs/ai/<product-or-area>/10x/session-N.md`. This ensures:
|
|
96
|
+
- Full traceability of strategic thinking
|
|
97
|
+
- Easy sharing with team members
|
|
98
|
+
- Historical record of decisions
|
|
99
|
+
- No chat clutter - pure strategy focus
|
|
100
|
+
|
|
101
|
+
### Pure Strategy Mode
|
|
102
|
+
|
|
103
|
+
This skill is **code-free**. No implementation, no prototypes - just strategic thinking. Implementation comes later, after you've identified the right moves.
|
|
104
|
+
|
|
105
|
+
## Usage Examples
|
|
106
|
+
|
|
107
|
+
### Example 1: SaaS Dashboard Product
|
|
108
|
+
|
|
109
|
+
```
|
|
110
|
+
User: I want to think about 10x opportunities for our analytics dashboard
|
|
111
|
+
|
|
112
|
+
[Skill activates and guides through:]
|
|
113
|
+
1. Understanding current dashboard capabilities
|
|
114
|
+
2. Exploring opportunities like:
|
|
115
|
+
- Massive: AI-powered anomaly detection that auto-investigates issues
|
|
116
|
+
- Medium: Collaborative annotations and shared insights
|
|
117
|
+
- Small: One-click report scheduling from any view
|
|
118
|
+
3. Prioritizing quick wins vs strategic bets
|
|
119
|
+
4. Output saved to `.claude/docs/ai/analytics-dashboard/10x/session-1.md`
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
### Example 2: Mobile App
|
|
123
|
+
|
|
124
|
+
```
|
|
125
|
+
User: What would make our fitness app 10x better?
|
|
126
|
+
|
|
127
|
+
[Skill explores:]
|
|
128
|
+
- Speed: Instant workout logging with voice
|
|
129
|
+
- Automation: Smart rest day recommendations
|
|
130
|
+
- Intelligence: Predictive injury prevention
|
|
131
|
+
- Collaboration: Virtual workout buddies
|
|
132
|
+
- Delight: Achievement celebrations that don't feel gamified
|
|
133
|
+
|
|
134
|
+
[Result: Prioritized list of 15 opportunities with clear next steps]
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
### Example 3: Developer Tool
|
|
138
|
+
|
|
139
|
+
```
|
|
140
|
+
User: Product strategy session for our API testing tool
|
|
141
|
+
|
|
142
|
+
[Skill identifies:]
|
|
143
|
+
- Do Now: Auto-generate test cases from API docs (2 weeks, huge value)
|
|
144
|
+
- Do Next: Team collaboration with shared test suites (1 month, unlocks enterprise)
|
|
145
|
+
- Explore: AI that writes tests by watching you use the API (3 months, could be transformative)
|
|
146
|
+
|
|
147
|
+
[Output: Full strategic document with rationale and risk assessment]
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
## What You Get
|
|
151
|
+
|
|
152
|
+
After a session, you'll have:
|
|
153
|
+
|
|
154
|
+
- **Current Value Assessment** - Clear understanding of your product's core value proposition
|
|
155
|
+
- **Categorized Opportunities** - Ideas organized by scale (Massive/Medium/Small)
|
|
156
|
+
- **Scored Ideas** - Each opportunity evaluated on 6 criteria with clear scoring
|
|
157
|
+
- **Prioritized Roadmap** - Stack-ranked into Do Now / Do Next / Explore / Backlog
|
|
158
|
+
- **Evidence-Based Reasoning** - Ideas grounded in codebase research and user behavior
|
|
159
|
+
- **Unblocked Questions** - Clear list of assumptions to validate and decisions to make
|
|
160
|
+
|
|
161
|
+
## Core Principles
|
|
162
|
+
|
|
163
|
+
1. **Think Big First** - Don't self-censor with "that's too hard"
|
|
164
|
+
2. **Small Can Be Huge** - Don't dismiss simple ideas; sometimes one button changes everything
|
|
165
|
+
3. **User Value > Feature Count** - 10 features adding 1% each ≠ 1 feature adding 10x
|
|
166
|
+
4. **Be Specific** - "Better UX" is not an idea; "One-click rescheduling from notification" is
|
|
167
|
+
5. **Question Assumptions** - "Users want X" may be wrong
|
|
168
|
+
6. **Compound Thinking** - Prefer features that get better over time
|
|
169
|
+
7. **No Safe Ideas** - If every idea is "obviously good," you're not thinking hard enough
|
|
170
|
+
8. **Cite Evidence** - Reference what you saw in codebase or research
|
|
171
|
+
|
|
172
|
+
## Tips for Best Results
|
|
173
|
+
|
|
174
|
+
### Before Starting
|
|
175
|
+
|
|
176
|
+
Provide context on:
|
|
177
|
+
- Product/Area you're thinking about
|
|
178
|
+
- Current state (brief description)
|
|
179
|
+
- Constraints (technical limits, timeline, team size)
|
|
180
|
+
|
|
181
|
+
### During the Session
|
|
182
|
+
|
|
183
|
+
- Be open to uncomfortable ideas
|
|
184
|
+
- Push back on assumptions
|
|
185
|
+
- Ask "what would make users tell their friends?"
|
|
186
|
+
- Consider both 10x team size and 1/10th team size scenarios
|
|
187
|
+
|
|
188
|
+
### After the Session
|
|
189
|
+
|
|
190
|
+
- Validate key assumptions with users
|
|
191
|
+
- Share the strategic document with your team
|
|
192
|
+
- Pick 1-2 quick wins to test first
|
|
193
|
+
- Revisit and update as you learn
|
|
194
|
+
|
|
195
|
+
## Output Location
|
|
196
|
+
|
|
197
|
+
All sessions are saved to:
|
|
198
|
+
```
|
|
199
|
+
.claude/docs/ai/<product-or-area>/10x/session-N.md
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
This keeps your strategic thinking organized, searchable, and shareable with your team.
|
|
203
|
+
|
|
204
|
+
## Not Included
|
|
205
|
+
|
|
206
|
+
This skill does NOT:
|
|
207
|
+
- Write code or implementation plans (use after strategy is clear)
|
|
208
|
+
- Make final decisions (provides recommendations, you decide)
|
|
209
|
+
- Replace user research (complements it with strategic analysis)
|
|
210
|
+
- Guarantee success (identifies high-potential opportunities to test)
|
|
211
|
+
|
|
212
|
+
## Related Skills
|
|
213
|
+
|
|
214
|
+
- `feature-planning` - For breaking down chosen features into implementation plans
|
|
215
|
+
- `implementation-blueprint` - For architecting how to build selected opportunities
|
|
216
|
+
- `dev-spec` - For creating detailed specs after strategy is set
|
|
217
|
+
- `critical-brainstorm` - For stress-testing specific ideas before committing
|
|
218
|
+
|
|
219
|
+
---
|
|
220
|
+
|
|
221
|
+
**Remember**: This skill is about finding the moves that matter. Not every idea will work, but the goal is to identify the ones worth testing that could fundamentally change your product's trajectory.
|