git-subtree-dir: vendor/ruvector git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
26 lines
491 B
Markdown
26 lines
491 B
Markdown
# workflow-create
|
|
|
|
Create reusable workflow templates.
|
|
|
|
## Usage
|
|
```bash
|
|
npx claude-flow workflow create [options]
|
|
```
|
|
|
|
## Options
|
|
- `--name <name>` - Workflow name
|
|
- `--from-history` - Create from history
|
|
- `--interactive` - Interactive creation
|
|
|
|
## Examples
|
|
```bash
|
|
# Create workflow
|
|
npx claude-flow workflow create --name "deploy-api"
|
|
|
|
# From history
|
|
npx claude-flow workflow create --name "test-suite" --from-history
|
|
|
|
# Interactive mode
|
|
npx claude-flow workflow create --interactive
|
|
```
|