Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计未展示

workflow-creator工作流程创建者

Agent Skill

workflow-creator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

231

周安装

8

GitHub Stars

公开资料未说明

下载量

65
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:workflow-creator(工作流程创建者)
来源仓库:https://github.com/toilahuongg/google-antigravity-kit
仓库路径:skills/workflow-creator
安装命令:
npx skills add toilahuongg/google-antigravity-kit --skill "workflow-creator"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

AgentSkills.tonpx skills
npx skills add toilahuongg/google-antigravity-kit --skill "workflow-creator"

简介

workflow-creator 用于查找和安装 AI 代理的工作流程创建技能。

  • 适合在 Codex、Claude 等平台中构建自定义任务流水线。
  • 通过 npx skills add toilahuongg/google-antigravity-kit --skill "workflow-creator" 安装。
  • 需谨慎设计触发条件,避免循环调用导致系统资源耗尽。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
workflow-creator
description
Create and manage workflows that guide the Agent through repetitive tasks. Use this skill when users want to create new workflows, update existing workflows, or need guidance on writing effective step-by-step workflows for common operations like deployments, code reviews, testing, or any repeatable process.

Workflow Creator

Create effective workflows that guide the AI Agent through structured, repeatable tasks.

What Are Workflows?

Workflows are markdown files that define a series of steps for the Agent to follow when performing repetitive tasks. They enable:

  • Consistency - Same process every time
  • Efficiency - No need to re-explain steps
  • Automation - Slash command invocation (e.g., /deploy)
  • Documentation - Steps are version-controlled and shareable

Workflow Structure

Workflows are saved to .agent/workflows/{workflow-name}.md with this format:

---
description: [short description of what this workflow does]
---

# [Workflow Title]

[Brief overview of the workflow purpose]

## Prerequisites

[Optional: List any requirements before starting]

## Steps

1. [First step with clear instruction]
2. [Second step]
3. [Third step]
...

## Notes

[Optional: Additional context, warnings, or tips]

Workflow Creation Process

Step 1: Identify the Workflow

Ask the user:

  1. What repetitive task do you want to automate?
  2. What are the exact steps you follow each time?
  3. Are there any variations or conditional paths?
  4. What command name do you want? (e.g., /deploy, /test)

Step 2: Define Steps

Write clear, actionable steps:

  • Use imperative verbs ("Run", "Create", "Check")
  • Include exact commands when applicable
  • Specify file paths and parameters
  • Note any user inputs needed

Step 3: Add Turbo Annotations

Use annotations to auto-run safe commands:

  • // turbo - Auto-run the next step only
  • // turbo-all - Auto-run ALL steps in the workflow
## Steps

1. Backup existing files

// turbo
2. Run `npm install`

3. Update configuration (requires user review)

// turbo
4. Run `npm run build`

Step 4: Validate the Workflow

Check against this list:

  • [ ] Clear, descriptive name and description?
  • [ ] Steps are sequential and logical?
  • [ ] Commands are exact and copy-pasteable?
  • [ ] Turbo annotations only on safe commands?
  • [ ] Prerequisites listed if any?
  • [ ] Total file under 12,000 characters?

Quick Templates

For ready-to-use templates, see references/workflow-templates.md.

Deployment Workflow

---
description: Deploy application to production
---

# Deploy to Production

## Prerequisites

- All tests passing
- On `main` branch

## Steps

// turbo
1. Run tests to confirm everything passes:

npm run test


2. Build production bundle:

npm run build


// turbo
3. Deploy to production:

npm run deploy


4. Verify deployment by checking the live URL.

Code Review Workflow

---
description: Review a pull request systematically
---

# PR Review

## Steps

1. Fetch and checkout the PR branch:

git fetch origin pull/<PR_NUMBER>/head:pr-<PR_NUMBER> git checkout pr-<PR_NUMBER>


2. Review the diff for:
   - Code quality and style
   - Security concerns
   - Test coverage
   - Performance implications

3. Run tests locally:

npm run test


4. Provide feedback or approve the PR.

Database Migration Workflow

---
description: Run database migrations safely
---

# Database Migration

## Prerequisites

- Database backup completed
- Migration files ready in `migrations/`

## Steps

1. Create a backup before migration:

npm run db:backup


// turbo
2. Run pending migrations:

npm run db:migrate


3. Verify data integrity:

npm run db:verify


4. If issues found, rollback:

npm run db:rollback

Output Location

Workflows must be saved in .agent/workflows/ directory:

.agent/workflows/
├── deploy.md           # /deploy command
├── test.md             # /test command
├── pr-review.md        # /pr-review command
├── db-migrate.md       # /db-migrate command
└── security-scan.md    # /security-scan command

File Naming

  • Use kebab-case: {workflow-name}.md
  • Name becomes the slash command: deploy.md/deploy
  • Keep names short and memorable

Frontmatter

Required YAML frontmatter:

---
description: [Short description shown when listing workflows]
---

Managing Workflows

Listing Workflows

Scan .agent/workflows/ to show available commands.

Invoking Workflows

User types /workflow-name to trigger:

  • /deploy.agent/workflows/deploy.md
  • /test.agent/workflows/test.md

Updating Workflows

When updating:

  1. Preserve turbo annotations unless asked to change
  2. Maintain step numbering
  3. Test commands before committing

Common Workflow Categories

CategoryExamplesDescription
Build/Deploy/deploy, /build, /releaseCompilation and deployment
Testing/test, /e2e, /lintRunning test suites
Database/db-migrate, /db-seed, /db-backupDatabase operations
Git/pr-review, /release-notesVersion control tasks
Security/security-scan, /auditSecurity checks
Maintenance/cleanup, /update-depsMaintenance tasks
Development/dev-setup, /new-featureDevelopment workflows

Best Practices

  1. Keep steps atomic - One action per step
  2. Be explicit - Include exact commands, not vague instructions
  3. Use turbo wisely - Only on safe, non-destructive commands
  4. Document prerequisites - What must be true before starting
  5. Include rollback - How to undo if something fails
  6. Stay under 12K chars - Split large workflows if needed
  7. Version control - Workflows should be committed to git

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

windsurf

27.35%
按下载量换算18

OpenCode

22.95%
按下载量换算15

Codex

17.49%
按下载量换算11

Claude Code

13.08%
按下载量换算9

Antigravity

7.22%
按下载量换算5

Gemini CLI

3.45%
按下载量换算2

安全审计

暂无安全审计结果可展示。

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add toilahuongg/google-antigravity-kit --skill "workflow-creator" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills