Commit 30dfa57
feat(agent): crewai orchestrator (#608)
* Feat: new control interface for crew, added crew orchestrator node
* orchestrator wip
* feat(agent_crewai): expose expert config fields for both node types
Add goal, backstory, expected_output, max_iter to agent_crewai (CrewDriver)
and goal, backstory, max_iter to agent_crewai_orchestrator (OrchestratorDriver).
All fields fall back to existing defaults when blank/zero.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
* chore: cleanup modified crew code
* Chore: Delete Crew readme
* chore: rename 'expert' mode to 'advanced' mode
* chore: remove dead code found by code rabbit
* Fix: Rename orchestrator to Manager; remove tool invoke from manager node
* fix: propagate sub-agent advanced config through crewai.describe()
goal, backstory, expected_output, and instructions were all loaded from
connConfig but not included in DescribeResponse, causing the manager to
silently fall back to hardcoded defaults for every sub-agent.
- Add goal, backstory, expected_output, instructions to DescribeResponse
- Populate them in CrewDriver.describe()
- Use d.goal/backstory/expected_output in ManagerDriver sub-agent build
- Append instructions to sub-agent backstory (substitutes for the
run_agent() path that is bypassed in manager mode)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>1 parent 1702b7f commit 30dfa57
7 files changed
Lines changed: 546 additions & 61 deletions
File tree
- nodes/src/nodes/agent_crewai
- packages/server/engine-lib/rocketlib-python/lib/rocketlib
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
35 | 40 | | |
36 | 41 | | |
37 | 42 | | |
| |||
46 | 51 | | |
47 | 52 | | |
48 | 53 | | |
49 | | - | |
| 54 | + | |
50 | 55 | | |
51 | | - | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
52 | 70 | | |
53 | 71 | | |
54 | 72 | | |
55 | 73 | | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
46 | 45 | | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
47 | 62 | | |
48 | 63 | | |
| 64 | + | |
49 | 65 | | |
0 commit comments