Workflow Orchestrator banner
Nikolay-Shirokov Nikolay-Shirokov

Workflow Orchestrator

Productivity community

Description

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

Workflow Orchestrator

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Node.js Version](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen)](https://nodejs.org/) [![Tests](https://img.shields.io/badge/tests-1034%2F1062%20passing-success)](https://github.com/Nikolay-Shirokov/workflow-orchestrator) [![Coverage](https://img.shields.io/badge/coverage-97.4%25-brightgreen)](https://github.com/Nikolay-Shirokov/workflow-orchestrator)

Настраиваемая система оркестрации многошаговых рабочих процессов с использованием AI-моделей через CLI-адаптеры.


🚀 Быстрый старт

**Примечание:** Пакет пока не опубликован на npm. Используйте локальную установку из репозитория.

# Клонирование и установка
git clone https://github.com/anthropics/workflow-orchestrator.git
cd workflow-orchestrator
npm install
npm run build

# Создайте файл my-workflow.yaml
cat > my-workflow.yaml << 'EOF'
workflow:
  name: "hello-world"
  version: "1.0"
  
  settings:
    artifacts_dir: "artifacts"
  
  roles:
    assistant:
      adapter: "claude-cli"
      model: "claude-sonnet-3.5"
  
  steps:
    - id: "greeting"
      type: "model"
      role: "assistant"
      prompt_template: "Поприветствуйте пользователя!"
      outputs:
        result: "${artifacts_dir}/greeting.md"
EOF

# Запустите (из директории проекта)
node dist/cli/cli.js run my-workflow.yaml

После публикации на npm можно будет использовать: `workflow-orchestrator run my-workflow.yaml`

📖 Подробнее: [Руководство по началу работы](docs/GETTING_STARTED.md)


🎯 Новое: Создание бизнес-требований

Попробуйте новый workflow для создания детальных бизнес-требований:

# Полная версия с двумя AI-моделями
node dist/cli/cli.js run examples/business-requirements-workflow.yaml

# Или упрощенная версия
node dist/cli/cli.js run examples/business-requirements-simple.yaml

**Что вы