workflow-ai
v1.0.25
Published
AI Agent Workflow Coordinator — kanban-based pipeline for AI coding agents
Readme
workflow-ai
AI Agent Workflow Coordinator — kanban-based pipeline for AI coding agents.
Install
npm install -g workflow-aiQuick Start
# Initialize workflow in your project
workflow init
# Run the workflow pipeline
workflow runCommands
| Command | Description |
|---------|-------------|
| workflow init | Initialize .workflow/ directory with kanban board structure |
| workflow run | Execute the workflow pipeline (process tickets from in-progress to done) |
Init
The workflow init command creates the .workflow/ directory structure:
.workflow/
├── config/
│ └── config.yaml # Workflow configuration
├── plans/
│ └── current/ # Current development plans
├── tickets/
│ ├── backlog/ # Pending tickets
│ ├── in-progress/ # Active tickets
│ └── done/ # Completed tickets
├── reports/ # Generated reports
└── logs/ # Pipeline execution logsRun
The workflow run command executes the pipeline:
- Reads tickets from
in-progress/ - Executes each task based on its type (IMPL, FIX, DOCS, REVIEW, etc.)
- Moves completed tickets to
done/ - Generates reports in
reports/
Configuration
.workflow/config/config.yaml
Main workflow configuration:
# Workflow settings
id_counter: 1
settings:
auto_move_tickets: true
generate_reports: trueRequirements
- Node.js >= 18.0.0
- npm
License
MIT
