| name | workflow-creator |
| description | Create new Antigravity workflows to automate repetitive tasks. Use this when the user wants to formalize a multi-step process into an automated workflow. |
| license | MIT |
Workflow Creator Skill
This skill allows the agent to create structured workflows for Antigravity.
Workflow Format
Workflows are markdown files in .agents/workflows/ that follow this structure:
```markdown
description: [short title]
Workflow: [Name]
[Steps...]
// turbo
[Step that involves a run_command can be auto-run if annotated with // turbo]
```
Process
- Define Task: Identify the sequence of steps.
- Create File:
.agents/workflows/<workflow-name>.md
- Annotate: Use
// turbo for safe command steps.
- Sync: Ejecuta
npm run sync para que el nuevo workflow aparezca en la documentación global.
- Enable: Informa al usuario que debe ejecutar
npm run init si quiere habilitar el comando en agentes no-automáticos (como Cursor o Copilot).