home / skills / sickn33 / antigravity-awesome-skills / antigravity-workflows

antigravity-workflows skill

/skills/antigravity-workflows

This skill orchestrates guided multi-step workflows by selecting and executing preferred antigravity skills to deliver SaaS MVPs, security audits, and QA.

npx playbooks add skill sickn33/antigravity-awesome-skills --skill antigravity-workflows

Review the files below or copy the command above to add this skill to your agents.

Files (2)
SKILL.md
2.5 KB
---
name: antigravity-workflows
description: "Orchestrate multiple Antigravity skills through guided workflows for SaaS MVP delivery, security audits, AI agent builds, and browser QA."
source: self
risk: none
---

# 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`

## Copy-Paste Prompts

```text
Use @antigravity-workflows to run the "Ship a SaaS MVP" workflow for my project idea.
```

```text
Use @antigravity-workflows and execute a full "Security Audit for a Web App" workflow.
```

```text
Use @antigravity-workflows to guide me through "Build an AI Agent System" with checkpoints.
```

```text
Use @antigravity-workflows to execute the "QA and Browser Automation" workflow and stabilize flaky tests.
```

## 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-playwright` may require the corresponding skill to be present in your local skills repository.

## Related Skills

- `concise-planning`
- `brainstorming`
- `workflow-automation`
- `verification-before-completion`

Overview

This skill orchestrates multiple Antigravity skills into guided, multi-step workflows for delivering SaaS MVPs, running security audits, building AI agent systems, and stabilizing browser QA. It maps a concrete outcome to 1–2 recommended playbooks, executes each step with skill invocations, and enforces verification before advancing. The goal is predictable, auditable progress across complex, multi-skill operations.

How this skill works

The skill reads workflow playbooks and structured workflow metadata to select the best fit for the user’s objective. It proposes the top workflows, asks the user to choose, then runs each step: announcing the expected artifact, invoking recommended skills, and checking completion criteria. At the end it returns produced artifacts, validation evidence, and remaining risks and next actions.

When to use it

  • You need to combine several agentic skills into a single end-to-end process.
  • You have a multi-phase objective (plan → build → test → ship).
  • You want best-practice execution for shipping a SaaS MVP or launching an AI product.
  • You need a structured security audit for a web application.
  • You want to stabilize E2E/browser tests and automate QA runs.

Best practices

  • Start with a clear, measurable outcome so the workflow can be routed correctly.
  • Allow the skill to propose 1–2 workflows and confirm selection before execution.
  • Require explicit verification criteria for each step to avoid silent failures.
  • Ensure referenced skills and credentials are accessible to the orchestrator before starting.
  • Capture produced artifacts and validation evidence at each checkpoint for auditability.

Example use cases

  • Run a guided "Ship a SaaS MVP" workflow that produces a deployable artifact, tests, and a launch checklist.
  • Execute a full web security audit workflow with automated scans, manual checks, and a prioritized remediation list.
  • Build an AI agent system via a staged workflow that returns architecture docs, integration tests, and model evaluation results.
  • Orchestrate browser automation workflows to reproduce flaky tests, apply fixes, and stabilize CI runs.

FAQ

Does this skill perform specialized tasks like scans or tests itself?

No. It orchestrates and invokes specialized skills. It relies on the availability of those skills to perform domain-specific work.

What evidence do I get after a workflow completes?

You receive completed artifacts, verification evidence for each step, and a summary of unresolved risks and recommended next actions.

What if a required skill or credential is missing?

The workflow will flag the missing dependency and pause, providing clear remediation steps before continuing.