@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,692 @@
|
|
|
1
|
+
# Common Workflow Prompts
|
|
2
|
+
|
|
3
|
+
This document contains optimized prompts for common development workflows. Use these as templates when transforming prompts for specific task types.
|
|
4
|
+
|
|
5
|
+
## Table of Contents
|
|
6
|
+
|
|
7
|
+
1. [Codebase Understanding](#codebase-understanding)
|
|
8
|
+
2. [Bug Fixing](#bug-fixing)
|
|
9
|
+
3. [Feature Development](#feature-development)
|
|
10
|
+
4. [Testing](#testing)
|
|
11
|
+
5. [Refactoring](#refactoring)
|
|
12
|
+
6. [Code Review](#code-review)
|
|
13
|
+
7. [Documentation](#documentation)
|
|
14
|
+
8. [Git Operations](#git-operations)
|
|
15
|
+
9. [DevOps Tasks](#devops-tasks)
|
|
16
|
+
10. [Database Operations](#database-operations)
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
## Codebase Understanding
|
|
21
|
+
|
|
22
|
+
### Quick Overview
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
give me an overview of this codebase:
|
|
26
|
+
- main technologies and frameworks
|
|
27
|
+
- high-level architecture
|
|
28
|
+
- key directories and their purposes
|
|
29
|
+
- entry points (main files, API routes)
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### Understand a Module
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
explain the [module name] module in @[path]:
|
|
36
|
+
- what problem does it solve?
|
|
37
|
+
- what are the main components/classes/functions?
|
|
38
|
+
- how does it integrate with other parts of the codebase?
|
|
39
|
+
- what are the key data flows?
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### Trace a Flow
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
trace the [flow name] from start to finish:
|
|
46
|
+
1. where does it start? (user action, API call, etc.)
|
|
47
|
+
2. what components/services does it pass through?
|
|
48
|
+
3. what data transformations happen?
|
|
49
|
+
4. where does it end? (database, response, side effect)
|
|
50
|
+
list the files involved in order.
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
### Find Related Code
|
|
54
|
+
|
|
55
|
+
```
|
|
56
|
+
find all code related to [feature/concept]:
|
|
57
|
+
- search for [relevant terms]
|
|
58
|
+
- identify the main files that implement it
|
|
59
|
+
- find tests for this functionality
|
|
60
|
+
- note any configuration or environment dependencies
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### Understand a Decision
|
|
64
|
+
|
|
65
|
+
```
|
|
66
|
+
look through git history for @[file/directory] and explain:
|
|
67
|
+
- when was this approach chosen?
|
|
68
|
+
- what alternatives were considered (check PRs/issues)?
|
|
69
|
+
- why was this decision made?
|
|
70
|
+
- are there any TODO comments or known limitations?
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
## Bug Fixing
|
|
76
|
+
|
|
77
|
+
### Investigate and Fix
|
|
78
|
+
|
|
79
|
+
```
|
|
80
|
+
[describe symptom in detail]
|
|
81
|
+
|
|
82
|
+
INVESTIGATE:
|
|
83
|
+
1. reproduce the issue using: [steps or conditions]
|
|
84
|
+
2. check [likely locations]
|
|
85
|
+
3. add logging if needed to trace the flow
|
|
86
|
+
4. identify the root cause, not just the symptom
|
|
87
|
+
|
|
88
|
+
FIX:
|
|
89
|
+
1. write a failing test that reproduces the bug
|
|
90
|
+
2. implement the fix
|
|
91
|
+
3. verify the test passes
|
|
92
|
+
4. check for similar issues elsewhere
|
|
93
|
+
|
|
94
|
+
VERIFY:
|
|
95
|
+
- run the full test suite
|
|
96
|
+
- manually test the fix
|
|
97
|
+
- confirm no regressions
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
### Debug Build Failure
|
|
101
|
+
|
|
102
|
+
```
|
|
103
|
+
the build fails with this error:
|
|
104
|
+
[paste actual error]
|
|
105
|
+
|
|
106
|
+
investigate:
|
|
107
|
+
1. what file/line is causing the error?
|
|
108
|
+
2. what changed recently that might have caused this?
|
|
109
|
+
3. is this a type error, syntax error, or dependency issue?
|
|
110
|
+
|
|
111
|
+
fix the root cause (don't use @ts-ignore or suppress the error).
|
|
112
|
+
run `[build command]` to verify the fix.
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
### Debug Runtime Error
|
|
116
|
+
|
|
117
|
+
```
|
|
118
|
+
getting this error at runtime:
|
|
119
|
+
[paste error with stack trace]
|
|
120
|
+
|
|
121
|
+
investigate:
|
|
122
|
+
1. what is the immediate cause?
|
|
123
|
+
2. what input/state leads to this error?
|
|
124
|
+
3. where should validation/handling be added?
|
|
125
|
+
|
|
126
|
+
fix:
|
|
127
|
+
1. add proper error handling or validation
|
|
128
|
+
2. write a test for this case
|
|
129
|
+
3. verify the error no longer occurs
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
### Performance Issue
|
|
133
|
+
|
|
134
|
+
```
|
|
135
|
+
[describe performance symptom]
|
|
136
|
+
|
|
137
|
+
PROFILE:
|
|
138
|
+
1. measure current performance: [how]
|
|
139
|
+
2. identify the bottleneck using [tools/approach]
|
|
140
|
+
3. document baseline metrics
|
|
141
|
+
|
|
142
|
+
OPTIMIZE:
|
|
143
|
+
1. implement the most impactful fix first
|
|
144
|
+
2. measure improvement
|
|
145
|
+
3. repeat if needed
|
|
146
|
+
|
|
147
|
+
TARGET: [specific metric goal]
|
|
148
|
+
verify with [benchmark/test]
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
---
|
|
152
|
+
|
|
153
|
+
## Feature Development
|
|
154
|
+
|
|
155
|
+
### New Feature (Full Workflow)
|
|
156
|
+
|
|
157
|
+
```
|
|
158
|
+
implement [feature description]
|
|
159
|
+
|
|
160
|
+
PHASE 1 - UNDERSTAND:
|
|
161
|
+
- read @[related code] to understand existing patterns
|
|
162
|
+
- identify where the new feature integrates
|
|
163
|
+
- note any dependencies or constraints
|
|
164
|
+
|
|
165
|
+
PHASE 2 - PLAN:
|
|
166
|
+
- list the components/files that need to be created/modified
|
|
167
|
+
- define the data model if applicable
|
|
168
|
+
- identify edge cases to handle
|
|
169
|
+
- write the plan to [location] for review
|
|
170
|
+
|
|
171
|
+
PHASE 3 - IMPLEMENT:
|
|
172
|
+
- follow existing patterns from @[example file]
|
|
173
|
+
- [specific implementation steps]
|
|
174
|
+
- run tests after each significant change
|
|
175
|
+
|
|
176
|
+
PHASE 4 - VERIFY:
|
|
177
|
+
- add tests for: [specific test cases]
|
|
178
|
+
- manual testing: [testing steps]
|
|
179
|
+
- verify [success criteria]
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
### Add UI Component
|
|
183
|
+
|
|
184
|
+
```
|
|
185
|
+
create a [component name] component following existing patterns.
|
|
186
|
+
|
|
187
|
+
REFERENCE: @[similar component path]
|
|
188
|
+
|
|
189
|
+
REQUIREMENTS:
|
|
190
|
+
- [visual/behavior requirement 1]
|
|
191
|
+
- [visual/behavior requirement 2]
|
|
192
|
+
- responsive at [breakpoints]
|
|
193
|
+
- accessible (keyboard navigation, ARIA)
|
|
194
|
+
|
|
195
|
+
IMPLEMENTATION:
|
|
196
|
+
1. create component in @[path]
|
|
197
|
+
2. add styles following @[style patterns]
|
|
198
|
+
3. add to storybook if applicable
|
|
199
|
+
4. write tests for: [test cases]
|
|
200
|
+
|
|
201
|
+
VERIFY:
|
|
202
|
+
- visual check at all breakpoints
|
|
203
|
+
- keyboard navigation works
|
|
204
|
+
- screen reader announces correctly
|
|
205
|
+
```
|
|
206
|
+
|
|
207
|
+
### Add API Endpoint
|
|
208
|
+
|
|
209
|
+
```
|
|
210
|
+
add [HTTP method] /api/[path] endpoint.
|
|
211
|
+
|
|
212
|
+
REFERENCE: follow the pattern in @[similar endpoint]
|
|
213
|
+
|
|
214
|
+
REQUIREMENTS:
|
|
215
|
+
- input validation: [validation rules]
|
|
216
|
+
- authentication: [auth requirements]
|
|
217
|
+
- response format: [describe response]
|
|
218
|
+
- error handling: [error cases]
|
|
219
|
+
|
|
220
|
+
IMPLEMENTATION:
|
|
221
|
+
1. add route handler in @[router location]
|
|
222
|
+
2. add validation middleware/logic
|
|
223
|
+
3. implement business logic in @[service location]
|
|
224
|
+
4. add to API documentation
|
|
225
|
+
|
|
226
|
+
TEST:
|
|
227
|
+
- success case
|
|
228
|
+
- validation errors
|
|
229
|
+
- auth errors
|
|
230
|
+
- not found (if applicable)
|
|
231
|
+
```
|
|
232
|
+
|
|
233
|
+
### Add Database Feature
|
|
234
|
+
|
|
235
|
+
```
|
|
236
|
+
add [database feature description].
|
|
237
|
+
|
|
238
|
+
MIGRATION:
|
|
239
|
+
1. create migration in @[migrations path]
|
|
240
|
+
2. [describe schema changes]
|
|
241
|
+
3. make migration reversible
|
|
242
|
+
|
|
243
|
+
MODEL:
|
|
244
|
+
1. update model in @[model path]
|
|
245
|
+
2. add types in @[types path]
|
|
246
|
+
3. update repository methods
|
|
247
|
+
|
|
248
|
+
VERIFY:
|
|
249
|
+
1. run migration locally
|
|
250
|
+
2. verify with a query
|
|
251
|
+
3. run existing tests (no regressions)
|
|
252
|
+
4. add new tests for the feature
|
|
253
|
+
```
|
|
254
|
+
|
|
255
|
+
---
|
|
256
|
+
|
|
257
|
+
## Testing
|
|
258
|
+
|
|
259
|
+
### Add Unit Tests
|
|
260
|
+
|
|
261
|
+
```
|
|
262
|
+
add unit tests for @[file path].
|
|
263
|
+
|
|
264
|
+
COVERAGE:
|
|
265
|
+
- [function 1]: test [cases]
|
|
266
|
+
- [function 2]: test [cases]
|
|
267
|
+
- edge cases: [list]
|
|
268
|
+
- error cases: [list]
|
|
269
|
+
|
|
270
|
+
APPROACH:
|
|
271
|
+
- follow patterns in @[existing test file]
|
|
272
|
+
- mock [external dependencies]
|
|
273
|
+
- use [test data approach]
|
|
274
|
+
|
|
275
|
+
TARGET: [coverage percentage]% coverage for this file
|
|
276
|
+
run tests after implementing each test case.
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
### Add Integration Tests
|
|
280
|
+
|
|
281
|
+
```
|
|
282
|
+
add integration tests for [feature/flow].
|
|
283
|
+
|
|
284
|
+
TEST THE COMPLETE FLOW:
|
|
285
|
+
1. [step 1]
|
|
286
|
+
2. [step 2]
|
|
287
|
+
3. [step 3]
|
|
288
|
+
|
|
289
|
+
SCENARIOS:
|
|
290
|
+
- happy path: [describe]
|
|
291
|
+
- error case 1: [describe]
|
|
292
|
+
- error case 2: [describe]
|
|
293
|
+
- edge case: [describe]
|
|
294
|
+
|
|
295
|
+
SETUP:
|
|
296
|
+
- use @[test setup file] for database/fixtures
|
|
297
|
+
- mock only [external services]
|
|
298
|
+
- use real [internal services]
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
### Add E2E Tests
|
|
302
|
+
|
|
303
|
+
```
|
|
304
|
+
add end-to-end tests for [user flow].
|
|
305
|
+
|
|
306
|
+
USER JOURNEY:
|
|
307
|
+
1. user [action 1]
|
|
308
|
+
2. user [action 2]
|
|
309
|
+
3. user [action 3]
|
|
310
|
+
4. verify [final state]
|
|
311
|
+
|
|
312
|
+
TEST CASES:
|
|
313
|
+
- complete flow succeeds
|
|
314
|
+
- [error scenario 1]
|
|
315
|
+
- [error scenario 2]
|
|
316
|
+
|
|
317
|
+
IMPLEMENTATION:
|
|
318
|
+
- use [E2E framework] in @[test directory]
|
|
319
|
+
- follow patterns in @[existing E2E test]
|
|
320
|
+
- use test fixtures for data
|
|
321
|
+
```
|
|
322
|
+
|
|
323
|
+
### Fix Failing Tests
|
|
324
|
+
|
|
325
|
+
```
|
|
326
|
+
the following tests are failing:
|
|
327
|
+
[paste test output]
|
|
328
|
+
|
|
329
|
+
INVESTIGATE:
|
|
330
|
+
1. run each test individually to reproduce
|
|
331
|
+
2. identify if it's a test problem or code problem
|
|
332
|
+
3. check recent changes that might have caused this
|
|
333
|
+
|
|
334
|
+
FIX:
|
|
335
|
+
- if test is wrong: update test to match correct behavior
|
|
336
|
+
- if code is wrong: fix code, not the test
|
|
337
|
+
- run full suite to check for ripple effects
|
|
338
|
+
```
|
|
339
|
+
|
|
340
|
+
---
|
|
341
|
+
|
|
342
|
+
## Refactoring
|
|
343
|
+
|
|
344
|
+
### Extract Component/Function
|
|
345
|
+
|
|
346
|
+
```
|
|
347
|
+
extract [what to extract] from @[source file] into [new location].
|
|
348
|
+
|
|
349
|
+
IDENTIFY:
|
|
350
|
+
- lines [X-Y] in source file
|
|
351
|
+
- what inputs does it need?
|
|
352
|
+
- what does it return/produce?
|
|
353
|
+
|
|
354
|
+
EXTRACT:
|
|
355
|
+
1. create new [file/function/component] at @[path]
|
|
356
|
+
2. move the code, add proper types
|
|
357
|
+
3. update imports in original file
|
|
358
|
+
4. export from new location
|
|
359
|
+
|
|
360
|
+
VERIFY:
|
|
361
|
+
- all tests still pass
|
|
362
|
+
- no behavior changes
|
|
363
|
+
- lint passes
|
|
364
|
+
```
|
|
365
|
+
|
|
366
|
+
### Consolidate Duplicates
|
|
367
|
+
|
|
368
|
+
```
|
|
369
|
+
consolidate duplicate [code type] across:
|
|
370
|
+
- @[file 1]: lines [X-Y]
|
|
371
|
+
- @[file 2]: lines [X-Y]
|
|
372
|
+
- @[file 3]: lines [X-Y]
|
|
373
|
+
|
|
374
|
+
CREATE:
|
|
375
|
+
1. shared utility in @[new location]
|
|
376
|
+
2. parameterize differences
|
|
377
|
+
3. add proper types
|
|
378
|
+
|
|
379
|
+
UPDATE:
|
|
380
|
+
1. replace each duplicate with shared utility
|
|
381
|
+
2. run tests after each replacement
|
|
382
|
+
|
|
383
|
+
VERIFY:
|
|
384
|
+
- behavior unchanged (tests pass)
|
|
385
|
+
- no more duplicates (search confirms)
|
|
386
|
+
```
|
|
387
|
+
|
|
388
|
+
### Modernize Code
|
|
389
|
+
|
|
390
|
+
```
|
|
391
|
+
modernize @[file path]:
|
|
392
|
+
- convert [old pattern] to [new pattern]
|
|
393
|
+
- update syntax to [standard/version]
|
|
394
|
+
- add TypeScript types if missing
|
|
395
|
+
|
|
396
|
+
CHANGES TO MAKE:
|
|
397
|
+
1. [specific change 1]
|
|
398
|
+
2. [specific change 2]
|
|
399
|
+
3. [specific change 3]
|
|
400
|
+
|
|
401
|
+
CONSTRAINTS:
|
|
402
|
+
- maintain same public API
|
|
403
|
+
- all existing tests must pass
|
|
404
|
+
- make one change at a time, test after each
|
|
405
|
+
```
|
|
406
|
+
|
|
407
|
+
---
|
|
408
|
+
|
|
409
|
+
## Code Review
|
|
410
|
+
|
|
411
|
+
### Review for Quality
|
|
412
|
+
|
|
413
|
+
```
|
|
414
|
+
review @[file/PR] for code quality:
|
|
415
|
+
- naming clarity and consistency
|
|
416
|
+
- function/method size and complexity
|
|
417
|
+
- proper error handling
|
|
418
|
+
- appropriate comments (not too many, not too few)
|
|
419
|
+
- following project conventions from @[CLAUDE.md or style guide]
|
|
420
|
+
|
|
421
|
+
provide specific line references for any issues.
|
|
422
|
+
```
|
|
423
|
+
|
|
424
|
+
### Review for Security
|
|
425
|
+
|
|
426
|
+
```
|
|
427
|
+
review @[file/module] for security:
|
|
428
|
+
- input validation completeness
|
|
429
|
+
- SQL injection vulnerabilities
|
|
430
|
+
- XSS vulnerabilities
|
|
431
|
+
- authentication/authorization checks
|
|
432
|
+
- sensitive data handling
|
|
433
|
+
- error messages that leak information
|
|
434
|
+
|
|
435
|
+
rate each issue by severity (critical/high/medium/low).
|
|
436
|
+
provide fix suggestions.
|
|
437
|
+
```
|
|
438
|
+
|
|
439
|
+
### Review for Performance
|
|
440
|
+
|
|
441
|
+
```
|
|
442
|
+
review @[file/module] for performance:
|
|
443
|
+
- unnecessary re-renders (React)
|
|
444
|
+
- N+1 queries
|
|
445
|
+
- missing indexes (if database)
|
|
446
|
+
- unoptimized loops
|
|
447
|
+
- memory leaks (event listeners, subscriptions)
|
|
448
|
+
- large bundle imports
|
|
449
|
+
|
|
450
|
+
estimate impact of each issue.
|
|
451
|
+
suggest fixes with expected improvement.
|
|
452
|
+
```
|
|
453
|
+
|
|
454
|
+
---
|
|
455
|
+
|
|
456
|
+
## Documentation
|
|
457
|
+
|
|
458
|
+
### Document API
|
|
459
|
+
|
|
460
|
+
```
|
|
461
|
+
add documentation for @[API file]:
|
|
462
|
+
|
|
463
|
+
FOR EACH ENDPOINT:
|
|
464
|
+
- HTTP method and path
|
|
465
|
+
- description of what it does
|
|
466
|
+
- request parameters/body (with types)
|
|
467
|
+
- response format (with types)
|
|
468
|
+
- possible error codes
|
|
469
|
+
- authentication requirements
|
|
470
|
+
- example request/response
|
|
471
|
+
|
|
472
|
+
format as [OpenAPI/JSDoc/markdown].
|
|
473
|
+
follow existing docs in @[existing docs].
|
|
474
|
+
```
|
|
475
|
+
|
|
476
|
+
### Document Component
|
|
477
|
+
|
|
478
|
+
```
|
|
479
|
+
add documentation for @[component file]:
|
|
480
|
+
- what the component does
|
|
481
|
+
- props with types and descriptions
|
|
482
|
+
- usage examples
|
|
483
|
+
- accessibility considerations
|
|
484
|
+
- related components
|
|
485
|
+
|
|
486
|
+
add as JSDoc comments and/or storybook stories.
|
|
487
|
+
```
|
|
488
|
+
|
|
489
|
+
### Document Function
|
|
490
|
+
|
|
491
|
+
```
|
|
492
|
+
add JSDoc documentation to functions in @[file]:
|
|
493
|
+
- @description - what it does
|
|
494
|
+
- @param - each parameter with type
|
|
495
|
+
- @returns - return type and meaning
|
|
496
|
+
- @throws - errors that can be thrown
|
|
497
|
+
- @example - usage example
|
|
498
|
+
|
|
499
|
+
follow the documentation style in @[similar documented file].
|
|
500
|
+
```
|
|
501
|
+
|
|
502
|
+
---
|
|
503
|
+
|
|
504
|
+
## Git Operations
|
|
505
|
+
|
|
506
|
+
### Create Meaningful Commit
|
|
507
|
+
|
|
508
|
+
```
|
|
509
|
+
review the current changes and create a commit:
|
|
510
|
+
1. run `git diff` to see all changes
|
|
511
|
+
2. group related changes if needed
|
|
512
|
+
3. write a descriptive commit message:
|
|
513
|
+
- first line: type(scope): brief description
|
|
514
|
+
- blank line
|
|
515
|
+
- body: explain WHY, not just WHAT
|
|
516
|
+
4. commit the changes
|
|
517
|
+
```
|
|
518
|
+
|
|
519
|
+
### Create PR
|
|
520
|
+
|
|
521
|
+
```
|
|
522
|
+
create a pull request for the current changes:
|
|
523
|
+
|
|
524
|
+
1. verify all changes are committed
|
|
525
|
+
2. push to remote
|
|
526
|
+
3. create PR with:
|
|
527
|
+
- clear title summarizing the change
|
|
528
|
+
- description explaining:
|
|
529
|
+
- what changed and why
|
|
530
|
+
- how to test
|
|
531
|
+
- any breaking changes
|
|
532
|
+
- related issues
|
|
533
|
+
4. request appropriate reviewers
|
|
534
|
+
```
|
|
535
|
+
|
|
536
|
+
### Resolve Merge Conflict
|
|
537
|
+
|
|
538
|
+
```
|
|
539
|
+
resolve merge conflict between [branch A] and [branch B]:
|
|
540
|
+
|
|
541
|
+
1. understand what each branch changed:
|
|
542
|
+
- [branch A] changed: [what]
|
|
543
|
+
- [branch B] changed: [what]
|
|
544
|
+
|
|
545
|
+
2. determine correct resolution:
|
|
546
|
+
- keep both changes? how do they combine?
|
|
547
|
+
- keep one? which is correct?
|
|
548
|
+
- need new code? what's the right merge?
|
|
549
|
+
|
|
550
|
+
3. resolve the conflict
|
|
551
|
+
4. run tests to verify nothing broke
|
|
552
|
+
5. commit the resolution with clear message
|
|
553
|
+
```
|
|
554
|
+
|
|
555
|
+
---
|
|
556
|
+
|
|
557
|
+
## DevOps Tasks
|
|
558
|
+
|
|
559
|
+
### Set Up CI Pipeline
|
|
560
|
+
|
|
561
|
+
```
|
|
562
|
+
add CI pipeline in .github/workflows/ci.yml:
|
|
563
|
+
|
|
564
|
+
TRIGGERS:
|
|
565
|
+
- push to main
|
|
566
|
+
- all pull requests
|
|
567
|
+
|
|
568
|
+
JOBS:
|
|
569
|
+
1. install dependencies (cache node_modules)
|
|
570
|
+
2. lint (npm run lint)
|
|
571
|
+
3. type check (npm run typecheck)
|
|
572
|
+
4. test with coverage (npm run test:coverage)
|
|
573
|
+
5. build (npm run build)
|
|
574
|
+
|
|
575
|
+
REQUIREMENTS:
|
|
576
|
+
- fail if any step fails
|
|
577
|
+
- fail if coverage below [X]%
|
|
578
|
+
- add status checks to PR
|
|
579
|
+
|
|
580
|
+
follow patterns from @[existing workflow file].
|
|
581
|
+
```
|
|
582
|
+
|
|
583
|
+
### Create Dockerfile
|
|
584
|
+
|
|
585
|
+
```
|
|
586
|
+
create Dockerfile for the application:
|
|
587
|
+
|
|
588
|
+
REQUIREMENTS:
|
|
589
|
+
- multi-stage build (builder + production)
|
|
590
|
+
- use [base image]
|
|
591
|
+
- optimize for small final image
|
|
592
|
+
- proper layer caching for dependencies
|
|
593
|
+
- non-root user for security
|
|
594
|
+
- health check endpoint
|
|
595
|
+
|
|
596
|
+
create docker-compose.yml for local development with:
|
|
597
|
+
- app service with hot reloading
|
|
598
|
+
- [database service]
|
|
599
|
+
- [other services]
|
|
600
|
+
|
|
601
|
+
test with `docker-compose up` and verify app works.
|
|
602
|
+
```
|
|
603
|
+
|
|
604
|
+
### Add Monitoring
|
|
605
|
+
|
|
606
|
+
```
|
|
607
|
+
add monitoring/logging to @[service/app]:
|
|
608
|
+
|
|
609
|
+
LOGGING:
|
|
610
|
+
- structured JSON logs
|
|
611
|
+
- include: timestamp, level, message, request ID
|
|
612
|
+
- log levels: error, warn, info, debug
|
|
613
|
+
- sensitive data redaction
|
|
614
|
+
|
|
615
|
+
METRICS:
|
|
616
|
+
- request duration
|
|
617
|
+
- error rate
|
|
618
|
+
- [custom metrics]
|
|
619
|
+
|
|
620
|
+
ALERTS:
|
|
621
|
+
- error rate > [threshold]
|
|
622
|
+
- latency > [threshold]
|
|
623
|
+
|
|
624
|
+
follow patterns in @[existing instrumented service].
|
|
625
|
+
```
|
|
626
|
+
|
|
627
|
+
---
|
|
628
|
+
|
|
629
|
+
## Database Operations
|
|
630
|
+
|
|
631
|
+
### Create Migration
|
|
632
|
+
|
|
633
|
+
```
|
|
634
|
+
create database migration for: [describe change]
|
|
635
|
+
|
|
636
|
+
MIGRATION:
|
|
637
|
+
1. create migration file in @[migrations directory]
|
|
638
|
+
2. name: [timestamp]_[descriptive_name]
|
|
639
|
+
3. implement:
|
|
640
|
+
- up: [changes to apply]
|
|
641
|
+
- down: [how to reverse]
|
|
642
|
+
|
|
643
|
+
VERIFY:
|
|
644
|
+
1. run migration locally
|
|
645
|
+
2. verify with query
|
|
646
|
+
3. run rollback
|
|
647
|
+
4. verify rollback worked
|
|
648
|
+
5. run migration again
|
|
649
|
+
```
|
|
650
|
+
|
|
651
|
+
### Optimize Query
|
|
652
|
+
|
|
653
|
+
```
|
|
654
|
+
optimize slow query in @[repository/file]:
|
|
655
|
+
|
|
656
|
+
CURRENT QUERY: [describe or paste]
|
|
657
|
+
CURRENT PERFORMANCE: [time/explain output]
|
|
658
|
+
|
|
659
|
+
INVESTIGATE:
|
|
660
|
+
1. run EXPLAIN ANALYZE
|
|
661
|
+
2. identify missing indexes
|
|
662
|
+
3. check for N+1 queries
|
|
663
|
+
4. look for unnecessary columns/joins
|
|
664
|
+
|
|
665
|
+
OPTIMIZE:
|
|
666
|
+
1. add indexes if needed (via migration)
|
|
667
|
+
2. rewrite query if needed
|
|
668
|
+
3. add pagination if missing
|
|
669
|
+
|
|
670
|
+
TARGET: [performance goal]
|
|
671
|
+
measure and document improvement.
|
|
672
|
+
```
|
|
673
|
+
|
|
674
|
+
### Add Seed Data
|
|
675
|
+
|
|
676
|
+
```
|
|
677
|
+
create seed script for [purpose] in @[seeds directory]:
|
|
678
|
+
|
|
679
|
+
DATA TO CREATE:
|
|
680
|
+
- [X] records of [type 1]
|
|
681
|
+
- [X] records of [type 2]
|
|
682
|
+
- proper relationships between entities
|
|
683
|
+
- realistic data (use Faker if available)
|
|
684
|
+
|
|
685
|
+
REQUIREMENTS:
|
|
686
|
+
- idempotent (safe to run multiple times)
|
|
687
|
+
- clean up option
|
|
688
|
+
- environment-aware (don't run in production)
|
|
689
|
+
|
|
690
|
+
add `npm run db:seed` script to package.json.
|
|
691
|
+
verify by running and checking database.
|
|
692
|
+
```
|