$npx -y skills add SamarthaKV29/antigravity-god-mode --skill antigravity-workflowsOrchestrate multiple Antigravity skills through guided workflows for SaaS MVP delivery, security audits, AI agent builds, and browser QA.
| 1 | # Antigravity Workflows |
| 2 | |
| 3 | Use this skill to turn a complex objective into a guided sequence of skill invocations. |
| 4 | |
| 5 | ## When to Use This Skill |
| 6 | |
| 7 | Use this skill when: |
| 8 | - The user wants to combine several skills without manually selecting each one. |
| 9 | - The goal is multi-phase (for example: plan, build, test, ship). |
| 10 | - The user asks for best-practice execution for common scenarios like: |
| 11 | - Shipping a SaaS MVP |
| 12 | - Running a web security audit |
| 13 | - Building an AI agent system |
| 14 | - Implementing browser automation and E2E QA |
| 15 | |
| 16 | ## Workflow Source of Truth |
| 17 | |
| 18 | Read workflows in this order: |
| 19 | 1. `docs/WORKFLOWS.md` for human-readable playbooks. |
| 20 | 2. `data/workflows.json` for machine-readable workflow metadata. |
| 21 | |
| 22 | ## How to Run This Skill |
| 23 | |
| 24 | 1. Identify the user's concrete outcome. |
| 25 | 2. Propose the 1-2 best matching workflows. |
| 26 | 3. Ask the user to choose one. |
| 27 | 4. Execute step-by-step: |
| 28 | - Announce current step and expected artifact. |
| 29 | - Invoke recommended skills for that step. |
| 30 | - Verify completion criteria before moving to next step. |
| 31 | 5. At the end, provide: |
| 32 | - Completed artifacts |
| 33 | - Validation evidence |
| 34 | - Remaining risks and next actions |
| 35 | |
| 36 | ## Default Workflow Routing |
| 37 | |
| 38 | - Product delivery request -> `ship-saas-mvp` |
| 39 | - Security review request -> `security-audit-web-app` |
| 40 | - Agent/LLM product request -> `build-ai-agent-system` |
| 41 | - E2E/browser testing request -> `qa-browser-automation` |
| 42 | |
| 43 | ## Copy-Paste Prompts |
| 44 | |
| 45 | ```text |
| 46 | Use @antigravity-workflows to run the "Ship a SaaS MVP" workflow for my project idea. |
| 47 | ``` |
| 48 | |
| 49 | ```text |
| 50 | Use @antigravity-workflows and execute a full "Security Audit for a Web App" workflow. |
| 51 | ``` |
| 52 | |
| 53 | ```text |
| 54 | Use @antigravity-workflows to guide me through "Build an AI Agent System" with checkpoints. |
| 55 | ``` |
| 56 | |
| 57 | ```text |
| 58 | Use @antigravity-workflows to execute the "QA and Browser Automation" workflow and stabilize flaky tests. |
| 59 | ``` |
| 60 | |
| 61 | ## Limitations |
| 62 | |
| 63 | - This skill orchestrates; it does not replace specialized skills. |
| 64 | - It depends on the local availability of referenced skills. |
| 65 | - It does not guarantee success without environment access, credentials, or required infrastructure. |
| 66 | - For stack-specific browser automation in Go, `go-playwright` may require the corresponding skill to be present in your local skills repository. |
| 67 | |
| 68 | ## Related Skills |
| 69 | |
| 70 | - `concise-planning` |
| 71 | - `brainstorming` |
| 72 | - `workflow-automation` |
| 73 | - `verification-before-completion` |