Ship a flow in 4 minutes.
Install the CLI, scaffold a flow, deploy. That's it.
npm i -g @lynxflow/cli lynxflow init my-flow lynxflow deploy
Or use the SDK:
import { LynxFlow } from '@lynxflow/sdk'
const flow = new LynxFlow()
.trigger('schedule', { cron: '0 9 * * *' })
.node('gpt-5.5', { prompt: 'Summarize last night's alerts' })
.output('slack', { channel: '#ops' })
await flow.deploy()