Author Workflows
Record and shape workflow drafts.
Workflow at a Glance
Workflow guidance is designed for required, user-led setup tasks. The agent pauses at checkpoints and waits for the user where needed.
Record the real user path
Navigate your app exactly as a new user would.
Narrate and assign actions
Explain each step and mark checkpoints that require user input.
Generate the draft
ModelNex rewrites captured narration into user-facing step copy.
Refine in Portal
Review selectors, targeting, and copy before publishing.
Start the Recorder
Reveal the tools
Enable recorder access by injecting a valid browser dev mode key for the current project.
Walk the real setup flow
Record the same path a real customer will use from start to first success.
import { ModelNexChatBubble } from '@modelnex/sdk'
import { ModelNexProvider } from '@modelnex/sdk'
export function AppRoot() {
return (
<ModelNexProvider
websiteId="your-website-id"
userProfile={{
userId: currentUser.id,
type: currentUser.role,
isNewUser: currentUser.isNewUser,
}}
>
<AppContent />
<ModelNexChatBubble appName="My Application" />
</ModelNexProvider>
)
}
Design for the User View
While recording, decide which actions the agent should automate and which ones must be left to the user.
Voice narration
Narrate directly into the mic. ModelNex rewrites it into polished step copy.
Automated navigation
Let the agent perform routine navigation so users only act where it matters.
Critical checkpoints
Pause for API keys, names, plans, approvals, or any step that needs real user choice.
Portal Step Types
In workflow review, first choose the top-level step action.
- Use
narratewhen Nex should explain the screen without changing state. - Use
actwhen Nex should click or navigate automatically. - Use
inputwhen the flow should pause for user-provided information.
For input steps, the advanced panel can narrow behavior to input, ask_or_fill, or user_input.
Draft Generation
Captured audio and actions
Generation starts from the route, actions, and spoken transcript you recorded.
A structured workflow draft
The result includes rewritten narration, checkpoints, and success-state hints.
Record against realistic routes, feature states, and data. Review mode can refine structure, but it cannot repair a bad source run.
Next: Workflow Preview and Publish.