Key Capabilities
Natural Language to Blueprint
Describe what you want to do, and Opus generates a step-by-step blueprint with the inputs and outputs it needs.
Iterative Refinement
Edit the generated steps, add new ones, remove what you don’t need, or regenerate with updated instructions.
Auto-Linked Variables
The Builder automatically connects outputs from previous tasks to inputs by matching names and types.
Switch to Code
Convert any blueprint to Python code for full control while keeping the same inputs and outputs.
How The Blueprint Works
When you describe your task in the central description field, Opus Agent generates a blueprint—a series of Required Steps that break down your request into smaller actions. Each step has:- Objective: What the step aims to accomplish
- Description: How the step will be carried out
- Edit steps manually to fine-tune the logic
- Add new steps if something is missing
- Delete steps you don’t need
- Regenerate by adding more instructions and clicking Generate again
Operating Modes
Opus Agent offers two modes:- Lite
- Advanced
The fastest way to get started with AI tasks.How it works:
- Describe your goal in natural language
- The system generates a multi-step blueprint
- Input and output variables are auto-inferred
- Tweak the blueprint as many times as you need—your inputs and outputs stay intact based on your described task
- Content generation
- Data extraction
- Summarization and classification
- Reliable processing that behaves as expected, even at enterprise scale
Using Opus Agent
1
Add the task
Click the + button or drag an Opus Agent task into the builder.
2
Describe what you want
In the central description field, write what you want the task to do. For example: “Extract the customer name, invoice date, and total amount from the document.”
3
Generate the blueprint
Click Generate. Opus creates a blueprint with Required Steps, each having an Objective and Description. It also auto-generates the Input and Output variables.
4
Refine if needed
Review the steps. Edit, add, or delete them as needed. You can also add more instructions and click Generate again to update the blueprint.
5
Link variables
Use Auto Link to automatically connect inputs to matching outputs from previous tasks. You can also link them manually.
6
Preview and test
Run a preview with sample data to make sure outputs look right before activating the workflow.
Best Practices
Stabilize IO types early
Stabilize IO types early
Define your input and output variable types at the start of your design.
- Finalize output structures before building downstream logic
- Regenerate the blueprint if IO changes materially
- Test with representative data in preview mode
Prefer structured outputs
Prefer structured outputs
When downstream logic will branch or serialize data, use JSON mapped to Object variables:
- Explicit schemas reduce parsing errors
- Structured outputs are easier to validate
- Type discipline improves workflow reliability
Validate in preview
Validate in preview
Always preview tasks with representative data before activation:
- Check that output types render as expected
- Verify variable mappings are correct
- Test edge cases (empty inputs, long content)
Use code conversion strategically
Use code conversion strategically
The Switch to Advanced button converts your blueprint into an Advanced Task:
- Click Switch to Advanced
- Click Build to generate the full code from your blueprint
- Run the task using the built code