Documentation

Agent

Agents are the building blocks of NebFlow.

Agent

An Agent is an autonomous AI worker that performs a specific task within a Flow.

Agent Configuration

name: my-agent
type: custom
model: claude-sonnet-4-6
prompt: "Your instruction to the agent"
tools:
  - web_search
  - file_read
memory: shared

Agent Types

| Type | Description | |------|-------------| | Researcher | Web search and information synthesis | | Writer | Long-form content generation | | Analyst | Data analysis and insights | | Coder | Code generation and review | | Custom | Define your own agent behavior |

Agent Memory

Agents can share memory across flows. This enables:

  • Context persistence between runs
  • Knowledge accumulation
  • Collaborative context between agents