
Antigravity Workflows
- 817 installs
- 44k repo stars
- Updated July 27, 2026
- sickn33/antigravity-awesome-skills
antigravity-workflows is an orchestration skill that chains Antigravity skills into ordered, guided sequences producing one concrete artifact per step for developers who need multi-phase agent workflows without manual sk
About
antigravity-workflows is an implementation playbook in sickn33/antigravity-awesome-skills that executes workflow-based orchestration across Antigravity skills. For every workflow the agent confirms objective and scope, selects the best-matching workflow, executes steps in order, produces one concrete artifact per step, and validates before continuing. Step examples map plan to scope documents, build to code changes, test to triage results, and release to rollout checklists. Safety guardrails block destructive actions without explicit approval and halt when a required skill is missing. Developers reach for antigravity-workflows when a task spans multiple skills and needs deterministic sequencing with tangible deliverables per step.
- 5-step execution contract: confirm objective, select workflow, execute steps, produce artifact, validate before continui
- Generates one concrete artifact per workflow step such as scope documents, code changes, test results or rollout checkli
- Safety guardrails requiring explicit user approval for destructive actions and explicit authorization for security testi
- Fallback logic when a required skill is missing, stating the gap and suggesting closest available skill
- Standard completion format returning completed steps, artifacts, validation evidence, open risks and suggested next acti
Antigravity Workflows by the numbers
- 817 all-time installs (skills.sh)
- +23 installs in the week ending Jul 28, 2026 (Skillselion tracking)
- Ranked #327 of 2,742 Automation & Workflows skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/sickn33/antigravity-awesome-skills --skill antigravity-workflowsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 817 |
|---|---|
| repo stars | ★ 44k |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 27, 2026 |
| Repository | sickn33/antigravity-awesome-skills ↗ |
How do you chain multiple agent skills into workflows?
Orchestrate multiple Antigravity skills into ordered, guided sequences that produce concrete artifacts without manual chaining.
Who is it for?
Developers using Antigravity skills who need ordered multi-step orchestration with explicit artifacts and validation gates.
Skip if: Single-skill tasks or teams not using the Antigravity skills ecosystem who only need one isolated command.
When should I use this skill?
The user needs a multi-step plan-build-test-release flow orchestrated across several Antigravity skills with artifacts per step.
What you get
Sequential workflow artifacts including scope documents, code changes, test triage, and release checklists per step.
Files
Antigravity Workflows
Use this skill to turn a complex objective into a guided sequence of skill invocations.
When to Use This Skill
Use this skill when:
- The user wants to combine several skills without manually selecting each one.
- The goal is multi-phase (for example: plan, build, test, ship).
- The user asks for best-practice execution for common scenarios like:
- Shipping a SaaS MVP
- Running a web security audit
- Building an AI agent system
- Implementing browser automation and E2E QA
Workflow Source of Truth
Read workflows in this order: 1. docs/WORKFLOWS.md for human-readable playbooks. 2. data/workflows.json for machine-readable workflow metadata.
How to Run This Skill
1. Identify the user's concrete outcome. 2. Propose the 1-2 best matching workflows. 3. Ask the user to choose one. 4. Execute step-by-step:
- Announce current step and expected artifact.
- Invoke recommended skills for that step.
- Verify completion criteria before moving to next step.
5. At the end, provide:
- Completed artifacts
- Validation evidence
- Remaining risks and next actions
Default Workflow Routing
- Product delivery request ->
ship-saas-mvp - Security review request ->
security-audit-web-app - Agent/LLM product request ->
build-ai-agent-system - E2E/browser testing request ->
qa-browser-automation - Domain-driven design request ->
design-ddd-core-domain
Copy-Paste Prompts
Use @antigravity-workflows to run the "Ship a SaaS MVP" workflow for my project idea.Use @antigravity-workflows and execute a full "Security Audit for a Web App" workflow.Use @antigravity-workflows to guide me through "Build an AI Agent System" with checkpoints.Use @antigravity-workflows to execute the "QA and Browser Automation" workflow and stabilize flaky tests.Use @antigravity-workflows to execute the "Design a DDD Core Domain" workflow for my new service.Limitations
- This skill orchestrates; it does not replace specialized skills.
- It depends on the local availability of referenced skills.
- It does not guarantee success without environment access, credentials, or required infrastructure.
- For stack-specific browser automation in Go,
go-playwrightmay require the corresponding skill to be present in your local skills repository.
Related Skills
concise-planningbrainstormingworkflow-automationverification-before-completion
Antigravity Workflows Implementation Playbook
This document explains how an agent should execute workflow-based orchestration.
Execution Contract
For every workflow:
1. Confirm objective and scope. 2. Select the best-matching workflow. 3. Execute workflow steps in order. 4. Produce one concrete artifact per step. 5. Validate before continuing.
Step Artifact Examples
- Plan step -> scope document or milestone checklist.
- Build step -> code changes and implementation notes.
- Test step -> test results and failure triage.
- Release step -> rollout checklist and risk log.
Safety Guardrails
- Never run destructive actions without explicit user approval.
- If a required skill is missing, state the gap and fallback to closest available skill.
- When security testing is involved, ensure authorization is explicit.
Suggested Completion Format
At workflow completion, return:
1. Completed steps 2. Artifacts produced 3. Validation evidence 4. Open risks 5. Suggested next action
Related skills
FAQ
What artifact does each antigravity-workflows step produce?
antigravity-workflows requires one concrete artifact per step—examples include scope documents for plan steps, code changes for build steps, test triage for test steps, and rollout checklists for release steps.
What safety rules does antigravity-workflows enforce?
antigravity-workflows never runs destructive actions without explicit user approval and stops when a required skill is unavailable instead of skipping validation gates.