@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,114 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: implement
|
|
3
|
+
description: Headless plan executor — implement an approved plan phase-by-phase on the current feature branch, TDD-first, committing per phase
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# /caddis:implement — execute an approved plan (headless driver)
|
|
7
|
+
|
|
8
|
+
Implement the plan at **$ARGUMENTS** (falls back to the `DOCKET_PLAN` env var if `$ARGUMENTS` is empty).
|
|
9
|
+
|
|
10
|
+
This command is the **docket Implement lane's driver**. It is spawned autonomously by the docket runner —
|
|
11
|
+
**no human is present**. It does not design or re-plan: the plan is the intelligence, you are the executor.
|
|
12
|
+
The runner independently re-runs the tests and a fresh code-review after you finish and decides success
|
|
13
|
+
itself — so your job is to implement faithfully, commit cleanly, and report honestly. Overstating success
|
|
14
|
+
does not help you; the runner will catch it.
|
|
15
|
+
|
|
16
|
+
## Non-negotiable safety rules (the runner enforces these too — violating them fails the whole run)
|
|
17
|
+
These override everything below. They exist because branch isolation and the runner's post-run backstops
|
|
18
|
+
depend on them:
|
|
19
|
+
|
|
20
|
+
- **Work ONLY on the current branch.** You are already on the feature branch (`DOCKET_BRANCH`, e.g.
|
|
21
|
+
`agent/<slug>`). **NEVER** run `git checkout`, `git switch`, `git branch`, `git switch -c`, or any
|
|
22
|
+
command that changes, creates, or leaves the current branch. If you somehow find yourself on the default
|
|
23
|
+
branch (`DOCKET_DEFAULT_BRANCH`), **stop immediately, do not commit**, and emit the failure JSON below —
|
|
24
|
+
a commit on the default branch fails the run.
|
|
25
|
+
- **NEVER touch git remotes.** No `git push`, `git pull`, `git fetch`, `git remote`, no PR, no merge. The
|
|
26
|
+
runner never pushes; neither do you.
|
|
27
|
+
- **NEVER edit your own success criteria.** Do not modify `.caddis/PROJECT-FACTS.md`, and do not change
|
|
28
|
+
the project's test command anywhere (config, CI, package scripts). The runner treats any such edit as
|
|
29
|
+
tampering and fails the run. If the plan asks you to touch these, skip that step and note it in the
|
|
30
|
+
review file instead.
|
|
31
|
+
- **Commit per phase, on this branch, with a normal commit.** Use `git add <paths> && git commit -m "…"`.
|
|
32
|
+
Do not use `--no-verify` (a pre-commit hook guards the branch — let it run). Do not amend or rebase
|
|
33
|
+
prior commits. One phase → one (or more) commit(s); never one giant end-of-run commit.
|
|
34
|
+
- **Never ask a question, never pause, never wait for input.** No human will answer. Never use
|
|
35
|
+
AskUserQuestion. Where the plan leaves a genuine gap, make the smallest reasonable assumption, record it
|
|
36
|
+
in the review file, and proceed — asking is always wrong here.
|
|
37
|
+
|
|
38
|
+
## What to do
|
|
39
|
+
|
|
40
|
+
**1. Read the plan.** Load the plan file (`$ARGUMENTS` / `DOCKET_PLAN`). Read its `## Phases`, `## Affected
|
|
41
|
+
files`, `## Constraints & decisions`, and `## Tracker`. Read the `AGENTS.md` at the repo root and in each
|
|
42
|
+
folder you will touch (the canonical rules; `CLAUDE.md` is an `@AGENTS.md` shim), and
|
|
43
|
+
`.caddis/PROJECT-FACTS.md` if present (for the real run/test commands) —
|
|
44
|
+
**read it, never edit it**. Identify the test command the plan/facts specify so you can run it yourself.
|
|
45
|
+
|
|
46
|
+
**2. Determine where to resume.** The `## Tracker` table is the resume signal. Start at the first phase whose
|
|
47
|
+
status is not `done`/`✅`. If every phase is already done, verify the tests are green and go straight to the
|
|
48
|
+
report — do not redo completed work.
|
|
49
|
+
|
|
50
|
+
**3. Implement each remaining phase, TDD-first.** For each phase, in order:
|
|
51
|
+
- **RED** — write the failing test(s) the phase names (`<test file>::<case>`). Run them; confirm they
|
|
52
|
+
fail for the right reason (the missing behavior, not an import error). If a phase genuinely has no
|
|
53
|
+
testable surface, say so in the review file and implement the minimal change directly.
|
|
54
|
+
- **GREEN** — write the **minimum** code to pass. No speculative abstraction, no scope creep beyond the
|
|
55
|
+
phase. Run the phase's tests; confirm green.
|
|
56
|
+
- **REFACTOR** — clean names/structure/duplication while keeping green.
|
|
57
|
+
- **VERIFY** — run the phase's exit-gate check (the literal command the plan names) and the relevant
|
|
58
|
+
suite so you didn't regress. Do not claim a state you did not run.
|
|
59
|
+
- **COMMIT** — `git add` the phase's files and `git commit` with the phase's conventional-commit message
|
|
60
|
+
(from the plan, or a faithful equivalent). Stay on the current branch.
|
|
61
|
+
- **UPDATE THE TRACKER** — edit the plan's `## Tracker` row for this phase: set Status to `done`, fill
|
|
62
|
+
the short commit hash (`git rev-parse --short HEAD`) and a one-line note. This is what lets a future
|
|
63
|
+
session (or the runner) see progress. Commit the Tracker update with the phase (or as a tiny follow-up
|
|
64
|
+
commit) — it lives in the plan file, which is fine to commit on this branch.
|
|
65
|
+
|
|
66
|
+
If a phase cannot be completed (a blocking gap the plan did not resolve, or a rule above would be
|
|
67
|
+
violated), **stop there**: leave later phases untouched, record the blocker in the review file, mark the
|
|
68
|
+
Tracker row `blocked`, and report honestly with `"tests":"failed"` — never fake completion.
|
|
69
|
+
|
|
70
|
+
**4. Run the tests yourself.** After the last phase you complete, run the project's full test command once
|
|
71
|
+
more and record the real result. The runner will re-run it independently and that decides success — but
|
|
72
|
+
you run it too so your reported `"tests"` value is truthful, not assumed. Never report `"passed"` on a
|
|
73
|
+
suite you did not see go green.
|
|
74
|
+
|
|
75
|
+
**5. Write a concise review file** to the path in the `DOCKET_REVIEW` env var (falls back to
|
|
76
|
+
`.caddis/reviews/<slug>.md`, where `<slug>` is `DOCKET_SLUG`). Create `.caddis/reviews/` if needed.
|
|
77
|
+
Keep it short and scannable — this is what the human reviewer reads before merging the branch:
|
|
78
|
+
|
|
79
|
+
```markdown
|
|
80
|
+
---
|
|
81
|
+
type: implement-review
|
|
82
|
+
feature: <slug>
|
|
83
|
+
branch: <DOCKET_BRANCH>
|
|
84
|
+
---
|
|
85
|
+
|
|
86
|
+
# Implement review — <feature>
|
|
87
|
+
**Branch:** `<DOCKET_BRANCH>` • **Phases done:** <N of M> • **Tests:** passed | failed
|
|
88
|
+
|
|
89
|
+
## What changed
|
|
90
|
+
- <phase 1 — one line: what shipped + commit hash>
|
|
91
|
+
- <phase 2 — …>
|
|
92
|
+
|
|
93
|
+
## Assumptions made
|
|
94
|
+
- <any gap the plan left that you decided — or "none">
|
|
95
|
+
|
|
96
|
+
## Not done / follow-ups
|
|
97
|
+
- <phases skipped/blocked and why — or "none; all phases complete">
|
|
98
|
+
|
|
99
|
+
## Test result
|
|
100
|
+
`<the exact test command>` → <passed | failed (exit N)> — <one line>
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
**6. End with EXACTLY one fenced `json` block** as the final output — nothing after it. `phases_done` is the
|
|
104
|
+
count of phases you actually completed (Tracker rows now `done`); `tests` is what your own run in step 4
|
|
105
|
+
showed; `review` is the review-file path you wrote:
|
|
106
|
+
|
|
107
|
+
```json
|
|
108
|
+
{"implemented":true,"phases_done":<int>,"tests":"passed|failed","review":".caddis/reviews/<slug>.md"}
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
If you had to stop before implementing anything (e.g. you were on the default branch, or the plan was
|
|
112
|
+
unreadable), still end with the block using `"implemented":false,"phases_done":0,"tests":"failed"` and put
|
|
113
|
+
the reason in the review file. The only acceptable final output is the code + commits + review file + this
|
|
114
|
+
one JSON block — never questions, never prose after the block.
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: javascript-typescript
|
|
3
|
+
description: JavaScript and TypeScript development with ES6+, Node.js, React, and modern web frameworks. Use for frontend, backend, or full-stack JavaScript/TypeScript projects.
|
|
4
|
+
source: wshobson/agents
|
|
5
|
+
license: MIT
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# JavaScript/TypeScript Development
|
|
9
|
+
|
|
10
|
+
## TypeScript Configuration
|
|
11
|
+
|
|
12
|
+
```json
|
|
13
|
+
{
|
|
14
|
+
"compilerOptions": {
|
|
15
|
+
"target": "ES2022",
|
|
16
|
+
"module": "ESNext",
|
|
17
|
+
"moduleResolution": "bundler",
|
|
18
|
+
"strict": true,
|
|
19
|
+
"noUncheckedIndexedAccess": true,
|
|
20
|
+
"noImplicitOverride": true,
|
|
21
|
+
"skipLibCheck": true,
|
|
22
|
+
"declaration": true,
|
|
23
|
+
"outDir": "./dist"
|
|
24
|
+
},
|
|
25
|
+
"include": ["src/**/*"],
|
|
26
|
+
"exclude": ["node_modules", "dist"]
|
|
27
|
+
}
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Type Patterns
|
|
31
|
+
|
|
32
|
+
### Utility Types
|
|
33
|
+
```typescript
|
|
34
|
+
// Pick specific properties
|
|
35
|
+
type UserPreview = Pick<User, 'id' | 'name'>;
|
|
36
|
+
|
|
37
|
+
// Omit properties
|
|
38
|
+
type CreateUser = Omit<User, 'id' | 'createdAt'>;
|
|
39
|
+
|
|
40
|
+
// Make all properties optional
|
|
41
|
+
type PartialUser = Partial<User>;
|
|
42
|
+
|
|
43
|
+
// Make all properties required
|
|
44
|
+
type RequiredUser = Required<User>;
|
|
45
|
+
|
|
46
|
+
// Extract union types
|
|
47
|
+
type Status = 'pending' | 'active' | 'inactive';
|
|
48
|
+
type ActiveStatus = Extract<Status, 'active' | 'pending'>;
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Discriminated Unions
|
|
52
|
+
```typescript
|
|
53
|
+
type Result<T> =
|
|
54
|
+
| { success: true; data: T }
|
|
55
|
+
| { success: false; error: Error };
|
|
56
|
+
|
|
57
|
+
function handleResult<T>(result: Result<T>) {
|
|
58
|
+
if (result.success) {
|
|
59
|
+
console.log(result.data); // T
|
|
60
|
+
} else {
|
|
61
|
+
console.error(result.error); // Error
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
### Generic Constraints
|
|
67
|
+
```typescript
|
|
68
|
+
interface HasId {
|
|
69
|
+
id: string | number;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
function findById<T extends HasId>(items: T[], id: T['id']): T | undefined {
|
|
73
|
+
return items.find(item => item.id === id);
|
|
74
|
+
}
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
## Modern JavaScript
|
|
78
|
+
|
|
79
|
+
### Destructuring & Spread
|
|
80
|
+
```javascript
|
|
81
|
+
const { name, ...rest } = user;
|
|
82
|
+
const merged = { ...defaults, ...options };
|
|
83
|
+
const [first, ...others] = items;
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
### Optional Chaining & Nullish Coalescing
|
|
87
|
+
```javascript
|
|
88
|
+
const city = user?.address?.city ?? 'Unknown';
|
|
89
|
+
const count = data?.items?.length ?? 0;
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
### Array Methods
|
|
93
|
+
```javascript
|
|
94
|
+
const adults = users.filter(u => u.age >= 18);
|
|
95
|
+
const names = users.map(u => u.name);
|
|
96
|
+
const total = items.reduce((sum, item) => sum + item.price, 0);
|
|
97
|
+
const hasAdmin = users.some(u => u.role === 'admin');
|
|
98
|
+
const allActive = users.every(u => u.active);
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
## React Patterns
|
|
102
|
+
|
|
103
|
+
```typescript
|
|
104
|
+
// Props with children
|
|
105
|
+
interface CardProps {
|
|
106
|
+
title: string;
|
|
107
|
+
children: React.ReactNode;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
// Event handlers
|
|
111
|
+
interface ButtonProps {
|
|
112
|
+
onClick: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
// Custom hooks
|
|
116
|
+
function useLocalStorage<T>(key: string, initial: T) {
|
|
117
|
+
const [value, setValue] = useState<T>(() => {
|
|
118
|
+
const stored = localStorage.getItem(key);
|
|
119
|
+
return stored ? JSON.parse(stored) : initial;
|
|
120
|
+
});
|
|
121
|
+
|
|
122
|
+
useEffect(() => {
|
|
123
|
+
localStorage.setItem(key, JSON.stringify(value));
|
|
124
|
+
}, [key, value]);
|
|
125
|
+
|
|
126
|
+
return [value, setValue] as const;
|
|
127
|
+
}
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
## Node.js Patterns
|
|
131
|
+
|
|
132
|
+
```typescript
|
|
133
|
+
// ES Modules
|
|
134
|
+
import { readFile } from 'node:fs/promises';
|
|
135
|
+
import { join } from 'node:path';
|
|
136
|
+
|
|
137
|
+
// Error handling
|
|
138
|
+
process.on('unhandledRejection', (reason) => {
|
|
139
|
+
console.error('Unhandled Rejection:', reason);
|
|
140
|
+
process.exit(1);
|
|
141
|
+
});
|
|
142
|
+
```
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: kb
|
|
3
|
+
description: Rebuild the KB index (.caddis/kb/DOC-MAP.md) — create it if missing, index un-indexed notes, report dangling links
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# /kb — bring the knowledge-base index up to date
|
|
7
|
+
|
|
8
|
+
Reconcile `.caddis/kb/DOC-MAP.md` (the KB index) with the notes on disk. Use this in a repo that
|
|
9
|
+
has the harness but no KB yet (the KB was introduced recently), or after adding/removing KB notes.
|
|
10
|
+
|
|
11
|
+
## Step 1 — locate the checker
|
|
12
|
+
It ships with the harness. Try, in order:
|
|
13
|
+
- `scripts/check_doc_coverage.py` — a project set up via `setup-project-ai` (checker copied in).
|
|
14
|
+
- `claude-harness/scripts/check_doc_coverage.py` — the harness source repo itself.
|
|
15
|
+
|
|
16
|
+
## Step 2 — run the reindexer
|
|
17
|
+
```
|
|
18
|
+
python <path>/check_doc_coverage.py --reindex
|
|
19
|
+
```
|
|
20
|
+
It is **additive and safe** — never deletes your rows:
|
|
21
|
+
- **Missing map** → creates `.caddis/kb/DOC-MAP.md` from a scaffold, pre-linking the repo's obvious
|
|
22
|
+
reference docs (README, `docs/…`) and any existing `.caddis/kb/*.md` notes.
|
|
23
|
+
- **Existing map** → indexes any KB note that isn't yet linked (adds a row with a placeholder description).
|
|
24
|
+
- **Dangling links** (a linked file that's gone) → **reported, not removed** — handle them in Step 3.
|
|
25
|
+
|
|
26
|
+
## Step 3 — finish by hand
|
|
27
|
+
Read the `[kb]` summary it printed, then:
|
|
28
|
+
- For each **newly auto-indexed** note, open it and replace the placeholder description with a real
|
|
29
|
+
one-line "what / when to read".
|
|
30
|
+
- If it reported **dangling** links (a linked file that's gone), decide per link:
|
|
31
|
+
- The note was **moved/renamed** → fix the link target by hand.
|
|
32
|
+
- The note is **gone for good** → remove its row. To clear all dangling rows at once, use the
|
|
33
|
+
destructive opt-in — but **show the dangling list and confirm with the user first**:
|
|
34
|
+
```
|
|
35
|
+
python <path>/check_doc_coverage.py --prune
|
|
36
|
+
```
|
|
37
|
+
`--prune` removes *only* index rows that link to missing files (never valid rows, never prose),
|
|
38
|
+
and still indexes any orphan notes in the same run.
|
|
39
|
+
|
|
40
|
+
## Step 4 — verify clean
|
|
41
|
+
```
|
|
42
|
+
python <path>/check_doc_coverage.py --check
|
|
43
|
+
```
|
|
44
|
+
Exit `0` = the index is honest (no dangling links; every note indexed). The SessionStart hook will now
|
|
45
|
+
surface the `[DOC-MAP]` "read the index first" pointer for future sessions in this repo.
|
|
46
|
+
|
|
47
|
+
## KB note format (OKF-lite — mandatory for every new note)
|
|
48
|
+
|
|
49
|
+
Every new `.caddis/kb/*.md` note starts with this frontmatter block (`type` is required;
|
|
50
|
+
the rest recommended). `DOC-MAP.md` is the index, not a note — it stays frontmatter-free:
|
|
51
|
+
|
|
52
|
+
```yaml
|
|
53
|
+
---
|
|
54
|
+
type: note # note | runbook | design | reference
|
|
55
|
+
title: <human title>
|
|
56
|
+
description: <one line — keep it identical to the note's DOC-MAP row description>
|
|
57
|
+
tags: [topic, topic]
|
|
58
|
+
timestamp: 2026-01-01 # ISO date of last substantive update
|
|
59
|
+
---
|
|
60
|
+
```
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: mermaid-db
|
|
3
|
+
description: Turn a SQL artifact (proc, view, query, .sql file, or table name) into a Mermaid diagram that explains it — git-diffable, saved as .md
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# /mermaid-db — diagram a SQL artifact as Mermaid
|
|
7
|
+
|
|
8
|
+
Explain a SQL artifact to a human as a **Mermaid** diagram (the default format: plain text, diffs cleanly
|
|
9
|
+
in git, renders natively in VS Code and Gitea, regenerable when the schema changes).
|
|
10
|
+
|
|
11
|
+
Input: **$ARGUMENTS**
|
|
12
|
+
|
|
13
|
+
## Do this
|
|
14
|
+
|
|
15
|
+
Load and follow the **`db-diagram`** skill end-to-end. In short:
|
|
16
|
+
|
|
17
|
+
1. **Get the SQL** — from a file path, a DB object name (look it up via a DB MCP tool if available, else
|
|
18
|
+
read-only `sqlcmd`/`psql`, else ask), the current file in context, or pasted SQL. Multiple objects →
|
|
19
|
+
ONE diagram of their relationships.
|
|
20
|
+
2. **Extract deterministically** — run the skill's `scripts/sql_to_graph.py` (sqlglot-based) to get the
|
|
21
|
+
typed node/edge graph + a Mermaid skeleton. Don't hand-derive the nodes when the script can run.
|
|
22
|
+
3. **Narrate** — add a business-terms paragraph above, a per-source-table description list below, the
|
|
23
|
+
source path/object name, a generation date, and the execution-plan caveat (verbatim, per the skill).
|
|
24
|
+
4. **Validate + save** — confirm the Mermaid parses; save as `.md` (default `docs/diagrams/<object>.md`,
|
|
25
|
+
overridable by a second argument). If the file exists, **diff and report what changed** — never
|
|
26
|
+
silently overwrite.
|
|
27
|
+
|
|
28
|
+
## Rules (from the skill — non-negotiable)
|
|
29
|
+
|
|
30
|
+
- **Read-only.** Never run DDL/DML. The extractor only parses SQL text.
|
|
31
|
+
- **Never guess schema.** Verify tables/columns against the real DB; mark anything inferred-from-SQL-only.
|
|
32
|
+
- If the extractor reports `partial` confidence (or sqlglot is missing), say so — the diagram is
|
|
33
|
+
best-effort, not authoritative.
|
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: mermaid-diagrams
|
|
3
|
+
context: fork
|
|
4
|
+
description: Create software diagrams using Mermaid text-based syntax. Use for class diagrams (domain modeling, OOP design), sequence diagrams (API flows, interactions), flowcharts (processes, algorithms, user journeys), ERD (database schemas), C4 architecture diagrams, state diagrams, git graphs, gantt charts, and data visualization.
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Mermaid Diagramming
|
|
8
|
+
|
|
9
|
+
**Works with:** Any AI coding agent (Claude, Cursor, GitHub Copilot, Windsurf, etc.)
|
|
10
|
+
|
|
11
|
+
Create professional software diagrams using Mermaid's text-based syntax. Diagrams are version-controllable, easy to update, and render automatically in GitHub, GitLab, Notion, and more.
|
|
12
|
+
|
|
13
|
+
## Triggers
|
|
14
|
+
|
|
15
|
+
Use this skill when you need to:
|
|
16
|
+
- "diagram this", "visualize this", "model this"
|
|
17
|
+
- "show the flow", "map out the process"
|
|
18
|
+
- "architecture diagram", "class diagram", "sequence diagram"
|
|
19
|
+
- "database schema", "ERD", "entity relationship"
|
|
20
|
+
- "flowchart", "user journey", "system design"
|
|
21
|
+
|
|
22
|
+
## Quick Reference
|
|
23
|
+
|
|
24
|
+
| Diagram Type | Use For | Syntax Starts With |
|
|
25
|
+
|--------------|---------|-------------------|
|
|
26
|
+
| **Class Diagram** | Domain models, OOP design | `classDiagram` |
|
|
27
|
+
| **Sequence Diagram** | API flows, interactions | `sequenceDiagram` |
|
|
28
|
+
| **Flowchart** | Processes, algorithms, user journeys | `flowchart TD` or `flowchart LR` |
|
|
29
|
+
| **ERD** | Database schemas | `erDiagram` |
|
|
30
|
+
| **C4 Diagram** | Architecture (context, container, component) | `C4Context`, `C4Container`, `C4Component` |
|
|
31
|
+
| **State Diagram** | State machines, lifecycles | `stateDiagram-v2` |
|
|
32
|
+
| **Git Graph** | Branching strategies | `gitGraph` |
|
|
33
|
+
| **Gantt Chart** | Project timelines | `gantt` |
|
|
34
|
+
|
|
35
|
+
## Core Syntax Pattern
|
|
36
|
+
|
|
37
|
+
All Mermaid diagrams follow this structure:
|
|
38
|
+
|
|
39
|
+
```mermaid
|
|
40
|
+
diagramType
|
|
41
|
+
definition content
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
**Key principles:**
|
|
45
|
+
- First line declares diagram type
|
|
46
|
+
- Use `%%` for comments
|
|
47
|
+
- Indentation improves readability
|
|
48
|
+
- Misspellings break diagrams; validate at [mermaid.live](https://mermaid.live)
|
|
49
|
+
|
|
50
|
+
## Quick Start Examples
|
|
51
|
+
|
|
52
|
+
### Class Diagram
|
|
53
|
+
```mermaid
|
|
54
|
+
classDiagram
|
|
55
|
+
User --> Order : places
|
|
56
|
+
Order *-- LineItem
|
|
57
|
+
|
|
58
|
+
class User {
|
|
59
|
+
+string email
|
|
60
|
+
+string name
|
|
61
|
+
+placeOrder()
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
class Order {
|
|
65
|
+
+int id
|
|
66
|
+
+decimal total
|
|
67
|
+
+addItem()
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
### Sequence Diagram
|
|
72
|
+
```mermaid
|
|
73
|
+
sequenceDiagram
|
|
74
|
+
participant User
|
|
75
|
+
participant API
|
|
76
|
+
participant DB
|
|
77
|
+
|
|
78
|
+
User->>API: POST /login
|
|
79
|
+
API->>DB: Query credentials
|
|
80
|
+
DB-->>API: Return user data
|
|
81
|
+
alt Valid
|
|
82
|
+
API-->>User: 200 OK + token
|
|
83
|
+
else Invalid
|
|
84
|
+
API-->>User: 401 Unauthorized
|
|
85
|
+
end
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
### Flowchart
|
|
89
|
+
```mermaid
|
|
90
|
+
flowchart TD
|
|
91
|
+
Start([User visits]) --> Auth{Authenticated?}
|
|
92
|
+
Auth -->|No| Login[Login page]
|
|
93
|
+
Auth -->|Yes| Dashboard[Dashboard]
|
|
94
|
+
Login --> Validate{Valid?}
|
|
95
|
+
Validate -->|Yes| Dashboard
|
|
96
|
+
Validate -->|No| Error[Error message]
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### ERD
|
|
100
|
+
```mermaid
|
|
101
|
+
erDiagram
|
|
102
|
+
USER ||--o{ ORDER : places
|
|
103
|
+
ORDER ||--|{ LINE_ITEM : contains
|
|
104
|
+
|
|
105
|
+
USER {
|
|
106
|
+
int id PK
|
|
107
|
+
string email UK
|
|
108
|
+
string name
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
ORDER {
|
|
112
|
+
int id PK
|
|
113
|
+
int user_id FK
|
|
114
|
+
decimal total
|
|
115
|
+
}
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
### C4 Context
|
|
119
|
+
```mermaid
|
|
120
|
+
C4Context
|
|
121
|
+
title System Context
|
|
122
|
+
|
|
123
|
+
Person(user, "User", "Customer")
|
|
124
|
+
System(app, "Web App", "E-commerce platform")
|
|
125
|
+
System_Ext(payment, "Payment Gateway")
|
|
126
|
+
|
|
127
|
+
Rel(user, app, "Browses, purchases")
|
|
128
|
+
Rel(app, payment, "Processes payments", "HTTPS")
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
## Essential Syntax
|
|
132
|
+
|
|
133
|
+
### Relationships (Class/ERD)
|
|
134
|
+
```
|
|
135
|
+
--> Association
|
|
136
|
+
..> Dependency
|
|
137
|
+
--|> Inheritance/Generalization
|
|
138
|
+
--* Composition
|
|
139
|
+
--o Aggregation
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
### Arrows (Sequence/Flowchart)
|
|
143
|
+
```
|
|
144
|
+
->> Solid arrow (sync message)
|
|
145
|
+
-->> Dashed arrow (response)
|
|
146
|
+
--> Flowchart connection
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
### Node Shapes (Flowchart)
|
|
150
|
+
```
|
|
151
|
+
[] Rectangle
|
|
152
|
+
() Rounded
|
|
153
|
+
{} Diamond (decision)
|
|
154
|
+
([]) Stadium/pill
|
|
155
|
+
[()] Cylinder (database)
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
### Cardinality (ERD)
|
|
159
|
+
```
|
|
160
|
+
||--|| One to one
|
|
161
|
+
||--o{ One to many
|
|
162
|
+
}o--o{ Many to many
|
|
163
|
+
```
|
|
164
|
+
|
|
165
|
+
## Configuration
|
|
166
|
+
|
|
167
|
+
Add themes and styling:
|
|
168
|
+
|
|
169
|
+
```mermaid
|
|
170
|
+
---
|
|
171
|
+
config:
|
|
172
|
+
theme: base
|
|
173
|
+
themeVariables:
|
|
174
|
+
primaryColor: "#ff6b6b"
|
|
175
|
+
look: handDrawn
|
|
176
|
+
---
|
|
177
|
+
flowchart LR
|
|
178
|
+
A --> B
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
**Themes:** default, forest, dark, neutral, base
|
|
182
|
+
**Look:** classic, handDrawn
|
|
183
|
+
|
|
184
|
+
## Export & Rendering
|
|
185
|
+
|
|
186
|
+
**Auto-renders in:**
|
|
187
|
+
- GitHub/GitLab Markdown
|
|
188
|
+
- VS Code (with Mermaid extension)
|
|
189
|
+
- Notion, Obsidian, Confluence
|
|
190
|
+
|
|
191
|
+
**Export to PNG/SVG:**
|
|
192
|
+
- Online: [mermaid.live](https://mermaid.live)
|
|
193
|
+
- CLI: `npm install -g @mermaid-js/mermaid-cli`
|
|
194
|
+
```bash
|
|
195
|
+
mmdc -i diagram.mmd -o diagram.png
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
## Best Practices
|
|
199
|
+
|
|
200
|
+
1. **Start simple** - Core elements first, add details incrementally
|
|
201
|
+
2. **One concept per diagram** - Split complex views into focused diagrams
|
|
202
|
+
3. **Use clear labels** - Meaningful names make diagrams self-documenting
|
|
203
|
+
4. **Comment extensively** - Use `%%` to explain complex parts
|
|
204
|
+
5. **Validate syntax** - Test at [mermaid.live](https://mermaid.live) before committing
|
|
205
|
+
6. **Version control** - Store `.mmd` files with code
|
|
206
|
+
7. **Keep updated** - Update diagrams when code changes
|
|
207
|
+
|
|
208
|
+
## Common Issues
|
|
209
|
+
|
|
210
|
+
**Diagram won't render:**
|
|
211
|
+
- Check for typos in diagram type declaration
|
|
212
|
+
- Validate syntax at [mermaid.live](https://mermaid.live)
|
|
213
|
+
- Avoid special characters in labels (use quotes if needed)
|
|
214
|
+
|
|
215
|
+
**Arrows not connecting:**
|
|
216
|
+
- Verify node IDs match exactly
|
|
217
|
+
- Check arrow syntax (`-->` vs `->>` vs `-->>`)
|
|
218
|
+
|
|
219
|
+
**Layout looks wrong:**
|
|
220
|
+
- Try different direction: `TD` (top-down), `LR` (left-right), `RL`, `BT`
|
|
221
|
+
- Use subgraphs to group related elements
|
|
222
|
+
- Consider splitting into multiple diagrams
|
|
223
|
+
|
|
224
|
+
## Detailed References
|
|
225
|
+
|
|
226
|
+
See `references/` for comprehensive syntax:
|
|
227
|
+
|
|
228
|
+
- **[class-diagrams.md](references/class-diagrams.md)** - Relationships, multiplicity, methods, domain modeling
|
|
229
|
+
- **[sequence-diagrams.md](references/sequence-diagrams.md)** - Messages, activations, loops, alt/opt blocks
|
|
230
|
+
- **[flowcharts.md](references/flowcharts.md)** - Shapes, subgraphs, styling, complex flows
|
|
231
|
+
- **[erd-diagrams.md](references/erd-diagrams.md)** - Entities, cardinality, keys, attributes
|
|
232
|
+
- **[c4-diagrams.md](references/c4-diagrams.md)** - Context, container, component levels
|
|
233
|
+
- **[architecture-diagrams.md](references/architecture-diagrams.md)** - Cloud services, infrastructure, deployment
|
|
234
|
+
- **[advanced-features.md](references/advanced-features.md)** - Themes, configuration, layout options
|
|
235
|
+
- **[workflows.md](references/workflows.md)** - Step-by-step examples
|
|
236
|
+
- **[troubleshooting.md](references/troubleshooting.md)** - Common problems and solutions
|